:root {
  --bg-ocean-1: #f0f9ff;
  --bg-ocean-2: #e0f2fe;
  --bg-ocean-3: #bae6fd;
  
  --ocean-primary: #0284c7;
  --ocean-hover: #0369a1;
  --ocean-dark: #075985;
  --ocean-deep: #0c4a6e;
  --ocean-soft: rgba(2, 132, 199, 0.1);
  
  --text-main: #0f172a;
  --text-muted: #334155;
  --text-light: #64748b;
  
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(255, 255, 255, 0.85);
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;
  
  --shadow-glass: 0 15px 35px rgba(2, 132, 199, 0.1), 0 5px 15px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 0.9);
  --shadow-hover: 0 20px 40px rgba(2, 132, 199, 0.2), inset 0 1px 2px rgba(255, 255, 255, 1);
  
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 85px;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg-ocean-1) 0%, var(--bg-ocean-2) 50%, #e2e8f0 100%);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* FLOATING SEA BUBBLES CANVAS */
.sea-bubbles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sea-bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.8), rgba(56, 189, 248, 0.25) 60%, rgba(2, 132, 199, 0.4) 100%);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.15), inset 0 2px 4px rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(2px);
  animation: floatSeaBubble 12s linear infinite;
  opacity: 0.6;
}

@keyframes floatSeaBubble {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  20% {
    opacity: 0.65;
  }
  80% {
    opacity: 0.65;
  }
  100% {
    transform: translateY(-115vh) rotate(360deg) scale(1.15);
    opacity: 0;
  }
}

/* Typography & Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-main);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

.ocean-gradient {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 50%, #0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 249, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.05);
  transition: all 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.12);
}

.nav-container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

.logo span {
  color: var(--ocean-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav-item:hover, .nav-item.active {
  color: var(--ocean-primary);
  background: var(--ocean-soft);
}

.btn-nav {
  background: var(--ocean-primary);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-nav:hover {
  background: var(--ocean-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--text-main);
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 3rem 0 7rem;
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.9) 0%, rgba(224, 242, 254, 0.95) 100%);
  z-index: 1;
}

.hero-container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-name {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-focus-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.focus-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--ocean-primary);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.06);
  transition: all 0.2s ease;
}

.focus-pill i {
  font-size: 0.95rem;
}

.focus-pill:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--ocean-primary);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

/* BUTTONS */
.btn-ocean-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
  transition: all 0.25s ease;
}

.btn-ocean-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(2, 132, 199, 0.4);
  background: linear-gradient(135deg, #0369a1, #075985);
}

.btn-ocean-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--ocean-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08);
  transition: all 0.25s ease;
}

.btn-ocean-secondary:hover {
  background: var(--ocean-soft);
  border-color: var(--ocean-primary);
  transform: translateY(-2px);
}

.btn-ocean-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--ocean-primary);
  font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
  transition: all 0.25s ease;
}

.btn-ocean-icon:hover {
  background: var(--ocean-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* CHARACTER SHOWCASE WITH ORGANIC BLOB */
.hero-character-stage {
  width: 100%;
}

.character-card-glass {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 28px;
  padding: 1rem 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
  user-select: none;
  transition: transform 0.25s ease;
}

.character-card-glass:hover {
  box-shadow: none;
}

.blob-bg-shape {
  position: absolute;
  top: 10px;
  width: 330px;
  height: 330px;
  background: linear-gradient(135deg, rgba(186, 230, 253, 0.8), rgba(56, 189, 248, 0.6));
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
  animation: blobMorph 8s ease-in-out infinite alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes blobMorph {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; transform: rotate(90deg) scale(1.05); }
  100% { border-radius: 50% 50% 40% 60% / 60% 40% 70% 30%; transform: rotate(180deg) scale(0.98); }
}

.character-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.character-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(2, 132, 199, 0.28));
  transition: opacity 0.2s ease, transform 0.3s ease;
}

/* WAVE DIVIDERS */
.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.wave-divider-out {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider-out svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

/* STATS BAR SECTION */
.stats-bar-section {
  background: var(--ocean-dark);
  color: #fff;
  padding: 2.5rem 0 0;
  position: relative;
  z-index: 2;
}

.stats-container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: #bae6fd;
}

/* MAIN CONTENT WRAPPER */
.main-content-wrap {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 2rem 0 5rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: 3.5rem 0 1rem;
}

.section-header-center {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ocean-primary);
  background: #fff;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.06);
  margin-bottom: 0.5rem;
}

.section-header-center h2 {
  font-size: 2rem;
  font-weight: 800;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-top: 0.3rem;
}

.pill-line {
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: var(--ocean-primary);
  margin: 0.75rem auto 0;
}

/* GLASSMORPHISM & NEUMORPHIC CARDS */
.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.two-col { grid-template-columns: repeat(2, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }
.section-gap-top { margin-top: 1.5rem; }

/* ABOUT SECTION PANEL */
.panel-head-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ocean-soft);
  color: var(--ocean-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.glass-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}

.glass-panel p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 0.85rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.service-item i {
  color: var(--ocean-primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.service-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* FILTER TABS */
.filter-tabs-container {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.ocean-tab {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.05);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tab-badge {
  font-size: 0.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: var(--ocean-soft);
  color: var(--ocean-primary);
}

.ocean-tab:hover {
  background: var(--ocean-soft);
  color: var(--ocean-primary);
}

.ocean-tab.active {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
}

.ocean-tab.active .tab-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* 3D CLAYMORPHIC ROTATING WINDOW CAROUSEL (Inspired by Reference Image) */
.clay-carousel-stage {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  perspective: 1200px;
  overflow: hidden;
  user-select: none;
}

.clay-carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* CLAYMORPHISM WINDOW CARDS */
.clay-window-card {
  position: absolute;
  width: min(360px, 85vw);
  background: #ffffff;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 
    14px 14px 28px rgba(2, 132, 199, 0.14),
    -10px -10px 22px rgba(255, 255, 255, 0.9),
    inset 2px 2px 4px rgba(255, 255, 255, 0.9);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.clay-window-card:hover {
  box-shadow: 
    18px 18px 36px rgba(2, 132, 199, 0.22),
    -12px -12px 25px rgba(255, 255, 255, 1),
    inset 2px 2px 6px rgba(255, 255, 255, 1);
}

.clay-window-preview {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-ocean-2);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.08);
}

.clay-window-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.clay-window-card:hover .clay-window-preview img {
  transform: scale(1.06);
}

.clay-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ocean-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.clay-year {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.85);
  color: #fff;
}

.clay-window-body {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.clay-org {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ocean-primary);
  margin-bottom: 0.2rem;
}

.clay-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.clay-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clay-tech-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.clay-tech-wrap span {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--bg-ocean-1);
  color: var(--ocean-primary);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(2, 132, 199, 0.15);
}

/* CLAYMORPHIC BUTTON (Inspired by "Let's Go!" button in Reference Image) */
.btn-clay-primary {
  width: 100%;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  border: none;
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 
    0 8px 20px rgba(2, 132, 199, 0.3),
    inset 0 2px 2px rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}

.btn-clay-primary:hover {
  background: linear-gradient(135deg, #0369a1, #075985);
  box-shadow: 
    0 12px 25px rgba(2, 132, 199, 0.45),
    inset 0 2px 2px rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-clay-primary:active {
  transform: scale(0.98);
}

/* CAROUSEL CONTROLS */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: var(--ocean-primary);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 
    6px 6px 15px rgba(2, 132, 199, 0.15),
    -4px -4px 12px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.carousel-nav-btn:hover {
  background: var(--ocean-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--ocean-primary);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

/* TIMELINE PENGALAMAN */
.timeline-ocean-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2.5rem;
}

.timeline-line-ocean {
  position: absolute;
  left: 17px;
  top: 15px;
  bottom: 15px;
  width: 3px;
  background: linear-gradient(180deg, #0284c7, #38bdf8, transparent);
  border-radius: 999px;
}

.timeline-card-ocean {
  position: relative;
}

.timeline-node {
  position: absolute;
  left: -2.5rem;
  top: 1.5rem;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ocean-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.4);
}

.timeline-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.year-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--ocean-soft);
  color: var(--ocean-primary);
  font-weight: 700;
  font-size: 0.8rem;
}

.role-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.timeline-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SKILLS SECTION */
.skill-card-ocean {
  text-align: left;
}

.skill-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ocean-soft);
  color: var(--ocean-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.skill-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-check-list li {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-check-list li i {
  color: var(--ocean-primary);
}

.lang-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.lang-box {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.lang-box strong {
  display: block;
  font-size: 0.95rem;
}

.lang-box span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.soft-skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.soft-skill-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.soft-skill-list li i {
  color: var(--ocean-primary);
}

/* EDUCATION & CERTIFICATIONS */
.card-head-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ocean-primary);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.edu-stacked, .cert-stacked {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.edu-box, .cert-box {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.edu-box.active {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
}

.edu-year-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ocean-primary);
}

.cert-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.cert-icon {
  font-size: 1.2rem;
  color: var(--ocean-primary);
  margin-top: 0.1rem;
}

.cert-icon.gold { color: #f59e0b; }

.cert-box strong {
  font-size: 0.92rem;
  display: block;
}

.cert-box p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* CONTACT SECTION */
.contact-box-ocean {
  text-align: center;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.contact-box-ocean h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-box-ocean p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 55ch;
  margin: 0 auto 2rem;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
}

.method-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.method-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ocean-soft);
  color: var(--ocean-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.method-label {
  font-size: 0.76rem;
  color: var(--text-light);
  display: block;
}

.method-val {
  font-size: 0.88rem;
  font-weight: 700;
  word-break: break-all;
}

.btn-copy-ocean, .btn-wa-ocean {
  margin-left: auto;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--ocean-primary);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}

.btn-copy-ocean:hover, .btn-wa-ocean:hover {
  background: var(--ocean-primary);
  color: #fff;
}

.footer-links-row {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-links-row a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-row a:hover {
  color: var(--ocean-primary);
}

.copyright-text {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* MODAL DIALOG */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(12, 74, 110, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card-ocean {
  position: relative;
  width: min(720px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 25px 60px rgba(7, 89, 133, 0.3);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay.active .modal-card-ocean {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-ocean-1);
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: #ef4444;
}

.modal-badge-ocean {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ocean-primary);
  background: var(--ocean-soft);
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}

.modal-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.1rem;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

/* ETALASE MULTI-IMAGE GALLERY SHOWCASE */
.modal-gallery-showcase {
  margin: 0.75rem 0 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-ocean-1);
  border: 1px solid rgba(2, 132, 199, 0.15);
  padding: 0.75rem;
}

.modal-gallery-main {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  color: var(--ocean-primary);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.gallery-arrow:hover {
  background: var(--ocean-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }

.gallery-caption-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* SCROLLABLE ETALASE THUMBNAIL STRIP */
.modal-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-behavior: smooth;
}

.modal-gallery-thumbs::-webkit-scrollbar {
  height: 4px;
}

.modal-gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--ocean-primary);
  border-radius: 999px;
}

.thumb-btn {
  position: relative;
  flex-shrink: 0;
  width: 90px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease;
  background: #0f172a;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.thumb-btn.active {
  opacity: 1;
  border-color: var(--ocean-primary);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* PREVIEW HOVER HINT ON CARDS */
.preview-hover-hint {
  position: absolute;
  inset: 0;
  background: rgba(2, 132, 199, 0.78);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 4;
}

.clay-window-preview:hover .preview-hover-hint {
  opacity: 1;
}

/* LIGHTBOX ETALASE GALERI FOTO ONLY */
.lightbox-card-ocean {
  position: relative;
  width: min(850px, 96vw);
  max-height: 92vh;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(7, 89, 133, 0.35);
  transform: scale(0.95);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .lightbox-card-ocean {
  transform: scale(1);
}

.lightbox-header {
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lightbox-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.lightbox-sub-badge {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ocean-primary);
  background: var(--ocean-soft);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}

.lightbox-display-stage {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.modal-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-tech-section {
  margin-top: 1rem;
}

.tech-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.modal-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: flex-end;
}

/* TOAST */
.toast-ocean {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: #0284c7;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast-ocean.show {
  transform: translateY(0);
  opacity: 1;
}

/* TOP SCROLL PROGRESS BAR */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0284c7, #38bdf8, #06b6d4);
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.4);
  transition: width 0.1s ease-out;
}

/* BACK TO TOP FLOATING BUTTON */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.25);
  color: var(--ocean-primary);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--ocean-primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.35);
}

/* BACKGROUND AMBIENT GLOWING SEA BLOBS */
.ambient-blob-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-sea-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.45;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.ambient-sea-blob.blob-1 {
  top: 15%;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35) 0%, rgba(2, 132, 199, 0.12) 60%, transparent 100%);
  animation: blobFloat1 18s ease-in-out infinite alternate;
}

.ambient-sea-blob.blob-2 {
  top: 50%;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(56, 189, 248, 0.1) 60%, transparent 100%);
  animation: blobFloat2 22s ease-in-out infinite alternate;
}

.ambient-sea-blob.blob-3 {
  top: 80%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(186, 230, 253, 0.4) 0%, rgba(2, 132, 199, 0.1) 60%, transparent 100%);
  animation: blobFloat1 15s ease-in-out infinite alternate-reverse;
}

@keyframes blobFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-30px, 80px) scale(0.95); }
}

@keyframes blobFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, -50px) scale(1.15); }
  100% { transform: translate(40px, -80px) scale(0.9); }
}

/* REVEAL ANIMATIONS ENHANCED WITH CASCADING WAVE STAGGERING */
.reveal {
  opacity: 0;
  transform: translateY(45px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Section Pill & Line Scroll Reveal Expansion */
.pill-line {
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--ocean-primary);
  margin: 0.75rem auto 0;
  opacity: 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.reveal.is-visible .pill-line {
  width: 60px;
  opacity: 1;
}

/* Cascading Stagger Delays for Cards Inside Revealed Sections */
.reveal.is-visible .glass-panel:nth-child(1),
.reveal.is-visible .timeline-card-ocean:nth-child(1),
.reveal.is-visible .skill-card-ocean:nth-child(1),
.reveal.is-visible .method-card:nth-child(1) {
  animation: cardFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.reveal.is-visible .glass-panel:nth-child(2),
.reveal.is-visible .timeline-card-ocean:nth-child(2),
.reveal.is-visible .skill-card-ocean:nth-child(2),
.reveal.is-visible .method-card:nth-child(2) {
  animation: cardFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

.reveal.is-visible .glass-panel:nth-child(3),
.reveal.is-visible .timeline-card-ocean:nth-child(3),
.reveal.is-visible .skill-card-ocean:nth-child(3),
.reveal.is-visible .method-card:nth-child(3) {
  animation: cardFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.34s forwards;
}

.reveal.is-visible .glass-panel:nth-child(4),
.reveal.is-visible .timeline-card-ocean:nth-child(4) {
  animation: cardFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.46s forwards;
}

@keyframes cardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col, .three-col {
    grid-template-columns: 1fr;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: rgba(240, 249, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(2, 132, 199, 0.2);
    box-shadow: 0 15px 30px rgba(2, 132, 199, 0.15);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

  .stats-container {
    grid-template-columns: 1fr;
  }

  .clay-window-card {
    width: min(300px, 88vw);
  }

  .lang-row {
    grid-template-columns: 1fr;
  }

  .admin-project-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-proj-actions {
    flex-direction: row;
    width: 100%;
  }

  .gallery-input-row {
    grid-template-columns: 1fr;
  }
}

/* ADMIN DASHBOARD STYLES */
.admin-body {
  background: var(--bg-ocean-1);
}

.admin-navbar {
  border-bottom: 1px solid rgba(2, 132, 199, 0.15);
}

.admin-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.supabase-status-badge {
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: var(--text-muted);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.supabase-status-badge.connected {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: #059669;
}

.admin-main-wrap {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 2.5rem 0 5rem;
}

.admin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-stats-grid {
  margin-bottom: 2rem;
}

.stat-admin-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
}

.stat-admin-icon {
  font-size: 1.8rem;
  color: var(--ocean-primary);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ocean-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-admin-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.stat-admin-lbl {
  font-size: 0.82rem;
  color: var(--text-light);
}

.admin-list-panel {
  padding: 1.8rem;
}

.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-projects-table {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admin-project-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.05);
  transition: all 0.25s ease;
}

.admin-project-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.12);
}

.admin-proj-thumb {
  width: 100px;
  height: 75px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0f172a;
}

.admin-proj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-proj-info {
  flex-grow: 1;
}

.admin-proj-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}

.admin-proj-year, .admin-gallery-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
}

.admin-proj-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}

.admin-proj-org {
  font-size: 0.8rem;
  color: var(--ocean-primary);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.admin-proj-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.admin-proj-tech {
  font-size: 0.78rem;
  color: var(--text-light);
}

.admin-proj-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-danger {
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}

.btn-danger:hover {
  background: #ef4444 !important;
  color: #fff !important;
}

.admin-form-card {
  width: min(780px, 95vw);
}

.admin-form-body {
  margin-top: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(2, 132, 199, 0.25);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--ocean-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
  background: #fff;
}

.form-gallery-section {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem;
  background: var(--bg-ocean-1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(2, 132, 199, 0.15);
}

.gallery-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.gallery-section-head label {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ocean-primary);
}

.gallery-items-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gallery-input-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.gallery-input-row input {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  font-size: 0.82rem;
}

.form-actions-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.supabase-sql-snippet {
  margin-top: 1rem;
  padding: 0.85rem;
  background: #0f172a;
  color: #38bdf8;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
}

.sql-title {
  display: block;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.supabase-sql-snippet pre {
  margin: 0;
  white-space: pre-wrap;
}

.empty-state-admin {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 1rem;
}

.file-upload-input-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.file-upload-input-wrap input[type="text"] {
  flex-grow: 1;
}

.upload-file-btn {
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.live-thumb-preview {
  margin-top: 0.5rem;
  border-radius: 10px;
  overflow: hidden;
  max-width: 140px;
  max-height: 90px;
  background: #0f172a;
}

.live-thumb-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
