/* ═══════════════════════════════════════════════════════
   NEXDIGI CREATIVE — PREMIUM COMPANY PROFILE
   Brand Identity: Deep Indigo + Warm Amber/Gold
   Derived from logo: #2d2554 (Purple-Navy) + #F5A623 (Gold)
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  /* ── Brand Palette (from logo) ── */
  --primary: #F5A623;
  --primary-light: #FFCF6F;
  --primary-dark: #D4891A;
  --primary-glow: rgba(245, 166, 35, 0.18);
  --accent: #FF8C42;

  /* ── Deep Indigo-Navy (from logo background) ── */
  --navy: #1a1545;
  --navy-light: #252050;
  --navy-deep: #110e30;
  --navy-mid: #1f1a4d;

  /* ── Surface Colors ── */
  --bg-light: #f7f8fc;
  --bg-white: #ffffff;
  --bg-cream: #fefcf8;

  /* ── Text ── */
  --text-white: #ffffff;
  --text-dark: #1a1545;
  --text-muted: #8b8fa8;
  --text-gray: #5c6080;
  --text-body: #3d4063;

  /* ── Borders ── */
  --border-light: #e8e9f0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(245, 166, 35, 0.12);

  /* ── Glass ── */
  --glass-bg: rgba(26, 21, 69, 0.96);
  --glass-card: rgba(255, 255, 255, 0.04);

  /* ── Radius ── */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(26, 21, 69, 0.06);
  --shadow-md: 0 4px 24px rgba(26, 21, 69, 0.07);
  --shadow-lg: 0 12px 40px rgba(26, 21, 69, 0.10);
  --shadow-xl: 0 24px 64px rgba(26, 21, 69, 0.14);
  --shadow-glow: 0 8px 32px rgba(245, 166, 35, 0.28);

  /* ── Transitions ── */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; max-width: 100%; }
html { scroll-behavior: smooth; }
html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
section { overflow: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  line-height: 1.75;
  font-size: 15px;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(to bottom, var(--primary), var(--accent)); border-radius: 4px; border: 2px solid var(--navy-deep); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(to bottom, var(--primary-light), var(--primary)); }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 70px 0; }
.text-orange { color: var(--primary); }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: #fff; padding: 15px 34px;
  border-radius: var(--radius-full); font-weight: 700; font-size: 15px;
  transition: var(--transition); letter-spacing: 0.01em;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(245, 166, 35, 0.45);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text-white); padding: 14px 34px;
  border-radius: var(--radius-full); font-weight: 600; font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.2); transition: var(--transition);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }

.badge {
  display: inline-block; padding: 8px 22px; border-radius: var(--radius-full);
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  background: var(--primary-glow); color: var(--primary);
  border: 1px solid rgba(245, 166, 35, 0.25);
  letter-spacing: 1.2px; backdrop-filter: blur(4px);
}
.section-title { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size: clamp(26px, 5vw, 42px); font-weight: 800; margin-bottom: 12px; line-height: 1.25; letter-spacing: -0.03em; color: var(--text-dark); }
.section-sub { color: var(--text-gray); font-size: 15px; margin-bottom: 24px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:translateY(0) } }
@keyframes zoomIn { from { opacity:0; transform:scale(.85) } to { opacity:1; transform:scale(1) } }
@keyframes pulse-glow { 0%,100% { box-shadow:0 0 20px rgba(37,211,102,.4) } 50% { box-shadow:0 0 40px rgba(37,211,102,.7) } }
@keyframes progress { from { width:0 } to { width:100% } }
@keyframes blink { 50% { border-color:transparent } }

.reveal { opacity:0; transform:translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.active { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.active { opacity:1; transform:translateX(0); }
.reveal-zoom { opacity:0; transform:scale(.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-zoom.active { opacity:1; transform:scale(1); }

/* ══════════════════════════════
   LOADING SCREEN
══════════════════════════════ */
#loading-screen { 
  position:fixed; inset:0; background:var(--navy); z-index:9999; 
  display:flex; flex-direction:column; align-items:center; justify-content:center; 
  gap:24px; transition: opacity .5s, visibility .5s; 
  text-align: center;
}
#loading-screen.hidden { opacity:0; visibility:hidden; }
.loading-logo { 
  font-size:32px; font-weight:900; color:#fff; letter-spacing:-1px; 
  text-align: center; width: 100%;
}
.loading-logo span { color:var(--primary); }
.loading-bar { width:200px; height:4px; background:rgba(255,255,255,.1); border-radius:10px; overflow:hidden; }
.loading-progress { height:100%; background:linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius:3px; animation:progress 1.5s ease forwards; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#navbar { position:fixed; top:0; left:0; right:0; z-index:1000; padding:18px 0; transition: var(--transition); width: 100%; }
@media (max-width: 991px) {
  #navbar { background: rgba(26, 21, 69, 0.98); backdrop-filter: blur(15px); padding: 0; height: 60px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
  .nav-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
  .nav-logo-text { font-size: 14px; max-width: 160px; }
  .hero-title { font-size: clamp(26px, 8vw, 36px) !important; line-height: 1.2 !important; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

/* Tablet Landscape & Small Desktop (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-inner { padding: 0 15px; }
  .nav-menu { gap: 10px; }
  .nav-logo-text { display: none; } /* Hide long text on mid-screens to prevent overlap */
  .nav-link { font-size: 11px; }
  .nav-cta { padding: 8px 14px; font-size: 11px; }
  .nav-logo img { height: 34px; }
}

/* Medium Desktop (1201px - 1440px) */
@media (min-width: 1201px) and (max-width: 1440px) {
  .nav-inner { padding: 0 25px; }
  .nav-menu { gap: 18px; }
  .nav-logo-text { font-size: 15px; max-width: 180px; }
  .nav-link { font-size: 12px; }
  .nav-cta { padding: 9px 18px; font-size: 12px; }
}
#navbar.scrolled { background:var(--glass-bg); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid rgba(245,166,35,0.08); padding:10px 0; box-shadow: 0 4px 30px rgba(17,14,48,0.3); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { display:flex; align-items:center; gap:12px; }
.nav-logo img { height:38px; width:auto; object-fit:contain; filter: drop-shadow(0 2px 8px rgba(245,166,35,0.2)); }
.nav-logo-text { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:18px; font-weight:800; color:#fff; letter-spacing:-0.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 250px; }
.nav-logo-icon { width:38px; height:38px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:900; font-size:16px; color:#fff; box-shadow: 0 4px 12px rgba(245,166,35,0.3); }
.nav-menu { display:flex; align-items:center; gap:32px; }
.nav-link { font-size:13.5px; font-weight:500; color:rgba(255,255,255,.65); transition:var(--transition); position:relative; padding-bottom:4px; letter-spacing:0.01em; }
.nav-link::after { content:''; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:0; height:2px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius:2px; transition:width .3s var(--ease-out); }
.nav-link:hover, .nav-link.active { color:#fff; }
.nav-link:hover::after, .nav-link.active::after { width:100%; }
.nav-cta { background: linear-gradient(135deg, var(--primary), var(--accent)); color:#fff; padding:10px 22px; border-radius:var(--radius-full); font-weight:700; font-size:13px; transition:var(--transition); box-shadow: 0 4px 16px rgba(245,166,35,0.25); }
.nav-cta:hover { transform:translateY(-2px) scale(1.03); box-shadow:0 8px 24px rgba(245,166,35,.45); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:10px; z-index: 1100; position: relative; transition: var(--transition); }
.hamburger span { width:22px; height:2px; background:#fff; border-radius:2px; transition: all 0.3s cubic-bezier(.4, 0, .2, 1); display: block; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform: translateX(-10px); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ── */
.mobile-menu { 
  position:fixed; top:60px; right:-100%; width:85%; max-width:320px; height:calc(100vh - 60px); 
  background: #110e30; 
  z-index:900; 
  display:flex; flex-direction:column; 
  transition:right .3s cubic-bezier(.4, 0, .2, 1); 
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}
.mobile-menu.open { right:0; }
.mobile-overlay { position:fixed; top:60px; left:0; right:0; bottom:0; background:rgba(0,0,0,.7); backdrop-filter: blur(4px); z-index:850; opacity:0; visibility:hidden; transition:all 0.3s ease; }
.mobile-overlay.open { opacity:1; visibility:visible; }

.mobile-nav {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mobile-link { 
  padding: 16px 24px; 
  font-size: 15px; 
  font-weight: 500; 
  color: rgba(255,255,255,0.85); 
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}

.mobile-link:hover {
  background: rgba(255,255,255,0.02);
  color: var(--primary);
  padding-left: 36px;
}

.mobile-link.whatsapp-link {
  color: #25D366;
  border-bottom: none;
}

.mobile-link.whatsapp-link i {
  margin-right: 12px;
  font-size: 20px;
}

.mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 10px 0;
}

/* ══════════════════════════════
   HERO — Dark Navy Background
══════════════════════════════ */
#hero { min-height:100vh; display:flex; align-items:center; position:relative; overflow:hidden; padding:120px 0 80px; background:linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%); color:#fff; }
.hero-bg { position:absolute; inset:0; background:radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,166,35,.06) 0%, transparent 55%), radial-gradient(ellipse 50% 40% at 80% 80%, rgba(100,60,200,.04) 0%, transparent 50%); }
.hero-grid { position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size:64px 64px; opacity:0.6; }
.orb { position:absolute; border-radius:50%; filter:blur(100px); pointer-events:none; }
.orb-1 { width:600px; height:600px; background:rgba(245,166,35,.06); top:-150px; right:-150px; animation: float 8s ease-in-out infinite; }
.orb-2 { width:450px; height:450px; background:rgba(100,80,220,.04); bottom:-120px; left:-120px; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform:translateY(0px); } 50% { transform:translateY(-20px); } }
.hero-content { position:relative; z-index:2; text-align:center; max-width:840px; margin:0 auto; }
.hero-content .badge { margin-bottom: 32px; }
.hero-title { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:clamp(36px,6vw,70px); font-weight:800; line-height:1.08; margin-bottom:24px; letter-spacing:-0.04em; }
.hero-title span.typewriter { color:var(--primary); border-right:3px solid var(--primary); padding-right:4px; animation:blink .75s step-end infinite; }
.hero-desc { font-size:clamp(15px,2vw,17px); color:rgba(255,255,255,.55); max-width:600px; margin:0 auto 36px; line-height:1.7; }
.hero-actions { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-bottom:48px; }
.hero-socials { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.social-pill { display:inline-flex; align-items:center; gap:8px; padding:11px 22px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:var(--radius-full); font-size:13.5px; font-weight:500; color:rgba(255,255,255,.85); transition:var(--transition); backdrop-filter:blur(8px); }
.social-pill:hover { background:rgba(245,166,35,.1); border-color:var(--primary); color:var(--primary); transform:translateY(-3px); }
.social-pill i { transition: transform .3s ease, color .3s ease; font-size: 1.1em; }
.social-pill:hover i { transform: scale(1.1); }

.social-whatsapp:hover {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-color: #25D366; color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.3);
}
.social-whatsapp:hover i { color: #fff; }
.social-instagram:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 55%, #8134af 100%);
  border-color: #dd2a7b; color: #fff;
  box-shadow: 0 10px 28px rgba(221, 42, 123, 0.28);
}
.social-instagram:hover i { color: #fff; }
.social-tiktok:hover {
  background: linear-gradient(135deg, #111 0%, #000 100%);
  border-color: #333; color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}
.social-tiktok:hover i { color: #fff; }

/* ══════════════════════════════
   STATS — Dark Card Strip
══════════════════════════════ */
#stats { padding:64px 0; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%); border-top:1px solid rgba(245,166,35,0.06); border-bottom:1px solid rgba(245,166,35,0.06); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); text-align:center; }
.stat-item { padding:36px 24px; position:relative; }
.stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:20%; height:60%; width:1px; background:rgba(255,255,255,0.06); }
.stat-value { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:clamp(36px,4vw,54px); font-weight:800; color:var(--primary); line-height:1; margin-bottom:10px; letter-spacing:-0.03em; }
.stat-label { font-size:13px; color:var(--text-muted); font-weight:500; letter-spacing:0.03em; text-transform:uppercase; }

/* ══════════════════════════════
   VISION — White Card Section
══════════════════════════════ */
#vision { background:var(--bg-light); }
.vision-inner { background:var(--bg-white); border-radius:var(--radius-lg); padding:64px; overflow:hidden; position:relative; box-shadow:var(--shadow-lg); margin-top:-44px; z-index:10; border:1px solid var(--border-light); text-align: center; }
.vision-inner::before { content:''; position:absolute; top:-50%; right:-20%; width:400px; height:400px; background:radial-gradient(circle, var(--primary-glow), transparent 70%); pointer-events:none; }
.vision-statement { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:clamp(18px,2.5vw,24px); font-weight:700; color:var(--text-dark); line-height:1.4; margin: 0 auto 40px; max-width:680px; letter-spacing:-0.02em; }
.missions-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; text-align: left; }
.mission-card { background:var(--bg-light); border:1px solid var(--border-light); border-radius:var(--radius); padding:28px; border-left:4px solid var(--primary); transition:var(--transition); }
.mission-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-left-color:var(--primary-light); }
.mission-icon { width:52px; height:52px; background:var(--primary-glow); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--primary); margin-bottom:16px; transition:var(--transition); overflow:hidden; }
.mission-card:hover .mission-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); color:#fff; }
.mission-title { font-size:15px; font-weight:700; margin-bottom:8px; color:var(--text-dark); }
.mission-desc { font-size:13px; color:var(--text-gray); line-height:1.7; }

/* ══════════════════════════════
   SERVICES — Light Background
══════════════════════════════ */
#services { background:var(--bg-light); }
/* ── Services Slider ── */
.services-slider-container {
  position: relative;
  width: 100%;
  margin-top: 5px;
}
.services-slider {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 15px 4px 30px;
  margin: 0 -4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.services-slider.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}
.services-slider::-webkit-scrollbar { display: none; }

.services-slider-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.services-slider-track .slider-item {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  display: flex;
}

@media (max-width: 1024px) {
  .services-slider-track .slider-item {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 768px) {
  .services-slider-track .slider-item {
    flex: 0 0 280px;
    display: flex;
  }
  .services-slider-container {
    position: relative;
    padding-top: 10px;
  }
}

.service-card { position:relative; height:350px; perspective:1000px; cursor:pointer; display: flex; flex-direction: column; width: 100%; }
.service-flip { width:100%; height:100%; transition:transform .7s cubic-bezier(.4,.2,.2,1); transform-style:preserve-3d; position:relative; flex: 1; display: flex; }
.service-card:hover .service-flip, .service-card.flipped .service-flip { transform:rotateY(180deg); }
.service-front, .service-back { position:absolute; inset:0; backface-visibility:hidden; border-radius:var(--radius); flex: 1; display: flex; flex-direction: column; }
.service-front { background:var(--bg-white); border:1px solid var(--border-light); align-items:center; justify-content:center; text-align:center; padding:40px 28px; box-shadow:var(--shadow-sm); transition:var(--transition); height: 100%; }
.service-front:hover { box-shadow:0 12px 40px rgba(245,166,35,0.1); border-color:var(--border-subtle); }
.service-back { background:linear-gradient(150deg, var(--navy) 0%, var(--navy-mid) 100%); color:#fff; transform:rotateY(180deg); display:flex; flex-direction:column; align-items:center; justify-content:center; padding:32px; border:1.5px solid rgba(245,166,35,0.3); box-shadow:0 12px 40px rgba(245,166,35,0.12); border-radius:var(--radius); }
.service-icon { width:76px; height:76px; background:var(--primary-glow); border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:30px; color:var(--primary); margin-bottom:20px; transition:var(--transition); overflow:hidden; border:1px solid var(--border-subtle); }
.service-card:hover .service-icon { background:linear-gradient(135deg, var(--primary), var(--accent)); color:#fff; transform:scale(1.05); border-color:transparent; box-shadow:var(--shadow-glow); }
.service-title { font-size:17px; font-weight:700; margin-bottom:10px; color:var(--text-dark); }
.service-desc { font-size:13px; color:var(--text-gray); line-height:1.7; }
.service-hint { margin-top:18px; font-size:11px; color:var(--primary); border:1px solid rgba(245,166,35,.3); padding:6px 16px; border-radius:var(--radius-full); background:var(--primary-glow); font-weight:600; letter-spacing:0.02em; }
.service-back-title { color:var(--primary); font-weight:700; font-size:16px; margin-bottom:16px; }
.service-details { width:100%; margin-bottom:20px; }
.service-details li { display:flex; align-items:flex-start; gap:12px; padding:10px 0; font-size:13px; border-bottom:1px solid rgba(255,255,255,0.06); color:rgba(255,255,255,.85); line-height:1.5; }
.service-details li:last-child { border:none; }
.service-details li i { color:var(--primary); font-size:14px; margin-top:2px; flex-shrink:0; }

.service-cta-mobile { display: none; margin-top: 20px; }
.service-back-cta { display:flex; gap:10px; justify-content:center; margin-top:16px; }

/* ══════════════════════════════
   PRICELIST — Light Background
══════════════════════════════ */
#pricelist { background:var(--bg-light); }
.pricelist-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; max-width:1000px; margin:0 auto; align-items: start; }
.pricelist-card { background:var(--bg-white); border:1px solid var(--border-light); border-radius:var(--radius-lg); overflow:hidden; transition:var(--transition); box-shadow:var(--shadow-sm); }
.pricelist-card:hover { box-shadow:var(--shadow-xl); transform:translateY(-4px); }
.pricelist-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding:28px; position:relative; overflow:hidden; text-align:center; color:#fff; }
.pricelist-header::before { content:''; position:absolute; top:-30px; right:-30px; width:120px; height:120px; background:rgba(245,166,35,.12); border-radius:50%; filter:blur(20px); }
.pricelist-cat { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:18px; font-weight:700; margin-bottom:6px; position:relative; z-index:1; }
.pricelist-from { color:var(--primary); font-weight:700; font-size:16px; position:relative; z-index:1; }
.pricelist-body { padding:20px; }
.accordion-item { border:1px solid var(--border-light); border-radius:12px; overflow:hidden; margin-bottom:10px; transition:var(--transition); }
.accordion-item:hover { border-color: var(--border-subtle); }
.accordion-header { display:flex; justify-content:space-between; align-items:center; padding:14px 18px; cursor:pointer; transition:background .2s; }
.accordion-header:hover, .accordion-item.open .accordion-header { background:var(--primary-glow); }
.accordion-name { font-size:14px; font-weight:600; color:var(--text-dark); }
.accordion-price { font-size:13px; font-weight:700; color:var(--primary); }
.accordion-chevron { color:var(--text-muted); transition:transform .3s; font-size:12px; }
.accordion-item.open .accordion-chevron { transform:rotate(180deg); color:var(--primary); }
.accordion-body { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.accordion-item.open .accordion-body { max-height:600px; }
.accordion-content { padding:16px 18px; border-top:1px solid var(--border-light); background:var(--bg-light); }
.feature-list li { display:flex; align-items:flex-start; gap:12px; font-size:13px; color:var(--text-body); padding:8px 0; line-height:1.5; }
.feature-list li i { color:var(--primary); font-size:12px; margin-top:3px; flex-shrink:0; }
.accordion-cta { display:block; margin-top:16px; text-align:center; background:var(--navy); color:#fff; padding:10px; border-radius:10px; font-size:13px; font-weight:600; transition:var(--transition); border:1px solid var(--navy); }
.accordion-cta:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); border-color:var(--primary); }
.pricelist-note { font-size:11px; color:var(--text-muted); margin-top:16px; padding:12px; background:var(--bg-light); border-radius:8px; line-height:1.7; }

/* ══════════════════════════════
   PROCESS — How We Work
══════════════════════════════ */
#process {
  background:
    radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(245, 166, 35, 0.06), transparent 28%),
    var(--bg-white);
}
.process-header { text-align:center; max-width:860px; margin:0 auto 40px; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.process-card {
  position:relative;
  background: var(--bg-white);
  border:1px solid var(--border-light);
  border-radius:20px;
  padding:28px;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  transition: var(--transition);
}
.process-card::before {
  content:'';
  position:absolute;
  inset:0 auto auto 0;
  width:100%;
  height:3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.process-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--border-subtle); }
.process-top { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; margin-bottom:18px; }
.process-step {
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:13px; color:var(--primary-dark);
  background: var(--primary-glow);
  border:1px solid var(--border-subtle);
  flex-shrink:0;
}
.process-icon {
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color:var(--primary);
  font-size:17px;
  box-shadow: 0 6px 16px rgba(26, 21, 69, 0.15);
  flex-shrink:0;
}
.process-title { font-size:17px; font-weight:700; margin-bottom:10px; color:var(--text-dark); }
.process-desc { color:var(--text-body); font-size:13.5px; line-height:1.8; }

/* ══════════════════════════════
   FAQ — Light Background
══════════════════════════════ */
#faq { background:var(--bg-light); }
.faq-header { max-width: 820px; margin: 0 auto 40px; }
.faq-layout {
  display:grid;
  grid-template-columns: 300px 1fr;
  gap:28px;
  align-items:start;
  text-align:left;
}
.faq-intro-card {
  position:sticky;
  top:96px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow: var(--shadow-xl);
  border:1px solid rgba(245,166,35,.08);
}
.faq-intro-icon {
  width:52px; height:52px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background: var(--primary-glow);
  color: var(--primary);
  font-size:22px;
  margin-bottom:16px;
}
.faq-intro-card h3 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:21px; font-weight:800; margin-bottom:12px; }
.faq-intro-card p { color: rgba(255,255,255,.68); font-size:13.5px; line-height:1.8; margin-bottom:18px; }
.faq-intro-points { display:flex; flex-direction:column; gap:10px; margin-bottom:22px; }
.faq-intro-points div { display:flex; align-items:center; gap:10px; color:#fff; font-size:13.5px; }
.faq-intro-points i { color:#25D366; }
.faq-intro-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  width:100%;
  padding:13px 18px;
  border-radius:14px;
  background:#25D366;
  color:#fff;
  font-weight:700;
  box-shadow: 0 10px 28px rgba(37,211,102,.25);
  transition: var(--transition);
}
.faq-intro-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(37,211,102,.35); }
.faq-list { display:flex; flex-direction:column; gap:12px; }
.faq-item { background:var(--bg-white); border:1px solid var(--border-light); border-radius:var(--radius); overflow:hidden; transition:all .25s ease; box-shadow: var(--shadow-sm); }
.faq-item.open { border-color:rgba(245,166,35,.3); box-shadow:var(--shadow-lg); transform: translateY(-2px); }
.faq-question { display:flex; justify-content:space-between; align-items:center; padding:20px 24px; cursor:pointer; transition:background .2s; }
.faq-question:hover { background:rgba(245,166,35,.03); }
.faq-q-text { font-size:14.5px; font-weight:700; flex:1; padding-right:16px; color:var(--text-dark); }
.faq-icon { width:32px; height:32px; border-radius:50%; background:var(--primary-glow); display:flex; align-items:center; justify-content:center; color:var(--primary); font-size:12px; transition:transform .3s, background .2s; flex-shrink:0; }
.faq-item.open .faq-icon { transform:rotate(45deg); background: linear-gradient(135deg, var(--primary), var(--accent)); color:#fff; }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease; }
.faq-item.open .faq-answer { max-height:340px; }
.faq-answer-inner { padding:0 24px 22px; font-size:14px; color:var(--text-body); line-height:1.8; border-top:1px solid var(--border-light); }

/* ══════════════════════════════
   PORTFOLIO — White Background
══════════════════════════════ */
#portfolio { background:var(--bg-white); }
.portfolio-filters { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:44px; }
.filter-btn { padding:9px 22px; border-radius:var(--radius-full); font-size:13px; font-weight:600; background:var(--bg-light); border:1px solid var(--border-light); color:var(--text-gray); transition:var(--transition); }
.filter-btn:hover, .filter-btn.active { background: linear-gradient(135deg, var(--primary), var(--accent)); border-color:var(--primary); color:#fff; box-shadow:var(--shadow-glow); }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.portfolio-item { border-radius:var(--radius); overflow:hidden; background:var(--bg-white); border:1px solid var(--border-light); cursor:pointer; transition:var(--transition); box-shadow:var(--shadow-sm); }
.portfolio-item:hover { transform:translateY(-8px); border-color:var(--border-subtle); box-shadow:0 16px 48px rgba(245,166,35,0.10); }
.portfolio-thumb { aspect-ratio: 16 / 9; height: auto; width: 100%; overflow:hidden; position:relative; background:var(--navy-deep); display:flex; align-items:center; justify-content:center; }
.portfolio-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease-out); }
.portfolio-item:hover .portfolio-thumb img { transform:scale(1.06); }
.portfolio-thumb-placeholder { color:rgba(255,255,255,.85); font-size:14px; font-weight:600; text-align:center; padding:16px; display:flex; flex-direction:column; align-items:center; gap:12px; }
.portfolio-thumb-placeholder::before { content:'\f03e'; font-family:'Font Awesome 6 Free'; font-weight:900; font-size:36px; color:var(--primary); opacity:0.5; }
.portfolio-overlay { position:absolute; inset:0; background:rgba(26,21,69,.5); display:flex; align-items:center; justify-content:center; opacity:0; transition:opacity .3s; }
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay-icon { width:54px; height:54px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:18px; color:#fff; transform:scale(.8); transition:transform .3s var(--ease-out); box-shadow:var(--shadow-glow); }
.portfolio-item:hover .portfolio-overlay-icon { transform:scale(1); }
.portfolio-info { padding:20px; }
.portfolio-category { font-size:11px; font-weight:700; color:var(--primary); background:var(--primary-glow); padding:4px 12px; border-radius:var(--radius-full); display:inline-block; margin-bottom:10px; text-transform:uppercase; letter-spacing:0.5px; }
.portfolio-title { font-size:15px; font-weight:700; margin-bottom:6px; color:var(--text-dark); transition:color .2s; }
.portfolio-item:hover .portfolio-title { color:var(--primary); }
.portfolio-desc { font-size:12px; color:var(--text-gray); line-height:1.6; }

/* ══════════════════════════════
   ABOUT US & TEAM — MODERN & SIMPLIFIED
   ══════════════════════════════ */
#about { background: var(--bg-white); }
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.about-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  transition: var(--transition);
}
.about-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
}
.info-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 24px;
}
.about-info-card h3 {
  font-size: 22px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 16px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.about-info-card p {
  color: var(--text-body); font-size: 14.5px; line-height: 1.8;
  white-space: pre-line;
}

.why-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.why-point-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--text-dark); font-weight: 600;
}
.why-point-item i { color: var(--primary); font-size: 16px; }

/* ── Team Section ── */
.team-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0; border-radius: 2px;
}
.team-leadership {
  display: flex; justify-content: center; margin-bottom: 60px;
}
.leader-card-modern {
  background: var(--navy-deep);
  border-radius: 24px;
  display: flex; align-items: center;
  padding: 24px 44px; gap: 32px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}
.leader-card-modern:hover { transform: scale(1.02); box-shadow: 0 20px 60px rgba(245, 166, 35, 0.3); }
.leader-image-wrapper {
  width: 110px; height: 110px;
  border-radius: 50%; border: 3px solid var(--primary);
  overflow: hidden; flex-shrink: 0;
}
.leader-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.leader-info .member-dept {
  font-size: 11px; font-weight: 800; color: var(--primary);
  letter-spacing: 2px; margin-bottom: 8px; display: block;
}
.leader-info .member-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.leader-info .member-role { font-size: 14px; color: rgba(255,255,255,0.6); }

.division-info {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light);
}
.division-label {
  font-size: 14px; font-weight: 800; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2px;
}
.scroll-indicator {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: 6px;
}
.scroll-indicator i {
  animation: slideArrow 1.5s infinite;
}
@keyframes slideArrow {
  0%, 100% { transform: translateX(0); opacity: 0.5; }
  50% { transform: translateX(4px); opacity: 1; }
}

.team-slider-container {
  position: relative;
  width: 100%;
}
.team-nav-btn-outer {
  position: absolute;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.team-nav-btn-outer:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-50%) scale(1.1);
}
.team-prev { left: -22px; }
.team-next { right: -22px; }

@media (max-width: 1240px) {
  .team-prev { left: 10px; }
  .team-next { right: 10px; }
  .team-nav-btn-outer {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .team-nav-btn-outer {
    display: none; /* Hide absolute arrows on mobile, use swipe & "Geser" indicator */
  }
}

.team-slider {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 4px 30px;
  margin: 0 -4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  user-select: none;
  cursor: grab;
  scroll-behavior: smooth;
}
.team-slider.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}
.team-slider::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.team-slider-track {
  display: flex;
  gap: 24px;
}
.member-card-modern.slider-item {
  flex: 0 0 220px; /* Fixed width for slider items */
  scroll-snap-align: start;
}

.member-card-modern {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.member-card-modern:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
.member-image-wrapper {
  aspect-ratio: 1 / 1;
  width: 100%;
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
}
.member-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.member-card-modern:hover .member-image-wrapper img { transform: scale(1.1); }
.member-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 800; color: var(--primary);
  background: var(--primary-glow);
}
.member-overlay-simple {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,21,69,0.8), transparent 50%);
  display: flex; align-items: flex-end; padding: 12px;
  opacity: 0; transition: opacity 0.3s;
}
.member-card-modern:hover .member-overlay-simple { opacity: 1; }
.member-dept-tag {
  font-size: 10px; font-weight: 700; color: #fff;
  background: var(--primary); padding: 4px 10px; border-radius: 4px;
}
.member-info-simple { padding: 16px; text-align: center; }
.member-name-simple { font-size: 14.5px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.member-role-simple { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════
   TESTIMONIALS — Light Background
══════════════════════════════ */
#testimonials { background:var(--bg-light); }
.testimonials-inner { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testimonial-card { background:var(--bg-white); border:1px solid var(--border-light); border-radius:var(--radius); padding:28px; transition:var(--transition); box-shadow:var(--shadow-sm); }
.testimonial-card:hover { border-color:var(--border-subtle); transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.stars { color:#F5A623; font-size:14px; margin-bottom:14px; letter-spacing:2px; }
.testimonial-text { font-size:14px; color:var(--text-body); line-height:1.75; margin-bottom:20px; font-style:italic; }
.testimonial-text::before { content:'\201C'; color:var(--primary); font-size:40px; line-height:0; vertical-align:-16px; margin-right:4px; font-family:Georgia, serif; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.t-avatar { width:44px; height:44px; border-radius:50%; background:var(--primary-glow); border:2px solid rgba(245,166,35,.25); display:flex; align-items:center; justify-content:center; font-weight:700; color:var(--primary); font-size:16px; flex-shrink:0; }
.t-name { font-size:14px; font-weight:700; color:var(--text-dark); }
.t-role { font-size:12px; color:var(--text-muted); }

/* ══════════════════════════════
.member-role { font-size:13px; color:var(--text-muted); }
.division-section { margin-bottom:36px; }
.division-title { text-align:center; color:var(--primary); font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:2px; margin-bottom:20px; }
.division-title::after { content:''; display:block; width:40px; height:2px; background:var(--border-light); margin:8px auto 0; }
.members-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:16px; }
.member-card { text-align:center; background:var(--bg-light); border:1px solid var(--border-light); border-radius:12px; padding:20px 16px; width:140px; transition:var(--transition); }
.member-card:hover { transform:translateY(-6px); border-color:var(--primary); box-shadow:var(--shadow-md); }
.member-card .member-avatar, .member-card .member-avatar-placeholder { width:72px; height:72px; margin-bottom:10px; font-size:22px; }
.member-card .member-name { font-size:13px; }
.member-card .member-role { font-size:11px; }

/* ══════════════════════════════
   CTA BANNER — Dark Gradient
══════════════════════════════ */
#cta { background:linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-mid) 100%); border-top:1px solid rgba(245,166,35,.06); border-bottom:1px solid rgba(245,166,35,.06); padding:90px 0; text-align:center; position:relative; overflow:hidden; color:#fff; }
#cta::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245,166,35,.06), transparent); }
.cta-title { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:clamp(28px,4vw,48px); font-weight:800; margin-bottom:16px; letter-spacing:-0.03em; }
.cta-sub { color:rgba(255,255,255,.55); font-size:17px; margin-bottom:40px; max-width:480px; margin-left:auto; margin-right:auto; line-height:1.7; }

/* ══════════════════════════════
   FOOTER — Dark Navy
══════════════════════════════ */
#footer { background:var(--navy-deep); border-top:1px solid rgba(245,166,35,.06); padding:64px 0 0; color:#fff; }
.footer-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-brand { margin-bottom:0; }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.footer-logo img { height:36px; }
.footer-logo-text { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; font-size:20px; font-weight:800; }
.footer-tagline { color:var(--text-muted); font-size:14px; line-height:1.7; max-width:320px; }
.footer-contact h4 { font-size:15px; font-weight:700; margin-bottom:20px; letter-spacing:0.01em; }
.footer-links { display:flex; flex-direction:column; gap:12px; }
.footer-link { display:flex; align-items:center; gap:14px; font-size:14px; color:var(--text-muted); transition:var(--transition); }
.footer-link:hover { color:#fff; transform:translateX(4px); }
.footer-link i { width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.04); font-size:15px; transition:background .2s; flex-shrink:0; }
.footer-link:hover i { background:var(--primary-glow); color:var(--primary); }
.footer-map { height:220px; border-radius:var(--radius); overflow:hidden; border:1px solid rgba(255,255,255,.06); }
.footer-map iframe { width:100%; height:100%; border:0; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding:20px 0; text-align:center; font-size:13px; color:var(--text-muted); cursor:pointer; transition:color .2s; user-select:none; }
.footer-bottom:hover { color:#fff; }

/* ══════════════════════════════
   PORTFOLIO MODAL (PREMIUM)
   ══════════════════════════════ */
.port-detail-btn {
  display:inline-flex; align-items:center; gap:8px;
  margin-top:12px; font-size:12px; padding:10px 22px;
  border-radius:50px; font-weight:700; color:var(--primary);
  border:1.5px solid rgba(245,166,35,.25); background:transparent;
  transition:all .3s var(--ease-out);
}
.port-detail-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent)); color:#fff;
  border-color:var(--primary); transform:translateX(5px);
  box-shadow:var(--shadow-glow);
}

.modal-overlay {
  position:fixed; inset:0; z-index:2000;
  background:rgba(17, 14, 48, 0.88); backdrop-filter:blur(14px);
  display:flex; align-items:center; justify-content:center;
  padding:20px; opacity:0; visibility:hidden; transition:all 0.4s ease;
}
.modal-overlay.open { opacity:1; visibility:visible; }

.modal-box.glass-modal {
  background: rgba(26, 21, 69, 0.85);
  border: 1px solid rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 1100px;
  max-height: 90vh; overflow: hidden;
  position: relative; color: #fff;
  box-shadow: 0 40px 100px rgba(17,14,48,0.6);
}
.animate-pop { transform: scale(0.9) translateY(20px); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.modal-overlay.open .animate-pop { transform: scale(1) translateY(0); }

.modal-flex { display: flex; height: 100%; min-height: 600px; }
.modal-media-side { flex: 1.5; background: #000; position: relative; display: flex; flex-direction: column; }
.media-container { flex: 1; position: relative; overflow: hidden; }
.media-item { position: absolute; inset:0; opacity:0; transition: opacity 0.4s ease; display:none; }
.media-item.active { opacity:1; display:block; }
.media-item img { width: 100%; height: 100%; object-fit: contain; }
.media-item iframe { width: 100%; height: 100%; }

.media-tabs {
  padding: 12px; background: rgba(0,0,0,0.5);
  display: flex; justify-content: center; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.media-tabs button {
  padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 600;
  color: #94a3b8; border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
}
.media-tabs button.active { background: var(--primary); color: var(--navy); border-color: var(--primary); }

.modal-info-side { flex: 0.7; padding: 40px; display: flex; flex-direction: column; background: rgba(15, 23, 42, 0.4); }
.modal-title { font-size: 28px; font-weight: 800; margin-top: 10px; margin-bottom: 20px; line-height: 1.2; }
.modal-scroll-area { flex: 1; overflow-y: auto; margin-bottom: 30px; padding-right: 10px; }
.modal-scroll-area::-webkit-scrollbar { width: 4px; }
.modal-scroll-area::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }

.info-section h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; opacity: 0.8; }
.modal-desc { font-size: 15px; color: #cbd5e1; line-height: 1.8; white-space: pre-line; }

.modal-footer { margin-top: auto; }
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: #25D366; color: #fff; padding: 16px; border-radius: 16px;
  font-weight: 700; font-size: 15px; transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(37,211,102,0.5); }

@media (max-width: 900px) {
  .modal-flex { flex-direction: column; }
  .modal-media-side { flex: none; height: 350px; }
  .modal-box.glass-modal { max-height: 95vh; margin: 10px; }
  .modal-info-side { padding: 24px; flex: 1; overflow-y: auto; }
}

/* ══════════════════════════════
   FLOATING WA
══════════════════════════════ */
.float-wa { position:fixed; bottom:28px; right:28px; z-index:900; width:56px; height:56px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:24px; color:#fff; box-shadow:0 4px 20px rgba(37,211,102,.45); transition:var(--transition); animation:pulse-glow 2.5s ease-in-out infinite; }
.float-wa:hover { transform:scale(1.1); box-shadow:0 8px 30px rgba(37,211,102,.6); }
.float-wa-tooltip { position:absolute; right:68px; background:#fff; color:#333; font-size:13px; font-weight:600; padding:6px 14px; border-radius:8px; white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .2s; box-shadow:var(--shadow-md); }
.float-wa-tooltip::after { content:''; position:absolute; right:-6px; top:50%; transform:translateY(-50%); border:6px solid transparent; border-left-color:#fff; border-right:none; }
.float-wa:hover .float-wa-tooltip { opacity:1; }

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-overlay { position:fixed; inset:0; background:rgba(17,14,48,.88); backdrop-filter:blur(10px); z-index:2000; display:flex; align-items:center; justify-content:center; padding:20px; opacity:0; visibility:hidden; transition:var(--transition); }
.modal-overlay.open { opacity:1; visibility:visible; }
.modal-box { background:var(--bg-white); border-radius:var(--radius-lg); width:100%; max-width:800px; overflow:hidden; transform:scale(.9); transition:transform .3s var(--ease-out); box-shadow:var(--shadow-xl); }
.modal-overlay.open .modal-box { transform:scale(1); }
.modal-media { aspect-ratio:16/9; background:var(--navy-deep); position:relative; }
.modal-media iframe, .modal-media video, .modal-media img { width:100%; height:100%; object-fit:cover; }
.modal-body { padding:24px; }
.modal-category { font-size:12px; font-weight:700; color:var(--primary); background:var(--primary-glow); padding:4px 12px; border-radius:var(--radius-full); display:inline-block; margin-bottom:10px; }
.modal-title { font-size:20px; font-weight:700; margin-bottom:8px; color:var(--text-dark); }
.modal-desc { font-size:14px; color:var(--text-gray); line-height:1.7; margin-bottom:20px; }
.modal-close { position:absolute; top:14px; right:14px; width:36px; height:36px; background:rgba(17,14,48,.6); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:14px; cursor:pointer; transition:background .2s; z-index:10; border:none; }
.modal-close:hover { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.modal-cta { display:inline-flex; align-items:center; gap:8px; background: linear-gradient(135deg, var(--primary), var(--accent)); color:#fff; padding:12px 28px; border-radius:var(--radius-full); font-weight:700; font-size:14px; transition:var(--transition); }
.modal-cta:hover { transform:translateY(-2px); box-shadow:var(--shadow-glow); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width:1024px) {
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display:none; }
  .missions-grid, .services-grid, .portfolio-grid { grid-template-columns:repeat(2,1fr); }
  .pricelist-grid { grid-template-columns:1fr; }
  .about-main-grid { grid-template-columns: 1fr; }
  .why-points-grid { grid-template-columns: 1fr; }
  .leader-card-modern { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-grid { grid-template-columns:1fr; }
  .testimonials-inner { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .faq-layout { grid-template-columns:1fr; }
  .faq-intro-card { position:relative; top:auto; }
  .testimonial-card { padding: 20px; }
  .client-logo-wrapper { min-width: 120px; padding: 12px 16px; }
  .client-logo { max-width: 100px; max-height: 50px; }
}
@media (max-width:768px) {
  .section-pad { padding:70px 0; }
  .nav-menu { display:none; }
  .hamburger { display:flex; }
  .missions-grid, .services-grid, .portfolio-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(2)::after { display:none; }
  .hero-actions { flex-direction:column; align-items:center; }
  .vision-inner { padding:32px 20px; }
  .service-card { height:auto; perspective:none; }
  .service-flip { transform-style:flat; }
  .service-card:hover .service-flip, .service-card.flipped .service-flip { transform:none; }
  .service-front, .service-back { backface-visibility:visible; position:relative; }
  .service-front { min-height:auto; border-radius:var(--radius); padding: 32px 20px; flex: 1; height: 100%; }
  .service-flip { height: auto; min-height: 100%; }
  .service-back { display: none; }
  .service-cta-mobile { display: block; }
  .service-cta-mobile .btn-primary { width: 100%; padding: 12px 20px; font-size: 14px; }
  .float-wa { width:52px; height:52px; font-size:22px; bottom:20px; right:20px; }
  .btn-primary, .btn-outline { width:100%; justify-content:center; padding: 14px 20px; font-size: 14px; }
  .process-grid { grid-template-columns:1fr; gap: 12px; }
  .faq-question { padding:18px 18px; }
  .faq-answer-inner { padding:0 18px 18px; }
  .member-card-modern.slider-item { flex: 0 0 180px; }
}

@media (max-width: 576px) {
  .section-pad { padding: 60px 0; }
  .section-title { font-size: 26px; }
  .section-sub { font-size: 14px; margin-bottom: 32px; }
  
  .hero-title { font-size: 28px; line-height: 1.3; }
  .hero-content .badge { margin-bottom: 28px; }
  .hero-desc { font-size: 14px; margin-bottom: 32px; }
  .hero-actions { gap: 12px; }
  #hero { padding: 130px 0 60px; }
  
  .vision-inner { padding: 32px 20px; margin-top: -20px; }
  .vision-statement { font-size: 18px; margin-bottom: 32px; }
  
  .service-front, .service-back { padding: 32px 20px; }
  .service-icon { width: 64px; height: 64px; font-size: 24px; }
  
  .pricelist-header { padding: 20px; }
  .pricelist-cat { font-size: 16px; }
  
  .portfolio-info { padding: 16px; }
  .portfolio-title { font-size: 14px; }
  
  .about-info-card { padding: 24px; }
  .about-info-card h3 { font-size: 18px; }
  .why-point-item { font-size: 12px; }
  
  .leader-card-modern { padding: 24px 20px; gap: 20px; border-radius: 20px; max-width: 100%; }
  .leader-image-wrapper { width: 100px; height: 100px; margin: 0 auto; }
  .leader-info .member-name { font-size: 18px; }
  .leader-info .member-role { font-size: 14px; }
  .division-info { flex-direction: row; align-items: center; justify-content: space-between; gap: 10px; }
  .division-label { font-size: 12px; }
  .scroll-indicator { font-size: 10px; }
  
  .contact-card { padding: 28px 18px; border-radius: var(--radius); }
  .form-grid { gap: 12px; }
  .contact-form .form-group label { font-size: 13px; }
}

@media (max-width:480px) {
  .container { padding:0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 10px; }
  .stat-value { font-size: 24px; }
  .stat-label { font-size: 9px; }
  .stat-item::after { display:none !important; }
  .hero-title { font-size: 24px; letter-spacing: -0.5px; line-height: 1.2; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { font-size: 13px; padding: 12px 18px; }
  .nav-logo-text { font-size: 12px; max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-logo img { height: 24px; }
  .nav-logo-icon { width: 26px; height: 26px; font-size: 12px; }
  .hamburger { padding: 8px; }
  .hamburger span { width: 18px; height: 1.5px; gap: 4px; }
  .section-pad { padding: 45px 0; }
  .vision-inner { padding: 24px 16px; margin-top: -10px; }
  .section-title { font-size: 22px !important; }
}

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  width: 6px; height: 6px; background: var(--primary);
  position: fixed; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 10001;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}
.cursor-outline {
  width: 32px; height: 32px; border: 1.5px solid rgba(245, 166, 35, 0.6);
  position: fixed; border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%); z-index: 10000;
  transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), background 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 0 15px rgba(245, 166, 35, 0);
}
.cursor-hover {
  width: 64px; height: 64px; 
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 0 25px rgba(245, 166, 35, 0.15);
}
.cursor-dot.cursor-hover {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
@media (max-width: 768px) {
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* ── CLIENTS / PARTNERS MARQUEE ── */
.clients-marquee-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  padding: 20px 0;
}
.clients-marquee {
  display: flex;
  gap: 32px;
  min-width: 100%;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  animation: scrollMarquee 25s linear infinite;
  padding-right: 32px;
}
@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.clients-marquee:hover {
  animation-play-state: paused;
}
.client-logo-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 16px 24px;
  border-radius: 12px;
  min-width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.client-logo-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 145, 77, 0.1);
}
.client-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}
.client-logo-wrapper:hover .client-logo {
  filter: grayscale(0%) opacity(1);
}
.client-logo-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 16px;
}

/* ══════════════════════════════
   CONTACT FORM SECTION
   ══════════════════════════════ */
#contact-us {
  background: var(--bg-light);
  position: relative;
}
.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 60px;
  box-shadow: var(--shadow-xl);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}
.contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  background: var(--bg-light);
  font-size: 15px;
  color: var(--navy);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}
.form-status {
  padding: 16px;
  border-radius: 12px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(34,197,94,0.15);
  color: #166534;
  border: 1px solid rgba(34,197,94,0.3);
}
.form-status.error {
  display: block;
  background: rgba(239,68,68,0.15);
  color: #991b1b;
  border: 1px solid rgba(239,68,68,0.3);
}

@media (max-width: 768px) {
  .contact-card { padding: 40px 24px; }
  .contact-form .form-grid { grid-template-columns: 1fr; }
}
