:root {
  --navy: #0A1E3D;
  --deep-blue: #0D2B54;
  --ocean: #1565A0;
  --teal: #0097A7;
  --gold: #D4A843;
  --gold-light: #F5D98A;
  --sand: #F5F0E8;
  --white: #FFFFFF;
  --gray-100: #F7F8FA;
  --gray-200: #E8ECF0;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--gray-800); background:var(--white); overflow-x:hidden; }
/* ─── TOP BAR ─── */
.top-bar { position:fixed; top:0; left:0; right:0; z-index:1001; height:36px; background:var(--navy); display:flex; align-items:center; justify-content:flex-end; padding:0 2.5rem; border-bottom:1px solid rgba(255,255,255,.08); }
.top-bar-inner { display:flex; align-items:center; gap:20px; }
.top-bar-link { color:rgba(255,255,255,.55); text-decoration:none; font-size:11.5px; font-weight:500; letter-spacing:.3px; transition:color .3s; cursor:pointer; }
.top-bar-link:hover { color:var(--gold); }
.top-bar-sep { width:1px; height:14px; background:rgba(255,255,255,.15); }
.top-bar-label { color:rgba(255,255,255,.45); font-size:11.5px; font-weight:500; margin-right:4px; }
.lang-flat-btn { color:rgba(255,255,255,.55); text-decoration:none; font-size:11.5px; font-weight:600; letter-spacing:.3px; transition:all .3s; cursor:pointer; padding:2px 8px; border-radius:3px; }
.lang-flat-btn:hover { color:var(--white); }
.lang-flat-btn.active { color:var(--gold); background:rgba(212,168,67,.12); }
/* ─── MAIN NAV ─── */
.nav { position:fixed; top:36px; left:0; right:0; z-index:1000; height:72px; display:flex; align-items:center; justify-content:space-between; background:var(--white); border-bottom:1px solid var(--gray-200); transition:all .4s; padding:0 2.5rem; }
.nav.scrolled { box-shadow:0 2px 20px rgba(0,0,0,.08); }
.nav-logo { display:flex; align-items:center; gap:12px; text-decoration:none; cursor:pointer; flex-shrink:0; }
.nav-logo-img { height:52px; width:auto; transition:opacity .3s; }
.nav-logo-img:hover { opacity:.85; }
.nav-links { display:flex; gap:0; list-style:none; height:100%; align-items:stretch; flex-shrink:1; }
.nav-links li { display:flex; align-items:stretch; }
.nav-links a { display:flex; align-items:center; padding:0 12px; color:var(--gray-600); text-decoration:none; font-size:13px; font-weight:600; transition:all .3s; border-bottom:3px solid transparent; position:relative; white-space:nowrap; }
.nav-links a:hover { color:var(--navy); }
.nav-links a.active { color:var(--navy); border-bottom-color:var(--teal); }
.nav-links a.nav-cta { background:var(--gold); color:var(--navy)!important; padding:8px 16px; border-radius:6px; font-weight:700; font-size:11px; letter-spacing:.8px; text-transform:uppercase; margin-left:8px; align-self:center; border-bottom:none; }
.nav-links a.nav-cta:hover { background:var(--gold-light); }
.nav-search { display:flex; align-items:center; border:1.5px solid var(--gray-200); border-radius:6px; overflow:hidden; margin-left:8px; transition:border-color .3s; flex-shrink:0; }
.nav-search:focus-within { border-color:var(--teal); }
.nav-search input { border:none; padding:7px 10px; font-family:inherit; font-size:12px; color:var(--gray-800); width:110px; outline:none; background:transparent; }
.nav-search input::placeholder { color:var(--gray-400); }
.nav-search button { background:var(--teal); border:none; padding:7px 9px; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.nav-search button svg { width:14px; height:14px; color:white; }
.nav-hamburger { display:none; background:none; border:none; cursor:pointer; padding:8px; }
.nav-hamburger span { display:block; width:24px; height:2.5px; background:var(--navy); margin:5px 0; transition:all .3s; border-radius:2px; }
/* Slightly smaller links on mid screens */
@media(max-width:1280px) {
  .nav-links a { padding:0 9px; font-size:12px; }
  .nav-links a.nav-cta { padding:7px 12px; font-size:10.5px; }
  .nav-search input { width:90px; }
}
/* ─── MOBILE NAV (only below 768px) ─── */
@media(max-width:768px) {
  .nav-links { display:none; position:fixed; top:108px; left:0; right:0; bottom:0; background:var(--white); flex-direction:column; align-items:stretch; gap:0; padding:8px 0; overflow-y:auto; box-shadow:0 16px 48px rgba(0,0,0,.1); z-index:999; }
  .nav-links.open { display:flex; }
  .nav-links li { display:block; }
  .nav-links a { padding:16px 2rem; border-bottom:1px solid var(--gray-200)!important; font-size:15px; color:var(--gray-800); }
  .nav-links a.active { color:var(--teal); background:var(--gray-100); }
  .nav-links a.nav-cta { margin:12px 2rem; text-align:center; justify-content:center; }
  .nav-hamburger { display:block; }
  .nav-search { display:none; }
  .nav { padding:0 1.5rem; }
  .top-bar { padding:0 1.5rem; }
}
/* ─── PAGE TRANSITIONS ─── */
.page { display:none; min-height:100vh; padding-top:108px; animation:pageFade .5s ease-out; }
.page.active { display:block; }
@keyframes pageFade { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
/* ─── HERO (HOME) ─── */
.hero { display:flex; flex-direction:column; background:var(--navy); }
.hero-top { position:relative; min-height:calc(100vh - 108px); display:flex; flex-direction:column; overflow:hidden; }
.hero-bg { position:absolute; inset:0; background:linear-gradient(to bottom,rgba(10,30,61,.55) 0%,rgba(10,30,61,.45) 60%,rgba(10,30,61,.75) 100%); z-index:1; }
video.hero-bg-img, .hero-bg-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:0; transform:scale(1); }
.hero-pattern { display:none; }
.hero-grid-lines { display:none; }
.hero-content { position:relative; z-index:2; max-width:860px; padding:0 3rem; animation:heroFade 1.2s ease-out; text-align:center; margin:0 auto; flex:1; display:flex; flex-direction:column; justify-content:center; align-items:center; }
@keyframes heroFade { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
.hero-badge-row { background:var(--navy); display:flex; justify-content:center; align-items:center; padding:18px 2rem; border-bottom:1px solid rgba(255,255,255,.08); }
.hero-badge { display:inline-flex; align-items:center; justify-content:center; gap:10px; background:linear-gradient(135deg,rgba(212,168,67,.12) 0%,rgba(212,168,67,.25) 50%,rgba(212,168,67,.12) 100%); background-size:200% 200%; animation:badgeShimmer 3s ease infinite; border:1px solid rgba(212,168,67,.4); padding:12px 28px; border-radius:50px; color:var(--gold); font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; box-shadow:0 0 20px rgba(212,168,67,.15),inset 0 0 20px rgba(212,168,67,.05); position:relative; overflow:hidden; }
.hero-badge::before { content:''; position:absolute; top:0; left:-100%; width:60%; height:100%; background:linear-gradient(90deg,transparent,rgba(212,168,67,.2),transparent); animation:badgeSweep 4s ease-in-out infinite; }
.hero-badge svg { flex-shrink:0; }
@keyframes badgeShimmer { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }
@keyframes badgeSweep { 0% { left:-100%; } 100% { left:200%; } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2.6rem,5vw,4rem); font-weight:700; color:var(--white); line-height:1.12; margin-bottom:24px; }
.hero h1 em { font-style:normal; color:var(--gold); }
.hero p { font-size:19px; color:rgba(255,255,255,.7); line-height:1.7; margin:0 auto 40px; max-width:750px; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.hero-buttons-below { display:flex; gap:16px; flex-wrap:wrap; justify-content:center; padding:28px 2rem; background:var(--navy); position:relative; z-index:2; }
.btn-primary { display:inline-flex; align-items:center; gap:10px; background:var(--gold); color:var(--navy); padding:16px 32px; border-radius:8px; text-decoration:none; font-weight:700; font-size:14px; letter-spacing:.5px; transition:all .3s; cursor:pointer; border:none; font-family:inherit; }
.btn-primary:hover { background:var(--gold-light); transform:translateY(-2px); box-shadow:0 8px 24px rgba(212,168,67,.3); }
.btn-secondary { display:inline-flex; align-items:center; gap:10px; background:transparent; color:var(--white); padding:16px 32px; border-radius:8px; text-decoration:none; font-weight:600; font-size:14px; border:1.5px solid rgba(255,255,255,.25); transition:all .3s; cursor:pointer; font-family:inherit; }
.btn-secondary:hover { border-color:var(--gold); color:var(--gold); }
.hero-stats { display:grid !important; grid-template-columns:repeat(5,1fr); background:rgba(10,30,61,.95); border-top:2px solid rgba(212,168,67,.3); border-bottom:2px solid rgba(212,168,67,.3); flex-shrink:0; position:relative; z-index:3; min-height:90px; }
.hero-stat { padding:28px 24px; border-right:1px solid rgba(255,255,255,.1); text-align:center; }
.hero-stat:last-child { border-right:none; }
.hero-stat-number { font-family:'Playfair Display',serif; font-size:1.8rem; font-weight:700; color:var(--gold) !important; margin-bottom:4px; opacity:1 !important; visibility:visible !important; }
.hero-stat-label { font-size:11px; color:rgba(255,255,255,.8) !important; text-transform:uppercase; letter-spacing:1px; font-weight:500; opacity:1 !important; visibility:visible !important; }
@media(max-width:768px) { .hero-stats { grid-template-columns:repeat(2,1fr); } .hero-content { padding:0 1.5rem; } }
/* ─── PAGE HERO (sub-pages) ─── */
.page-hero { background:var(--navy); padding:40px 0 32px; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle at 80% 20%,rgba(0,151,167,.12) 0%,transparent 50%),radial-gradient(circle at 20% 80%,rgba(212,168,67,.08) 0%,transparent 50%); }
.page-hero .container { position:relative; z-index:1; }
.page-hero-tag { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.page-hero-tag::before { content:''; width:24px; height:2px; background:var(--gold); }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3rem); font-weight:700; color:var(--white); line-height:1.15; margin-bottom:14px; }
.page-hero p { font-size:16px; color:rgba(255,255,255,.6); line-height:1.7; max-width:640px; }
/* ─── SHARED ─── */
.container { max-width:1200px; margin:0 auto; padding:0 2.5rem; }
@media(max-width:768px) { .container { padding:0 1.5rem; } }
section.content-section { padding:48px 0; }
section.content-section.alt { background:var(--gray-100); }
section.content-section.dark { background:var(--navy); color:white; padding:40px 0; }
.section-tag { display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--teal); margin-bottom:14px; }
.section-tag::before { content:''; width:24px; height:2px; background:var(--teal); }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(1.8rem,3vw,2.4rem); font-weight:700; color:var(--navy); line-height:1.2; margin-bottom:16px; }
.section-subtitle { font-size:15px; color:var(--gray-600); line-height:1.7; max-width:620px; margin-bottom:8px; }
/* ─── ABOUT ─── */
.about-text p { font-size:15.5px; color:var(--gray-600); line-height:1.8; margin-bottom:20px; }
.about-highlight { background:var(--gray-100); padding:24px 28px; border-radius:12px; border-left:4px solid var(--gold); margin-top:20px; }
.about-highlight p { font-size:14.5px; color:var(--gray-800); font-weight:500; line-height:1.6; margin:0; }
/* Partnership */
.partnership-header { text-align:center; margin-bottom:40px; margin-top:48px; }
.partnership-tagline { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.partnership-intro { font-size:15px; color:var(--gray-600); line-height:1.7; max-width:680px; margin:0 auto; }
.partners-row { display:flex; align-items:stretch; justify-content:center; gap:24px; }
.partner-card { flex:1; max-width:320px; background:white; border:1px solid var(--gray-200); border-radius:20px; padding:32px 28px 28px; text-align:center; transition:all .4s cubic-bezier(.16,1,.3,1); }
.partner-card:hover { transform:translateY(-8px); box-shadow:0 24px 64px rgba(10,30,61,.1); border-color:var(--gold); }
.partner-logo-wrap { height:64px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.partner-logo { max-height:60px; max-width:160px; width:auto; object-fit:contain; }
.partner-pct-ring { width:80px; height:80px; margin:0 auto 16px; position:relative; }
.partner-pct-ring svg { width:100%; height:100%; transform:rotate(-90deg); }
.ring-bg { fill:none; stroke:var(--gray-200); stroke-width:6; }
.ring-fill { fill:none; stroke:var(--gold); stroke-width:6; stroke-linecap:round; }
.partner-agl:hover .ring-fill { stroke:#0D2B54; }
.partner-ttc:hover .ring-fill { stroke:#0058A0; }
.partner-sam:hover .ring-fill { stroke:#CC0000; }
.pct-text { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-family:'Playfair Display',serif; font-weight:700; font-size:18px; color:var(--navy); }
.partner-card h4 { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:4px; }
.partner-role { font-size:12px; font-weight:600; color:var(--teal); text-transform:uppercase; letter-spacing:1px; margin-bottom:12px; }
.partner-card p { font-size:13px; color:var(--gray-600); line-height:1.65; margin:0; }
.partner-connector { display:flex; flex-direction:column; align-items:center; justify-content:center; width:48px; min-width:48px; padding:24px 0; }
.connector-line { flex:1; width:2px; background:linear-gradient(to bottom,transparent,var(--gold),transparent); min-height:20px; }
.connector-icon { width:36px; height:36px; background:var(--sand); border:2px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--gold); flex-shrink:0; }
.partnership-bottom-bar { margin-top:32px; display:flex; align-items:center; justify-content:center; gap:24px; padding:20px 32px; background:var(--navy); border-radius:14px; }
.pb-item { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:rgba(255,255,255,.85); }
.pb-icon { font-size:18px; }
.pb-divider { width:1px; height:20px; background:rgba(255,255,255,.15); }
@media(max-width:900px) {
  .partners-row { flex-direction:column; align-items:center; gap:16px; }
  .partner-connector { flex-direction:row; width:auto; height:40px; padding:0 24px; min-width:unset; }
  .connector-line { width:auto; height:2px; min-height:unset; min-width:20px; flex:1; background:linear-gradient(to right,transparent,var(--gold),transparent); }
  .partner-card { max-width:100%; }
  .partnership-bottom-bar { flex-wrap:wrap; gap:12px; }
  .pb-divider { display:none; }
}
/* ─── TERMINAL GALLERY ─── */
.terminal-gallery { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:48px; }
.terminal-gallery-item { border-radius:12px; overflow:hidden; box-shadow:0 4px 20px rgba(0,0,0,.08); background:var(--white); border:1px solid var(--gray-200); }
.terminal-gallery-item img { width:100%; height:auto; display:block; }
.terminal-gallery-caption { padding:12px 16px; font-size:13px; font-weight:600; color:var(--gray-600); text-align:center; background:var(--gray-100); }
@media(max-width:768px) { .terminal-gallery { grid-template-columns:1fr; } }
/* ─── TERMINAL VIDEO ─── */
.terminal-video-section { margin-bottom:48px; }
.video-wrapper-native { border-radius:16px; overflow:hidden; box-shadow:0 8px 40px rgba(10,30,61,.12); background:var(--navy); }
.video-wrapper-native video { display:block; width:100%; height:auto; max-height:560px; object-fit:cover; }
.video-caption { display:flex; align-items:center; gap:10px; margin-top:14px; padding:12px 20px; background:var(--gray-100); border-radius:10px; border-left:4px solid var(--teal); }
.video-caption-icon { color:var(--teal); font-size:14px; }
.video-caption span:last-child { font-size:13.5px; color:var(--gray-600); font-weight:500; }
/* ─── GATEWAY BRIDGE ─── */
.gateway-bridge {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
  padding:56px 0;
}
.gateway-bridge h2 {
  font-family:'Playfair Display',serif; font-size:clamp(1.6rem,3vw,2.2rem);
  font-weight:700; color:var(--white); margin-bottom:10px;
}
.gateway-bridge h2 em { font-style:normal; color:var(--gold); }
.gateway-bridge p {
  font-size:16px; color:rgba(255,255,255,.6); max-width:620px; margin:0 auto; line-height:1.7;
}
/* ─── HERO RENDER IMAGE ─── */
.hero-render { display:none; }
@media(max-width:768px) { .hero-render { display:none; } }
/* ─── FEATURE CARDS ─── */
.feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:40px; }
.feature-card { background:var(--white); border:1px solid var(--gray-200); border-radius:14px; padding:24px; transition:all .4s; position:relative; overflow:hidden; display:flex; gap:18px; align-items:flex-start; }
.feature-card::before { content:''; position:absolute; top:0; left:0; bottom:0; width:3px; background:linear-gradient(180deg,var(--teal),var(--ocean)); opacity:0; transition:opacity .4s; }
.feature-card:hover::before { opacity:1; }
.feature-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.07); border-color:transparent; }
.feature-icon { width:48px; height:48px; min-width:48px; background:var(--white); border:1.5px solid var(--gray-200); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--teal); }
.feature-card-text { flex:1; }
.feature-card h3 { font-size:16px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.feature-card p { font-size:13.5px; color:var(--gray-600); line-height:1.65; }
@media(max-width:768px) { .feature-grid { grid-template-columns:1fr; } }
@media(min-width:769px) and (max-width:1024px) { .feature-grid { grid-template-columns:1fr; } }
/* ─── LOCATION ─── */
.loc-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:40px; align-items:start; }
.loc-adv { display:flex; gap:16px; align-items:flex-start; padding:20px 24px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:12px; transition:all .3s; margin-bottom:16px; }
.loc-adv:hover { background:rgba(255,255,255,.07); border-color:var(--gold); }
.loc-adv-icon { min-width:44px; height:44px; background:rgba(212,168,67,.12); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:20px; }
.loc-adv h4 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:4px; }
.loc-adv p { font-size:13.5px; color:rgba(255,255,255,.6); line-height:1.6; }
.location-map { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:24px; }
.map-visual { width:100%; aspect-ratio:16/6; background:linear-gradient(135deg,rgba(13,43,84,.8),rgba(10,30,61,.9)); border-radius:12px; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.java-island { width:85%; height:40px; background:rgba(255,255,255,.12); border-radius:100px 60px 80px 40px; position:relative; }
.port-dot { position:absolute; width:14px; height:14px; border-radius:50%; top:50%; transform:translateY(-50%); }
.port-dot::after { content:attr(data-label); position:absolute; top:-24px; left:50%; transform:translateX(-50%); white-space:nowrap; font-size:10px; font-weight:600; color:rgba(255,255,255,.7); letter-spacing:.5px; }
.port-dot.priok { left:22%; background:rgba(255,255,255,.4); }
.port-dot.patimban { left:30%; background:var(--gold); box-shadow:0 0 20px rgba(212,168,67,.5); animation:pingDot 2s infinite; }
@keyframes pingDot { 0% { box-shadow:0 0 0 0 rgba(212,168,67,.5); } 70% { box-shadow:0 0 0 16px rgba(212,168,67,0); } 100% { box-shadow:0 0 0 0 rgba(212,168,67,0); } }
.port-dot.semarang { left:55%; background:rgba(255,255,255,.4); }
.port-dot.surabaya { left:75%; background:rgba(255,255,255,.4); }
.distance-line { position:absolute; top:50%; height:2px; background:var(--gold); opacity:.5; }
.distance-line.to-priok { left:24%; width:6%; }
.distance-line.to-semarang { left:32%; width:23%; }
.dist-label { position:absolute; top:calc(50% + 20px); font-size:11px; font-weight:700; color:var(--gold); }
.dist-label.priok { left:25%; }
.dist-label.semarang { left:40%; }
.map-legend { display:flex; gap:24px; margin-top:20px; flex-wrap:wrap; }
.legend-item { display:flex; align-items:center; gap:8px; font-size:12px; color:rgba(255,255,255,.5); }
.legend-dot { width:10px; height:10px; border-radius:50%; }
@media(max-width:900px) { .loc-grid { grid-template-columns:1fr; } }
/* ─── LOCATION MAP (light theme) ─── */
.location-map-light { background:var(--gray-100); border:1px solid var(--gray-200); border-radius:14px; padding:24px; }
.map-visual-light { width:100%; aspect-ratio:16/5; background:linear-gradient(135deg,var(--navy),var(--deep-blue)); border-radius:10px; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.map-legend-light { display:flex; gap:20px; margin-top:12px; justify-content:center; }
.legend-item-light { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--gray-600); font-weight:500; }
/* ─── INFRASTRUCTURE MAP IMAGE ─── */
.specs-table-section { margin:40px 0; }
.specs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.specs-card { background:var(--navy); border:1px solid rgba(255,255,255,.15); border-radius:12px; padding:28px 24px; position:relative; overflow:hidden; }
.specs-card::before { content:''; position:absolute; inset:0; background:url('') center/cover no-repeat; opacity:.08; }
.specs-card-title { font-family:'Playfair Display',serif; font-size:1.1rem; font-weight:700; color:var(--white); margin-bottom:20px; }
.specs-list { display:flex; flex-direction:column; gap:0; }
.specs-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.1); }
.specs-row:last-child { border-bottom:none; }
.specs-label { font-size:14px; color:rgba(255,255,255,.8); font-weight:400; }
.specs-value { font-size:14px; color:var(--white); font-weight:700; text-align:right; }
@media(max-width:900px) { .specs-grid { grid-template-columns:1fr; } }
.infra-map-img { width:100%; height:auto; display:block; }
.infra-map-caption { padding:12px 16px; font-size:13px; font-weight:600; color:var(--gray-600); text-align:center; background:var(--gray-100); }
/* ─── TIMELINE ─── */
.timeline { display:flex; gap:0; margin-top:40px; position:relative; }
.timeline::before { content:''; position:absolute; top:36px; left:0; right:0; height:3px; background:var(--gray-200); }
.timeline-item { flex:1; position:relative; padding-top:56px; text-align:center; }
.timeline-dot { position:absolute; top:24px; left:50%; transform:translateX(-50%); width:24px; height:24px; border-radius:50%; background:var(--white); border:3px solid var(--teal); z-index:1; }
.timeline-item.active .timeline-dot { background:var(--gold); border-color:var(--gold); box-shadow:0 0 16px rgba(212,168,67,.4); }
.timeline-item.future .timeline-dot { border-color:var(--gray-400); background:var(--gray-200); }
.timeline-date { font-size:13px; font-weight:700; color:var(--teal); margin-bottom:8px; text-transform:uppercase; letter-spacing:.5px; }
.timeline-item.active .timeline-date { color:var(--gold); }
.timeline-title { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:6px; }
.timeline-desc { font-size:12.5px; color:var(--gray-600); line-height:1.6; padding:0 12px; }
@media(max-width:768px) { .timeline { flex-direction:column; gap:24px; } .timeline::before { display:none; } .timeline-item { padding-top:0; padding-left:48px; text-align:left; } .timeline-dot { left:0; top:4px; } }
/* ─── SERVICES ─── */
.services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; margin-top:40px; }
.service-card { padding:36px 32px; background:var(--white); border:1px solid var(--gray-200); border-radius:16px; display:flex; gap:20px; align-items:flex-start; transition:all .4s; }
.service-card:hover { transform:translateY(-4px); box-shadow:0 16px 48px rgba(0,0,0,.07); border-color:transparent; }
.service-num { min-width:44px; height:44px; background:var(--navy); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--gold); font-family:'Playfair Display',serif; font-weight:700; font-size:16px; }
.service-card h3 { font-size:17px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.service-card p { font-size:14px; color:var(--gray-600); line-height:1.7; }
@media(max-width:768px) { .services-grid { grid-template-columns:1fr; } }
/* ─── SERVICE SECTION BANNERS ─── */
.service-section-banner { position:relative; width:100%; height:320px; border-radius:20px; overflow:hidden; margin-bottom:36px; margin-top:12px; }
.service-section-banner img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 6s ease; }
.service-section-banner:hover img { transform:scale(1.05); }
.service-section-banner .banner-overlay { position:absolute; inset:0; background:linear-gradient(135deg, rgba(10,25,47,.75) 0%, rgba(10,25,47,.3) 50%, transparent 100%); z-index:1; }
.service-section-banner .banner-content { position:absolute; bottom:32px; left:36px; z-index:2; max-width:50%; }
.service-section-banner .banner-label { display:inline-block; background:var(--gold); color:var(--navy); font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:6px 16px; border-radius:20px; margin-bottom:12px; }
.service-section-banner .banner-title { font-family:'Playfair Display',serif; font-size:26px; font-weight:700; color:white; line-height:1.3; }
.service-section-banner .banner-desc { font-size:14px; color:rgba(255,255,255,.85); margin-top:8px; line-height:1.6; }
.service-dual-banner { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:36px; margin-top:12px; }
.service-dual-banner .service-section-banner { height:260px; margin:0; }
.service-dual-banner .service-section-banner .banner-content { max-width:85%; }
@media(max-width:768px) {
  .service-section-banner { height:220px; border-radius:14px; }
  .service-section-banner .banner-content { max-width:80%; bottom:20px; left:20px; }
  .service-section-banner .banner-title { font-size:20px; }
  .service-dual-banner { grid-template-columns:1fr; }
  .service-dual-banner .service-section-banner { height:200px; }
}
/* ─── SUSTAINABILITY ─── */
.sustain-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:20px; margin-top:40px; }
.sustain-card { background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.1); border-radius:14px; padding:28px 24px; text-align:center; transition:all .3s; }
.sustain-card:hover { background:rgba(255,255,255,.1); transform:translateY(-4px); }
.sustain-icon { font-size:32px; margin-bottom:16px; }
.sustain-card h4 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:8px; }
.sustain-card p { font-size:13px; color:rgba(255,255,255,.55); line-height:1.6; }
@media(max-width:900px) { .sustain-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:600px) { .sustain-grid { grid-template-columns:1fr; } }
/* ─── NEWS ─── */
.news-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
.news-card { background:var(--white); border-radius:16px; overflow:hidden; border:1px solid var(--gray-200); transition:all .4s; }
.news-card:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(0,0,0,.08); }
.news-img { height:180px; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.news-img-icon { font-size:48px; opacity:.3; }
.news-body { padding:24px; }
.news-date { font-size:12px; font-weight:600; color:var(--teal); text-transform:uppercase; letter-spacing:.5px; margin-bottom:8px; }
.news-card h3 { font-size:16px; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:10px; }
.news-card p { font-size:13.5px; color:var(--gray-600); line-height:1.6; }
.news-link { display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:13px; font-weight:700; color:var(--ocean); text-decoration:none; transition:color .3s; }
.news-link:hover { color:var(--teal); }
@media(max-width:768px) { .news-grid { grid-template-columns:1fr; } }
/* ─── MEDIA FEED ─── */
.media-feed { display:flex; flex-direction:column; gap:0; margin-top:24px; border-radius:16px; overflow:hidden; border:1px solid var(--gray-200); }
.media-item { display:flex; align-items:center; gap:16px; padding:20px 28px; background:var(--white); text-decoration:none; transition:all .3s; border-bottom:1px solid var(--gray-200); }
.media-item:last-child { border-bottom:none; }
.media-item:hover { background:var(--navy); }
.media-item:hover .media-source { color:var(--gold); }
.media-item:hover .media-title { color:white; }
.media-item:hover .media-arrow { color:var(--gold); transform:translateX(4px); }
.media-source { min-width:160px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:var(--teal); }
.media-title { flex:1; font-size:15px; font-weight:600; color:var(--navy); line-height:1.5; }
.media-arrow { font-size:20px; color:var(--gray-400); transition:all .3s; font-weight:700; }
@media(max-width:768px) { .media-source { min-width:auto; width:100%; } .media-item { flex-direction:column; align-items:flex-start; gap:6px; } .media-arrow { display:none; } }
/* ─── CONTACT ─── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:40px; }
.contact-block { padding:24px; background:var(--gray-100); border-radius:12px; border:1px solid var(--gray-200); margin-bottom:16px; }
.contact-block h4 { font-size:14px; font-weight:700; color:var(--navy); margin-bottom:8px; display:flex; align-items:center; gap:8px; }
.contact-block p, .contact-block a { font-size:14px; color:var(--gray-600); line-height:1.7; text-decoration:none; }
.contact-block a:hover { color:var(--teal); }
.contact-form { display:flex; flex-direction:column; gap:16px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label { font-size:12px; font-weight:600; color:var(--gray-600); text-transform:uppercase; letter-spacing:.5px; }
.form-group input, .form-group textarea, .form-group select { padding:14px 16px; border:1.5px solid var(--gray-200); border-radius:10px; font-family:'DM Sans',sans-serif; font-size:14px; color:var(--gray-800); transition:border-color .3s; background:var(--white); width:100%; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--teal); }
.form-group select { appearance:none; -webkit-appearance:none; -moz-appearance:none; background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat:no-repeat; background-position:right 12px center; background-size:18px; padding-right:40px; }
@media(max-width:768px) { .form-group select { font-size:16px; } }
.form-group textarea { resize:vertical; min-height:120px; }
.btn-submit { background:var(--navy); color:var(--white); padding:16px 32px; border:none; border-radius:10px; font-family:'DM Sans',sans-serif; font-size:14px; font-weight:700; cursor:pointer; transition:all .3s; letter-spacing:.5px; }
.btn-submit:hover { background:var(--deep-blue); transform:translateY(-2px); box-shadow:0 8px 24px rgba(10,30,61,.2); }
@media(max-width:768px) { .contact-grid { grid-template-columns:1fr; } .form-row { grid-template-columns:1fr; } }
/* ─── FOOTER ─── */
.footer { background:var(--navy); color:rgba(255,255,255,.5); padding:56px 0 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:40px; margin-bottom:40px; }
.footer-logo-img { height:40px; width:auto; filter:brightness(0) invert(1); opacity:.85; margin-bottom:12px; }
.footer-brand p { font-size:13px; line-height:1.7; color:rgba(255,255,255,.4); }
.footer h4 { color:var(--white); font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:18px; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { color:rgba(255,255,255,.4); text-decoration:none; font-size:13px; transition:color .3s; cursor:pointer; }
.footer-links a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:20px; display:flex; justify-content:space-between; align-items:center; font-size:12px; }
@media(max-width:768px) { .footer-grid { grid-template-columns:1fr 1fr; } }
@media(max-width:480px) { .footer-grid { grid-template-columns:1fr; } }
/* ─── SCROLL REVEAL ─── */
.reveal { opacity:0; transform:translateY(24px); transition:all .6s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
/* ─── BACK TO TOP ─── */
.back-to-top { position:fixed; bottom:32px; right:32px; width:48px; height:48px; background:var(--navy); color:var(--gold); border:2px solid var(--gold); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:20px; cursor:pointer; z-index:999; opacity:0; transform:translateY(20px); transition:all .3s; pointer-events:none; }
.back-to-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover { background:var(--gold); color:var(--navy); }
/* ─── GRAIN TEXTURE OVERLAY ─── */
body::after { content:''; position:fixed; inset:0; pointer-events:none; z-index:9999; opacity:.025; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); }
/* ─── GLASSMORPHISM NAV ─── */
.nav.scrolled { background:rgba(255,255,255,.88); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px); border-bottom:1px solid rgba(0,0,0,.06); }
/* ─── SECTION DIVIDERS ─── */
.section-divider { width:100%; height:1px; background:linear-gradient(90deg,transparent,var(--gray-200) 20%,var(--gold) 50%,var(--gray-200) 80%,transparent); margin:0; opacity:.6; }
.section-divider.dark { background:linear-gradient(90deg,transparent,rgba(255,255,255,.06) 20%,var(--gold) 50%,rgba(255,255,255,.06) 80%,transparent); }
/* ─── INCREASED SPACING ─── */
section.content-section { padding:64px 0; }
section.content-section.dark { padding:56px 0; }
.gateway-bridge { padding:72px 0; }
/* ─── SMOOTH PAGE TRANSITIONS ─── */
@keyframes pageFade { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.page.active { animation:pageFade .6s cubic-bezier(.16,1,.3,1); }
/* ─── BUTTON SHIMMER ─── */
.btn-primary { position:relative; overflow:hidden; }
.btn-primary::before { content:''; position:absolute; top:0; left:-100%; width:100%; height:100%; background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent); transition:none; }
.btn-primary:hover::before { left:100%; transition:left .6s ease; }
/* ─── NAV ACTIVE INDICATOR ─── */
.nav-links a { border-bottom:3px solid transparent; transition:all .3s cubic-bezier(.16,1,.3,1); }
.nav-links a.active { border-bottom-color:var(--teal); }
/* ─── HAMBURGER ANIMATION ─── */
.nav-hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity:0; transform:translateX(-10px); }
.nav-hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
/* ─── GALLERY HOVER ZOOM ─── */
.terminal-gallery-item img { transition:transform .6s cubic-bezier(.16,1,.3,1); }
.terminal-gallery-item:hover img { transform:scale(1.05); }
.terminal-gallery-item { overflow:hidden; }
/* ─── PARTNER GRADIENT BORDER HOVER ─── */
.partner-card { position:relative; transition:all .4s cubic-bezier(.16,1,.3,1); }
.partner-card::before { content:''; position:absolute; inset:-1px; border-radius:21px; padding:2px; background:linear-gradient(135deg,var(--gold),var(--teal),var(--ocean)); -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0); -webkit-mask-composite:xor; mask-composite:exclude; opacity:0; transition:opacity .4s; pointer-events:none; z-index:1; }
.partner-card:hover::before { opacity:1; }
.partner-card:hover { border-color:transparent; }
/* ─── HERO SCROLL INDICATOR ─── */
.hero-scroll-indicator { position:absolute; bottom:24px; left:50%; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; animation:heroScrollBounce 2s ease-in-out infinite; }
.hero-scroll-indicator span { font-size:11px; font-weight:600; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.5); }
.hero-scroll-arrow { width:24px; height:24px; border-right:2px solid rgba(255,255,255,.5); border-bottom:2px solid rgba(255,255,255,.5); transform:rotate(45deg); }
@keyframes heroScrollBounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(10px); } }
@media(max-width:768px) { .hero-scroll-indicator { display:none; } }
/* ─── HERO PARALLAX ─── */
.hero-bg-img { transition:transform .1s linear; }
/* ─── STAGGERED STATS ─── */
.hero-stat { opacity:1; transform:none; }
/* ─── NEWS CARD IMPROVEMENTS ─── */
.news-img { background-size:200% 200%; animation:newsGradient 6s ease infinite; }
@keyframes newsGradient { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
.news-img-icon { font-size:56px; opacity:.15; transition:all .4s; }
.news-card:hover .news-img-icon { opacity:.3; transform:scale(1.1); }
/* ─── FEATURE CARD ICON ANIMATION ─── */
.feature-icon { transition:all .4s cubic-bezier(.16,1,.3,1); }
.feature-card:hover .feature-icon { background:var(--navy); border-color:var(--navy); color:var(--gold); transform:scale(1.08); }
/* ─── SUSTAINABILITY CARD GLOW ─── */
.sustain-card:hover { box-shadow:0 8px 32px rgba(212,168,67,.15); border-color:rgba(212,168,67,.3); }
/* ─── SPECS CARD HOVER ─── */
.specs-card { transition:all .4s; }
.specs-card:hover { transform:translateY(-4px); box-shadow:0 12px 40px rgba(0,0,0,.3); border-color:var(--gold); }
/* ─── CONTACT FORM FOCUS GLOW ─── */
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(0,151,167,.1); }
/* ─── FOOTER LINK ANIMATION ─── */
.footer-links a { position:relative; display:inline-block; }
.footer-links a::after { content:''; position:absolute; bottom:-2px; left:0; width:0; height:1px; background:var(--gold); transition:width .3s; }
.footer-links a:hover::after { width:100%; }
/* ─── SERVICE CARD NUMBER HOVER ─── */
.service-card:hover .service-num { background:var(--gold); color:var(--navy); transition:all .3s; }
/* ─── TIMELINE GLOW ─── */
.timeline-item.active .timeline-dot { animation:timelinePulse 2s ease-in-out infinite; }
@keyframes timelinePulse { 0%,100% { box-shadow:0 0 16px rgba(212,168,67,.4); } 50% { box-shadow:0 0 28px rgba(212,168,67,.7); } }
/* ─── PAGE HERO GRADIENT ANIMATION ─── */
.page-hero { background:linear-gradient(135deg,var(--navy) 0%,var(--deep-blue) 50%,var(--navy) 100%); background-size:200% 200%; animation:heroGradient 8s ease infinite; }
@keyframes heroGradient { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
/* ─── TARIFF CARDS ─── */
.tariff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px; }
.tariff-card { background:var(--white); border:1px solid var(--gray-200); border-radius:16px; overflow:hidden; transition:all .4s; }
.tariff-card:hover { transform:translateY(-6px); box-shadow:0 20px 60px rgba(0,0,0,.08); }
.tariff-card-header { padding:28px 24px; text-align:center; }
.tariff-card-header.basic { background:linear-gradient(135deg,var(--navy),var(--deep-blue)); }
.tariff-card-header.standard { background:linear-gradient(135deg,var(--ocean),var(--teal)); }
.tariff-card-header.premium { background:linear-gradient(135deg,#8B6914,var(--gold)); }
.tariff-card-header h3 { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; color:var(--white); margin-bottom:4px; }
.tariff-card-header .tariff-tag { font-size:11px; font-weight:600; letter-spacing:1px; text-transform:uppercase; color:rgba(255,255,255,.7); }
.tariff-card-body { padding:28px 24px; }
.tariff-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid var(--gray-200); font-size:14px; }
.tariff-row:last-child { border-bottom:none; }
.tariff-label { color:var(--gray-600); }
.tariff-value { font-weight:700; color:var(--navy); }
.tariff-note { margin-top:24px; padding:16px 20px; background:var(--gray-100); border-radius:10px; border-left:4px solid var(--gold); font-size:13px; color:var(--gray-600); line-height:1.6; }
.tariff-cta { display:flex; justify-content:center; margin-top:40px; }
@media(max-width:900px) { .tariff-grid { grid-template-columns:1fr; } }
@media(max-width:600px) { #page-tariffs .tariff-card { min-width:100%; } }

/* ── Privacy Policy Page ── */
.privacy-section { margin-bottom:48px; }
.privacy-heading { font-family:'Playfair Display',serif; font-size:22px; font-weight:700; color:var(--navy); margin-bottom:16px; padding-bottom:10px; border-bottom:2px solid var(--teal); }
.privacy-subheading { font-size:15px; font-weight:700; color:var(--navy); margin:24px 0 10px; }
.privacy-table { width:100%; border-collapse:collapse; font-size:14px; margin-bottom:16px; }
.privacy-table th { background:var(--navy); color:#fff; padding:10px 14px; text-align:left; font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.5px; }
.privacy-table td { padding:10px 14px; border-bottom:1px solid #e2e8f0; vertical-align:top; line-height:1.6; }
.privacy-table tr:last-child td { border-bottom:none; }
.privacy-table tr:nth-child(even) td { background:#f8fafc; }
.privacy-list { padding-left:20px; margin:12px 0 16px; }
.privacy-list li { margin-bottom:8px; font-size:15px; line-height:1.7; }
.privacy-info-box { background:#f8fafc; border:1px solid #e2e8f0; border-radius:10px; padding:20px 24px; margin:20px 0; }
.privacy-info-row { display:flex; gap:16px; padding:8px 0; border-bottom:1px solid #e2e8f0; font-size:14px; }
.privacy-info-row:last-child { border-bottom:none; }
.privacy-info-label { font-weight:700; color:var(--navy); min-width:140px; flex-shrink:0; }
.privacy-dual-col { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin:20px 0; }
.privacy-legal-card { background:#f8fafc; border:1px solid #e2e8f0; border-radius:10px; padding:20px 24px; }
.privacy-legal-flag { font-size:13px; font-weight:700; color:var(--teal); text-transform:uppercase; letter-spacing:.5px; margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid #e2e8f0; }
.privacy-legal-card ul { padding-left:18px; margin:0; }
.privacy-legal-card li { font-size:13px; line-height:1.7; margin-bottom:8px; }
.privacy-toc a:hover { color:var(--teal) !important; }
@media(max-width:640px) { .privacy-dual-col { grid-template-columns:1fr; } .privacy-info-label { min-width:100px; } }
