/* ============================================================
   Alpha & Omega Publications - styles.css
   Author: Generated by Antigravity AI
   ============================================================ */

/*  RESET  */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/*  CSS CUSTOM PROPERTIES */
:root {
  /* $10M Premium Alpha & Omega Design System - Brand Aligned */
  --navy:         #151b29;
  --navy-mid:     #1c2436;
  --navy-light:   #2a364f;
  --navy-card:    #222b40;
  --gold:         #f7c325;
  --gold-light:   #ffdb66;
  --gold-pale:    #ffefb8;
  --gold-dark:    #d99f0e;
  --gold-glow:    rgba(247, 195, 37, 0.2);
  --accent:       #4c628e;
  --accent-light: #6e8abf;
  --accent-dim:   rgba(76, 98, 142, 0.15);
  --blue:         #384869;
  --blue-light:   #92a8d1;
  --white:        #ffffff;
  --off-white:    #f0f4f8;
  --text-light:   #e2e8f0;
  --text-muted:   #94a3b8;
  --border:       rgba(247, 195, 37, 0.1);
  --border-gold:  rgba(247, 195, 37, 0.3);
  --glass:        rgba(34, 43, 64, 0.7);
  --glass-light:  rgba(42, 54, 79, 0.65);
  --shadow-deep:  0 32px 100px rgba(11, 15, 23, 0.95);
  --shadow-card:  0 8px 40px rgba(11, 15, 23, 0.6);
  --shadow-glow:  0 0 60px rgba(247, 195, 37, 0.12);
  --shadow-accent:0 0 40px rgba(76, 98, 142, 0.25);
  --shadow:       0 16px 40px rgba(11, 15, 23, 0.55);
  --radius-xs:    6px;
  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --transition:   all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
}


/*  BASE  */
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.split-panel:focus-visible,
.citations-open-book:focus-visible,
.order-cat-header:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/*  SCROLLBAR  */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/*  UTILITY  */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text  { color: var(--gold); }
.section    { padding: 100px 0; position: relative; }
.why-cta-wrap { text-align: center; margin-top: 3rem; }
.home-cta-section { padding: 60px 0; }
.split-cta { pointer-events: none; }

/* Canvas sits fixed behind everything */
#parallax-canvas, #bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* All page elements sit naturally above canvas, fully transparent by default */
body, section, .section, header, footer,
.about, .services-section, .portfolio, .contact, .order-platform,
.marquee-strip, .cta-section, .footer-top, .footer-bottom {
  background: transparent !important;
}

/* Cards and boxes: fully transparent, NO border, NO box-shadow */
.service-card, .portfolio-card, .about-content, .contact-card,
.contact-info, .mv-card, .why-card, .order-step,
.order-platform-inner, .citations-open-book {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Form fields: subtle so they remain usable */
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: #fff !important;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: rgba(255,255,255,0.10) !important;
  border-color: var(--gold) !important;
  outline: none;
}

/* Text remains crisp on transparent backgrounds */
p, li, span { color: rgba(255,255,255,0.88) !important; }
h1, h2, h3, h4, h5, h6, strong { text-shadow: 0 2px 10px rgba(0,0,0,0.7); }

/* Navbar: subtle dark tint only when scrolled */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(2, 6, 18, 0.55) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* All sections stack above canvas */
header, section, .marquee-strip, footer {
  position: relative;
  z-index: 1;
}


/* Section Headers */
.section-header { text-align: center; margin-bottom: 72px; }
.section-label  {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-label::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  color: var(--white); line-height: 1.15; margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.section-desc  { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-line  {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 18px auto;
  border-radius: 2px;
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); letter-spacing: 0.04em;
  position: relative; overflow: hidden; z-index: 1;
}
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg,
    transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-160%) skewX(-18deg);
  transition: transform 0.55s ease;
}
.btn:hover::after { transform: translateX(160%) skewX(-18deg); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 45%, var(--gold-dark) 100%);
  color: #0a0808;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(247,195,37,0.35), 0 1px 0 rgba(255,255,255,0.4) inset;
  letter-spacing: 0.05em;
}
.btn-gold:hover {
  box-shadow: 0 8px 40px rgba(247,195,37,0.55), 0 1px 0 rgba(255,255,255,0.5) inset;
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.08);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.btn-outline:hover {
  border-color: var(--accent-light);
  background: var(--accent-dim);
  box-shadow: var(--shadow-accent);
  transform: translateY(-3px);
}
.btn-full { width: 100%; justify-content: center; }

/* Scroll-reveal */
[data-aos] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].visible {
  opacity: 1; transform: translateY(0);
}

/*  PRELOADER  */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner  { 
  text-align: center; 
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preloader-img {
  width: 140px;
  max-width: 80vw;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  animation: preloadPulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  background: white;
  padding: 10px;
}
@keyframes preloadPulse {
  0%,100% { opacity:1; transform:translateY(0) scale(1); filter: drop-shadow(0 0 10px rgba(254, 198, 37, 0.2)); }
  50%      { opacity:0.8; transform:translateY(-8px) scale(0.98); filter: drop-shadow(0 0 25px rgba(254, 198, 37, 0.6)); }
}
.preloader-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.1);
  border-top-color: var(--gold);
  border-right-color: var(--gold-light);
  animation: preloadSpin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes preloadSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*  NAVBAR  */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  transition: var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(21, 27, 41, 0.82);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 20px 60px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration:none;
}
.logo-symbol {
  font-family: var(--font-head); font-size: 1.8rem;
  color: var(--gold); line-height: 1;
  text-shadow: 0 0 20px rgba(255, 223, 123,0.4);
}
.logo-text { display:flex; flex-direction:column; line-height:1.1; }
.logo-main { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing:0.02em; }
.logo-sub  { font-size: 0.68rem; font-weight: 500; color: var(--gold); letter-spacing:0.15em; text-transform:uppercase; }

/*  Real Company Logo Image  */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  background: #ffffff;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: block;
  transition: var(--transition);
}
.logo-img:hover {
  box-shadow: 0 4px 20px rgba(80,140,255,0.35);
  transform: scale(1.03);
}
.footer-logo-img {
  height: 46px;
}

.nav-links {
  display: flex; align-items: center; gap: 8px;
}
.nav-link {
  padding: 8px 14px; font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.8); border-radius: 6px;
  transition: var(--transition); position:relative;
}
.nav-link::after {
  content:''; position:absolute; bottom:2px; left:50%; transform:translateX(-50%);
  width:0; height:2px; background:var(--gold); border-radius:2px;
  transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }
.nav-cta {
  margin-left: 16px; padding: 11px 26px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0808; font-weight: 700; font-size: 0.88rem;
  border-radius: 50px; letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(247,195,37,0.35);
  transition: var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(247,195,37,0.5);
  filter: brightness(1.06);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; padding: 8px;
  border-radius: 8px; border: 1px solid var(--border);
  background: var(--glass); backdrop-filter: blur(10px);
  transition: var(--transition);
}
.hamburger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
}
.mobile-overlay.show { display: block; }

/*  HERO  */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 130px 24px 90px;
  background: transparent;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('hero_bg.png');
  background-size: cover; background-position: center;
  transform-origin: center; transition: transform 10s ease-out;
  will-change: transform;
  opacity: 0.18;
  filter: blur(1px);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(76,98,142,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(247,195,37,0.08) 0%, transparent 55%),
    linear-gradient(170deg, rgba(21,27,41,0.82) 0%, rgba(28,36,54,0.7) 50%, rgba(21,27,41,0.92) 100%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,195,37,0.6) 0%, transparent 70%);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.7; }
  50%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(720deg) scale(0.3); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2; max-width: 820px; margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 22px; border-radius: 50px;
  border: 1px solid var(--border-gold);
  background: rgba(247,195,37,0.07);
  backdrop-filter: blur(12px);
  font-size: 0.78rem; font-weight: 600; color: var(--gold);
  margin-bottom: 32px; letter-spacing: 0.08em; text-transform: uppercase;
  animation: fadeInDown 0.8s ease 0.2s both;
  box-shadow: 0 0 24px var(--gold-glow);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.9rem, 7.5vw, 5.6rem);
  font-weight: 800; line-height: 1.08; color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  animation: fadeInUp 0.9s ease 0.4s both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero-title .gold-text {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 18px rgba(247,195,37,0.4));
}
.hero-desc {
  font-size: clamp(1rem, 2.2vw, 1.18rem); color: rgba(232,228,245,0.72);
  max-width: 600px; margin: 0 auto 44px;
  animation: fadeInUp 0.9s ease 0.6s both;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeInUp 0.9s ease 0.8s both;
}
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: rgba(21,27,41,0.5);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px 52px; flex-wrap: wrap;
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(247,195,37,0.06) inset;
  animation: fadeInUp 0.9s ease 1s both;
}
.stat { text-align: center; padding: 0 44px; }
.stat-num { 
  font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; 
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-plus { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.stat p { font-size: 0.85rem; color: var(--text-light); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 70px; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0)); flex-shrink: 0; }
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-arrow {
  width: 24px; height: 24px; border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold); transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity:1; }
  50%      { transform: rotate(45deg) translateY(6px); opacity:0.5; }
}

/* Hero Animations */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(20px);  } to { opacity:1; transform:translateY(0); } }

/*  MARQUEE STRIP  */
.marquee-strip {
  background: linear-gradient(90deg, var(--navy-light), var(--blue), var(--navy-light));
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marqueeSlide 28s linear infinite;
}
.marquee-track span {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.1em;
}
.marquee-track span i { font-size: 1.1rem; color: var(--gold-light); }
.marquee-sep { color: var(--gold); opacity: 0.3; }
@keyframes marqueeSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Accessibility: reduce heavy motion when the user asks for less animation */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; transform: none !important; }
  .hero-scroll-indicator { display: none !important; }
}

/*  ABOUT  */
.about {
  background: rgba(33, 30, 46,0.72);
  backdrop-filter: blur(12px);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--border);
}
.about-image-main img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-main:hover img { transform: scale(1.04); }
.about-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--blue), var(--navy-light));
  color: var(--white); border-radius: var(--radius-md);
  padding: 18px 24px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px rgba(74, 67, 99, 0.4);
  font-size: 0.9rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.about-badge-card i { font-size: 1.8rem; color: var(--gold-light); }
.about-badge-card p { font-size: 0.75rem; opacity:0.8; margin-top:2px; }
.exp-badge {
  position: absolute; top: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%; width: 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(254, 198, 37, 0.4);
}
.exp-num  { font-family: var(--font-head); font-size: 2rem; color: var(--navy); font-weight: 800; line-height:1; text-shadow: 0 1px 1px rgba(255,255,255,0.4); }
.exp-label { font-size: 0.6rem; text-align: center; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height:1.3; }

.about-intro {
  font-size: 1.1rem; color: var(--white); margin-bottom: 16px; line-height: 1.7;
}
.about-text { color: var(--text-muted); margin-bottom: 32px; }
.mv-cards   { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.mv-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.02); 
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); padding: 24px;
  backdrop-filter: blur(16px); transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.mv-card:hover { 
  background: rgba(74, 67, 99, 0.08); 
  border-color: rgba(74, 67, 99, 0.3); 
  box-shadow: var(--shadow-glow);
}
.mv-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink:0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(74, 67, 99, 0.3);
}
.mv-card h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.mv-card p  { color: var(--text-muted); font-size: 0.9rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.feature-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-light); font-size: 0.9rem; font-weight: 500;
}
.feature-item i { color: var(--gold); font-size: 0.85rem; }

/*  SERVICES SPLIT / DIVISION  */
.services-split-container {
  display: flex;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  margin-bottom: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.split-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
}
.services-split-container:hover .split-panel {
  filter: grayscale(80%) brightness(0.6);
  flex: 0.6;
}
.services-split-container .split-panel:hover,
.services-split-container .split-panel.active-split {
  flex: 3;
  filter: grayscale(0%) brightness(1.1);
}
.split-print {
  background-image: linear-gradient(135deg, rgba(12, 38, 66, 0.75), rgba(8, 25, 43, 0.95));
}
.split-books {
  background-image: linear-gradient(135deg, rgba(66, 18, 18, 0.75), rgba(46, 12, 12, 0.95));
}
.split-overlay {
  position: absolute; inset: 0; background: rgba(33, 30, 46, 0.4);
  z-index: 2; transition: opacity 0.8s ease;
}
.split-panel:hover .split-overlay,
.split-panel.active-split .split-overlay { opacity: 0; }

.split-content {
  position: relative; z-index: 3; color: var(--white);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 100%;
}
.split-icon-wrapper i { font-size: 3.5rem; color: var(--gold); margin-bottom: 24px; transition: transform 0.6s ease; }
.split-panel:hover .split-icon-wrapper i, .split-panel.active-split .split-icon-wrapper i { transform: scale(1.1); }
.split-content h2 { font-family: var(--font-head); font-size: 2.8rem; margin-bottom: 0; text-transform: uppercase; letter-spacing: 0.05em; transition: margin 0.6s ease; }
.split-hidden-details {
  max-width: 600px; max-height: 0; opacity: 0; overflow: hidden;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); margin-top: 0;
}
.split-panel.active-split .split-content h2,
.split-panel:hover .split-content h2 {
  margin-bottom: 20px;
}
.split-panel.active-split .split-hidden-details,
.split-panel:hover .split-hidden-details {
  max-height: 400px; opacity: 1; margin-top: 10px;
}
.split-hidden-details p {
  color: #fff; font-size: 1.05rem; line-height: 1.6; opacity: 0.9; margin-bottom: 30px;
}
.split-cta { font-size: 0.95rem; padding: 12px 28px; border-radius: 50px; }

@media (max-width: 768px) {
  .services-split-container { display: flex; flex-direction: column; }
  .services-split-container:hover .split-panel { flex: 1; filter: grayscale(0%) brightness(1); }
  .services-split-container .split-panel:hover, .services-split-container .split-panel.active-split { flex: 1; }
  .split-hidden-details { max-height: max-content; opacity: 1; margin-top: 20px; }
  .split-content h2 { margin-bottom: 20px; }
  .split-panel { min-height: 400px; }
}

@media (max-width: 380px) {
  .service-icon-wrap{ width: 54px; height: 54px; font-size: 1.4rem; }
  .services-split-container { margin-bottom: 40px; border-radius: var(--radius-md); }
  .split-panel      { padding: 40px 16px; height: auto; min-height: 350px; }
  .split-content i  { font-size: 2rem; margin-bottom: 12px; }
  .split-content h2 { font-size: 1.8rem; }
  .split-content p  { display: none; }

  /* Why Us */
  .why-grid     { grid-template-columns: 1fr; }
  .why-card     { padding: 32px 18px; }
  .why-icon     { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Portfolio & Clients */
  .portfolio-grid    { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 8px; }
  .filter-btn        { padding: 8px 16px; font-size: 0.82rem; }
  .sponsors-track { gap: 24px; }
  .sponsors-track img { width: 52px; height: 52px; }
  .sponsors-title { font-size: 1.2rem; margin-bottom: 24px; }

  /* Testimonials */
  .testimonial-card  { padding: 24px 16px; }
  .stars             { font-size: 0.85rem; }

  /* Contact */
  .contact-form-wrap { padding: 20px 16px; }
  .info-card         { padding: 14px; gap: 12px; }
  .info-icon         { width: 38px; height: 38px; font-size: 0.9rem; }
  .social-links      { gap: 8px; }

  /* Order Platform */
  .order-platform-inner   { padding: 24px 16px; border-radius: var(--radius-md); }
  .service-selector-grid  { grid-template-columns: 1fr; gap: 10px; }
  .service-option-card    { padding: 14px 8px; gap: 6px; }
  .service-option-card i  { font-size: 1.25rem; }
  .step-indicator h4      { font-size: 1.1rem; }
  .order-step-nav         { flex-direction: column-reverse; gap: 10px; }
  .order-step-nav .btn    { width: 100%; justify-content: center; }
  .order-modal-content    { padding: 28px 16px; }
  .order-modal-actions    { flex-direction: column; gap: 10px; }
  .order-modal-actions .btn { width: 100%; justify-content: center; }
  .order-modal-ref        { flex-direction: column; gap: 4px; text-align: center; }
  .file-drop-content      { padding: 24px 16px; }
  .file-drop-content i    { font-size: 1.8rem; }

  /* Footer */
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-top     { padding: 48px 0 32px; }
  .footer-social  { gap: 8px; }
}

.stat-num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-plus { font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.stat p { font-size: 0.85rem; color: var(--text-light); margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.stat-divider { width: 1px; height: 70px; background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0)); flex-shrink: 0; }
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-arrow {
  width: 24px; height: 24px; border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold); transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: rotate(45deg) translateY(0); opacity:1; }
  50%      { transform: rotate(45deg) translateY(6px); opacity:0.5; }
}

/* Hero Animations */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform:translateY(20px);  } to { opacity:1; transform:translateY(0); } }

/*  MARQUEE STRIP  */
.marquee-strip {
  background: linear-gradient(90deg, var(--navy-light), var(--blue), var(--navy-light));
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marqueeSlide 28s linear infinite;
}
.marquee-track span {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; font-weight: 700; color: var(--white);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.1em;
}
.marquee-track span i { font-size: 1.1rem; color: var(--gold-light); }
@keyframes marqueeSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/*  ABOUT  */
.about {
  background: rgba(33, 30, 46,0.72);
  backdrop-filter: blur(12px);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center;
}
.about-image-wrapper { position: relative; }
.about-image-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--border);
}
.about-image-main img {
  width: 100%; height: 420px; object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-main:hover img { transform: scale(1.04); }
.about-badge-card {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--blue), var(--navy-light));
  color: var(--white); border-radius: var(--radius-md);
  padding: 18px 24px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 40px rgba(74, 67, 99, 0.4);
  font-size: 0.9rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.about-badge-card i { font-size: 1.8rem; color: var(--gold-light); }
.about-badge-card p { font-size: 0.75rem; opacity:0.8; margin-top:2px; }
.exp-badge {
  position: absolute; top: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%; width: 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(254, 198, 37, 0.4);
}
.exp-num  { font-family: var(--font-head); font-size: 2rem; color: var(--navy); font-weight: 800; line-height:1; text-shadow: 0 1px 1px rgba(255,255,255,0.4); }
.exp-label { font-size: 0.6rem; text-align: center; color: var(--navy); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; line-height:1.3; }

.about-intro {
  font-size: 1.1rem; color: var(--white); margin-bottom: 16px; line-height: 1.7;
}
.about-text { color: var(--text-muted); margin-bottom: 32px; }
.mv-cards   { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.mv-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md); padding: 24px;
  backdrop-filter: blur(16px); transition: var(--transition);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.mv-card:hover {
  background: rgba(74, 67, 99, 0.08); /* slight highlight */
  border-color: rgba(74, 67, 99, 0.3);
  box-shadow: var(--shadow-glow);
}
.mv-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink:0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(74, 67, 99, 0.3);
}
.mv-card h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.mv-card p  { color: var(--text-muted); font-size: 0.9rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.feature-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-light); font-size: 0.9rem; font-weight: 500;
}
.feature-item i { color: var(--gold); font-size: 0.85rem; }

/*  SERVICES SPLIT / DIVISION  */
.services-split-container {
  display: flex;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  margin-bottom: 64px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  z-index: 5;
}
.split-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 480px) {
  .service-icon-wrap{ width: 54px; height: 54px; font-size: 1.4rem; }
  .services-split-container { margin-bottom: 40px; border-radius: var(--radius-md); }
  .split-panel      { padding: 40px 16px; height: 260px; }
  .split-content i  { font-size: 2rem; margin-bottom: 12px; }
  .split-content h2 { font-size: 1.5rem; }
  .split-content p  { font-size: 0.95rem; }

  /* Why Us */
  .why-grid     { grid-template-columns: 1fr; }
  .why-card     { padding: 32px 18px; }
  .why-icon     { width: 60px; height: 60px; font-size: 1.5rem; }

  /* Portfolio & Clients */
  .portfolio-grid    { grid-template-columns: 1fr; }
  .portfolio-filters { gap: 8px; }
  .filter-btn        { padding: 8px 16px; font-size: 0.82rem; }
  .sponsors-track { gap: 24px; }
  .sponsors-track img { width: 52px; height: 52px; }
  .sponsors-title { font-size: 1.2rem; margin-bottom: 24px; }

  /* Testimonials */
  .testimonial-card  { padding: 24px 16px; }
  .stars             { font-size: 0.85rem; }

  /* Contact */
  .contact-form-wrap { padding: 20px 16px; }
  .info-card         { padding: 14px; gap: 12px; }
  .info-icon         { width: 38px; height: 38px; font-size: 0.9rem; }
  .social-links      { gap: 8px; }

  /* Order Platform */
  .order-platform-inner   { padding: 24px 16px; border-radius: var(--radius-md); }
  .service-selector-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-option-card    { padding: 14px 8px; gap: 6px; }
  .service-option-card i  { font-size: 1.25rem; }
  .step-indicator h4      { font-size: 1.1rem; }
  .order-step-nav         { flex-direction: column-reverse; gap: 10px; }
  .order-step-nav .btn    { width: 100%; justify-content: center; }
  .order-modal-content    { padding: 28px 16px; }
  .order-modal-actions    { flex-direction: column; gap: 10px; }
  .order-modal-actions .btn { width: 100%; justify-content: center; }
  .order-modal-ref        { flex-direction: column; gap: 4px; text-align: center; }
  .file-drop-content      { padding: 24px 16px; }
  .file-drop-content i    { font-size: 1.8rem; }

  /* Footer */
  .footer-grid    { grid-template-columns: 1fr; gap: 28px; }
  .footer-top     { padding: 48px 0 32px; }
  .footer-social  { gap: 8px; }

  /* Scroll-to-top */
  .scroll-top   { right: 16px; bottom: 16px; width: 40px; height: 40px; font-size: 0.88rem; }
}

/*  380px - Very Small Phone  */
@media (max-width: 380px) {
  .container    { padding: 0 14px; }
  .hero-title   { font-size: 1.6rem; }
  .hero-badge   { display: none; }
  .section-title{ font-size: 1.5rem; }
  .split-panel           { height: 220px; padding: 20px 10px; }
  .split-content h2      { font-size: 1.3rem; }
}

.order-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; }
.order-header-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 20px; border-radius: 50px;
  border: 1px solid rgba(255, 223, 123,0.3);
  background: rgba(255, 223, 123,0.08);
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  margin-bottom: 16px; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.order-header h3 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--white); margin-bottom: 10px;
}
.order-header p { color: var(--text-muted); font-size: 0.97rem; }

/* Progress Steps */
.order-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-top: 36px; margin-bottom: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.progress-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; position: relative;
}
.progress-step span {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 2px solid var(--border);
  color: var(--text-muted); font-size: 0.88rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.progress-step p {
  font-size: 0.72rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: var(--transition);
}
.progress-step.active span {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-color: var(--blue-light); color: var(--white);
  box-shadow: 0 4px 16px rgba(74, 67, 99, 0.4);
}
.progress-step.active p { color: var(--white); }
.progress-step.completed span {
  background: rgba(74, 67, 99, 0.15);
  border-color: var(--blue); color: var(--blue-light);
  content: "";
}
.progress-step.completed p { color: var(--text-light); }
.progress-line {
  flex: 1; height: 2px; max-width: 100px; min-width: 48px;
  background: var(--border); border-radius: 1px;
  transition: background 0.4s ease;
  position: relative; overflow: hidden;
}
.progress-line.filled {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

/* Step Indicator */
.step-indicator { margin-bottom: 28px; }
.step-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(74, 67, 99, 0.15); border: 1px solid rgba(74, 67, 99, 0.3);
  border-radius: 50px; font-size: 0.75rem; font-weight: 700;
  color: var(--blue-light); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.step-indicator h4 {
  color: var(--white); font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
}

/* Hidden step */
.order-step.hidden {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

/* Service Selector Grid */
.service-selector-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-bottom: 20px;
}
.service-option input[type="radio"] { display: none; }
.service-option-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 24px 16px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-md); cursor: pointer;
  transition: var(--transition); text-align: center;
}
.service-option-card i {
  font-size: 1.8rem; color: var(--text-muted);
  transition: var(--transition);
}
.service-option-card span {
  font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
  transition: var(--transition);
}
.service-option-card:hover {
  border-color: rgba(74, 67, 99, 0.4);
  background: rgba(74, 67, 99, 0.08);
}
.service-option-card:hover i,
.service-option-card:hover span { color: var(--gold); }
.service-option input:checked + .service-option-card {
  border-color: var(--gold);
  background: rgba(247, 195, 37, 0.15);
  box-shadow: 0 4px 24px rgba(247, 195, 37, 0.25);
}
.service-option input:checked + .service-option-card i,
.service-option input:checked + .service-option-card span { color: var(--gold); }

/* Order Fields */
.order-fields-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-bottom: 24px;
}
.order-field-group {
  display: flex; flex-direction: column; gap: 8px;
}
.order-field-full { grid-column: 1 / -1; }
.order-field-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--text-light);
}
.order-field-group label span { color: var(--gold); }

/* Optional label badge */
.label-optional {
  font-size: 0.75rem; font-weight: 500;
  color: var(--text-muted) !important;
  margin-left: 4px;
}

/* Field hint / helper text */
.field-hint {
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(255, 223, 123,0.06);
  border: 1px solid rgba(255, 223, 123,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.86rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 4px;
}
.field-hint i {
  color: var(--gold); font-size: 0.9rem;
  flex-shrink: 0; margin-top: 2px;
}
.field-hint strong { color: var(--text-light); font-weight: 600; }

.order-field-group input,
.order-field-group select,
.order-field-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 13px 16px;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition); resize: none;
  -webkit-appearance: none; appearance: none;
  color-scheme: dark;
}
.order-field-group input[list]::-webkit-calendar-picker-indicator {
  display: block !important;
  cursor: pointer;
  opacity: 0.7;
  filter: invert(0.9) brightness(0.9);
}
.order-field-group input::placeholder,
.order-field-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.order-field-group select option { background: var(--navy-mid); }
.order-field-group input:focus,
.order-field-group select:focus,
.order-field-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 223, 123,0.1);
  background: rgba(255, 223, 123,0.04);
}
.order-field-group input.error,
.order-field-group select.error { border-color: #ff6b6b; }
.order-error {
  color: #ff6b6b; font-size: 0.8rem; min-height: 18px; display: block;
}

/* File Drop Zone */
.file-drop-zone {
  border: 2px dashed rgba(255, 223, 123,0.3);
  border-radius: var(--radius-md);
  transition: var(--transition);
  overflow: hidden;
}
.file-drop-zone.dragging {
  border-color: var(--gold);
  background: rgba(255, 223, 123,0.06);
}
.file-drop-content {
  padding: 32px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.file-drop-content i {
  font-size: 2.4rem; color: var(--gold); opacity: 0.7;
}
.file-drop-content p {
  color: var(--text-muted); font-size: 0.92rem;
}
.file-drop-content span {
  color: var(--text-muted); font-size: 0.78rem; opacity: 0.7;
}
.file-browse-btn {
  color: var(--gold); font-weight: 700;
  font-size: 0.92rem; font-family: var(--font-body);
  text-decoration: underline; transition: var(--transition);
}
.file-browse-btn:hover { color: var(--gold-light); }
.file-selected {
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 223, 123,0.08);
}
.file-selected i { color: var(--gold); font-size: 1.3rem; }
.file-selected span { flex: 1; color: var(--text-light); font-size: 0.9rem; }
.file-remove-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,107,107,0.15); border: 1px solid rgba(255,107,107,0.3);
  color: #ff6b6b; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.file-remove-btn:hover { background: rgba(255,107,107,0.3); }

/* Order Step Nav */
.order-step-nav {
  display: flex; justify-content: flex-end; gap: 12px;
  margin-top: 8px;
}
.order-step-nav .btn-outline {
  border-color: rgba(255,255,255,0.2);
}
/* Per-category Next Step button (inside accordion body) */
.cat-step-nav {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
  justify-content: flex-end;
}

/* Book Order Notice Banner */
.book-order-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 223, 123, 0.07);
  border: 1px solid rgba(255, 223, 123, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.book-notice-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,223,123,0.18), rgba(255,223,123,0.06));
  border: 1px solid rgba(255,223,123,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.book-notice-text {
  display: flex; flex-direction: column; gap: 3px;
}
.book-notice-text strong {
  color: var(--gold); font-size: 0.88rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.book-notice-text span {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.5;
}

/* ============================================================
   PER-BOOK QUANTITY PANEL
   ============================================================ */
#book-qty-panel {
  margin-bottom: 24px;
  border: 1px solid rgba(74, 67, 99, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.book-qty-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: rgba(74, 67, 99, 0.18);
  border-bottom: 1px solid rgba(74, 67, 99, 0.25);
  font-size: 0.85rem; font-weight: 700; color: var(--blue-light);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.book-qty-header i { font-size: 0.95rem; }
.book-qty-rows { display: flex; flex-direction: column; }
.book-qty-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}
.book-qty-row:last-child { border-bottom: none; }
.book-qty-row:hover { background: rgba(74, 67, 99, 0.08); }
.book-qty-row-label {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0;
}
.book-qty-row-label i { color: var(--blue-light); font-size: 0.9rem; flex-shrink: 0; }
.book-qty-row-label span {
  color: var(--text-light); font-size: 0.9rem; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.book-qty-row-input {
  display: flex; align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
}
.qty-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04); border: none; color: var(--text-light);
  font-size: 0.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.qty-btn:hover { background: rgba(74, 67, 99, 0.35); color: var(--blue-light); }
.qty-btn.qty-minus { border-right: 1px solid var(--border); }
.qty-btn.qty-plus  { border-left:  1px solid var(--border); }
.book-qty-input {
  width: 56px; height: 36px;
  background: transparent; border: none;
  color: var(--white); text-align: center;
  font-size: 0.95rem; font-weight: 600; font-family: var(--font-body);
  -webkit-appearance: none; appearance: none; -moz-appearance: textfield; outline: none;
}
.book-qty-input::-webkit-outer-spin-button,
.book-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.book-qty-input.qty-input-error { background: rgba(255,107,107,0.1); color: #ff6b6b; }
#err-book-quantities { display: block; padding: 6px 20px 12px; }
.summary-row-books { flex-direction: column; align-items: flex-start !important; gap: 10px; }
.summary-row-books > span { color: var(--text-muted); font-weight: 500; }
.summary-book-list { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.summary-book-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(74,67,99,0.1); border: 1px solid rgba(74,67,99,0.22);
  border-radius: var(--radius-xs); padding: 7px 12px; font-size: 0.88rem;
}
.summary-book-item i  { color: var(--blue-light); font-size: 0.82rem; flex-shrink: 0; }
.summary-book-item span { flex: 1; color: var(--text-light); }
.summary-book-item strong { color: var(--gold); font-weight: 700; }

/* ============================================================
   TOTAL BOOKS - Equation breakdown row
   ============================================================ */
.summary-total-books {
  margin-top: 12px;
  background: linear-gradient(135deg, rgba(74,67,99,0.25), rgba(74,67,99,0.1));
  border: 1px solid rgba(74,67,99,0.45);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  overflow: hidden;
}
.tb-header {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue-light); margin-bottom: 12px;
}
.tb-header i { font-size: 0.8rem; }
.tb-equation {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
}
.tb-term {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(74,67,99,0.3);
  border-radius: 8px; padding: 6px 10px; min-width: 40px;
  transition: background 0.2s;
}
.tb-term em {
  font-style: normal; font-size: 1.1rem; font-weight: 800;
  color: var(--white); line-height: 1.1;
}
.tb-term small {
  font-size: 0.65rem; color: var(--text-muted); font-weight: 500;
  margin-top: 3px; text-align: center; line-height: 1.3;
  max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tb-plus {
  font-size: 1rem; color: var(--text-muted); font-weight: 700;
  padding: 0 2px;
}
.tb-equals {
  font-size: 1.1rem; font-weight: 800; color: var(--blue-light);
  padding: 0 4px;
}
.tb-result {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, rgba(74,67,99,0.4), rgba(74,67,99,0.2));
  border: 1px solid var(--blue);
  border-radius: 8px; padding: 6px 14px; min-width: 56px;
  box-shadow: 0 4px 16px rgba(74,67,99,0.25);
}
.tb-result > :first-child {
  font-size: 1.3rem; font-weight: 900; line-height: 1.1;
  background: linear-gradient(135deg, #a78bfa, var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tb-result small {
  font-size: 0.65rem; color: var(--blue-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px;
  -webkit-text-fill-color: initial;
}
@media (max-width: 540px) {
  .tb-equation { gap: 4px; }
  .tb-term { padding: 5px 7px; min-width: 34px; }
  .tb-term em { font-size: 0.95rem; }
  .tb-term small, .tb-result small { font-size: 0.6rem; }
  .tb-result > :first-child { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .book-qty-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .book-qty-row-label span { white-space: normal; }
}

/* Order Summary */
.order-summary {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 24px;
  margin-bottom: 28px;
}
.order-summary h5 {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 0.95rem; font-weight: 700;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em;
}
.summary-items { display: flex; flex-direction: column; gap: 8px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row .s-label { color: var(--text-muted); font-weight: 500; }
.summary-row .s-value { color: var(--white); font-weight: 600; }

/*  ORDER SUCCESS MODAL  */
.order-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none; align-items: center; justify-content: center;
}
.order-modal.open { display: flex; }
.order-modal.open .order-modal-content {
  animation: modalBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.order-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(8px);
}
.order-modal-content {
  position: relative; z-index: 1;
  max-width: 520px; width: 90%; text-align: center;
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border: 1px solid rgba(255, 223, 123,0.4);
  border-radius: var(--radius-lg); padding: 56px 48px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
@keyframes modalBounceIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.order-modal-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(39,174,96,0.15); border: 2px solid rgba(39,174,96,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 2.4rem; color: #27ae60;
  animation: iconPop 0.4s ease 0.2s both;
}
@keyframes iconPop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}
.order-modal-content h3 {
  font-family: var(--font-head); font-size: 1.7rem;
  color: var(--white); margin-bottom: 14px;
}
.order-modal-content > p {
  color: var(--text-muted); font-size: 0.97rem;
  line-height: 1.8; margin-bottom: 24px;
}
.order-modal-ref {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px; border-radius: 50px;
  background: rgba(255, 223, 123,0.1); border: 1px solid rgba(255, 223, 123,0.25);
  font-size: 0.9rem; margin-bottom: 32px;
}
.order-modal-ref span { color: var(--text-muted); }
.order-modal-ref strong { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.order-modal-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 768px) {
  .services-split-container {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }
  .split-panel {
    padding: 60px 20px;
    height: 300px;
  }
  .split-panel:hover {
    flex: 1;
  }
  .split-content i {
    font-size: 2.5rem;
  }
  .split-content h2 {
    font-size: 1.8rem;
  }
}

/* ============================================================
   $10M PREMIUM OVERRIDES
   ============================================================ */

/* Why Us */
.why-us { background: var(--navy-mid); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 40px 28px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.why-card::before {
  content:''; position:absolute; inset:0; opacity:0;
  background: radial-gradient(ellipse at 50% 0%, rgba(247,195,37,0.09) 0%, transparent 70%);
  transition: opacity 0.4s ease;
}
.why-card:hover::before { opacity: 1; }
.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(247,195,37,0.07);
}
.why-icon {
  width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(247,195,37,0.13), rgba(247,195,37,0.03));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(247,195,37,0.2), 0 0 0 8px rgba(247,195,37,0.04);
}
.why-card h4 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.why-card p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* Testimonials & Reviews (Infinite Marquee) */
.testimonials { background: var(--navy); overflow: hidden; padding: 80px 0; }
.review-wall {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  padding: 20px 0;
  /* Premium fade on edges */
  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);
}
.review-track {
  display: flex;
  gap: 24px;
  width: max-content;
  /* Adjust animation duration based on card count */
  animation: driftReviews 70s linear infinite;
  padding: 12px 12px 24px;
}
.review-track:hover {
  animation-play-state: paused;
}
@keyframes driftReviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 12px)); }
}

/* Glass Review Cards */
.review-card {
  width: 340px;
  flex: 0 0 auto;
  background: rgba(34, 43, 64, 0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}
.review-card::before {
  content: '\201C'; position: absolute; top: -10px; left: 20px;
  font-family: var(--font-head); font-size: 6rem;
  color: var(--gold); opacity: 0.06; line-height: 1; pointer-events: none;
}
.review-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.review-card:hover::after { opacity: 1; }
.review-card:hover {
  border-color: rgba(247,195,37,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(247,195,37,0.04);
}

.review-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}
.review-avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  border: 1.5px solid var(--border-gold);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.review-avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.review-top div:nth-child(2) { flex: 1; }
.review-top strong {
  display: block; color: var(--white); font-size: 0.98rem; font-weight: 700;
  letter-spacing: 0.01em;
}
.review-top span {
  color: var(--text-muted); font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; display: block;
}

.review-text {
  color: var(--text-light); font-size: 0.95rem; line-height: 1.75;
  font-style: italic; position: relative; z-index: 1;
  flex: 1; margin-bottom: 20px;
  opacity: 0.85;
}
.review-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(247,195,37,0.05);
  border: 1px solid rgba(247,195,37,0.15);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem; color: var(--gold);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
.review-tag i { color: var(--gold); font-size: 0.65rem; }

@media (max-width: 768px) {
  .review-card { width: 320px; padding: 24px 22px; }
  .review-track { animation-duration: 40s; }
}

/* Contact */
.contact { background: var(--navy-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.info-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 20px; transition: var(--transition);
}
.info-card:hover { border-color: var(--border-gold); box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px var(--gold-glow); }
.info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,195,37,0.13), rgba(247,195,37,0.04));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.info-card strong { color: var(--white); font-size: 0.85rem; font-weight: 700; display: block; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.info-card a, .info-card span { color: var(--text-muted); font-size: 0.9rem; display: block; transition: var(--transition-fast); }
.info-card a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--navy-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
.form-group label span { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-xs); padding: 13px 16px;
  color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
  transition: var(--transition-fast); resize: none; -webkit-appearance: none; appearance: none; color-scheme: dark;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow); background: rgba(247,195,37,0.03);
}
.form-group select option { background: var(--navy-mid); }
.error-msg { color: #ff6b6b; font-size: 0.8rem; min-height: 16px; display: block; }
.form-success { display: none; align-items: center; gap: 12px; padding: 16px 20px; background: rgba(39,174,96,0.1); border: 1px solid rgba(39,174,96,0.3); border-radius: var(--radius-sm); margin-top: 16px; color: #6ee7a0; }
.form-success.show { display: flex; }
.social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-card); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-btn:hover { border-color: var(--border-gold); color: var(--gold); background: rgba(247,195,37,0.07); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(247,195,37,0.12); }

/* Map Section */
.map-section { background: var(--navy); padding: 100px 0; }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.map-content h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
.map-content p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 30px; }
.location-cards { display: flex; flex-direction: column; gap: 20px; }
.location-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 28px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.location-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(247,195,37,0.08) 0%, transparent 70%);
  transition: opacity 0.4s ease;
}
.location-card:hover::before { opacity: 1; }
.location-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(247,195,37,0.05);
}
/* ============================================================
   LOCATION INFO CARD (in contact section)
   ============================================================ */
.info-card-location { align-items: flex-start; }
.info-card-location .info-icon { margin-top: 4px; }
.location-details {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.location-details strong {
  color: var(--white); font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 6px;
}
.loc-name {
  color: var(--gold); font-size: 0.95rem; font-weight: 600;
  display: block; margin-bottom: 2px;
}
.loc-addr {
  color: var(--text-muted); font-size: 0.88rem; display: block; line-height: 1.6;
}
.directions-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  padding: 9px 18px;
  background: linear-gradient(135deg, rgba(247,195,37,0.12), rgba(247,195,37,0.04));
  border: 1px solid rgba(247,195,37,0.3);
  border-radius: 50px;
  color: var(--gold); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: var(--transition); text-decoration: none;
}
.directions-btn i { font-size: 0.85rem; }
.directions-btn:hover {
  background: linear-gradient(135deg, rgba(247,195,37,0.22), rgba(247,195,37,0.10));
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(247,195,37,0.2);
  transform: translateY(-2px);
}

/* ============================================================
   GOOGLE MAPS EMBED SECTION
   ============================================================ */
.map-section {
  position: relative;
  background: var(--navy-mid);
  z-index: 1;
}

/* Header bar */
.map-header {
  background: var(--navy-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.map-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.map-pin-pulse {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,195,37,0.18), rgba(247,195,37,0.06));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  animation: pinPulse 2.4s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247,195,37,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(247,195,37,0); }
}
.map-header-inner > div:nth-child(2) { flex: 1; min-width: 0; }
.map-header-inner h3 {
  font-family: var(--font-head); font-size: 1.35rem;
  color: var(--white); font-weight: 700; margin: 0 0 4px;
}
.map-header-inner p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

.open-maps-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #0a0808; font-weight: 700; font-size: 0.85rem;
  border-radius: 50px; letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(247,195,37,0.3);
  transition: var(--transition); flex-shrink: 0;
  text-decoration: none;
}
.open-maps-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(247,195,37,0.5);
  filter: brightness(1.06);
}

/* Map iframe wrapper */
.map-embed-wrap {
  position: relative; width: 100%;
  height: 480px;
  overflow: hidden;
}
.map-embed-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
  filter: saturate(1.1) brightness(0.92);
}

/* Floating address card over the map */
.map-overlay-card {
  position: absolute;
  bottom: 32px; left: 32px;
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(16, 13, 24, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(247,195,37,0.25);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  max-width: 340px;
  animation: slideUp 0.6s ease 0.3s both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.moc-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,195,37,0.18), rgba(247,195,37,0.06));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.map-overlay-card > div:last-child { display: flex; flex-direction: column; gap: 3px; }
.map-overlay-card strong {
  color: var(--white); font-size: 0.95rem; font-weight: 700;
  display: block; line-height: 1.3;
}
.map-overlay-card span {
  color: var(--text-muted); font-size: 0.82rem; display: block; line-height: 1.5;
}

@media (max-width: 768px) {
  .map-embed-wrap { height: 360px; }
  .map-overlay-card { bottom: 16px; left: 16px; right: 16px; max-width: 100%; }
  .map-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .open-maps-btn { width: 100%; justify-content: center; }
}


/* Footer */
.footer { background: var(--navy-mid); }
.footer-top { padding: 80px 0 60px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin: 20px 0 28px; }
.footer-social { display: flex; gap: 10px; }
.footer-links-col h5, .footer-contact-col h5 { color: var(--white); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.footer-links-col ul, .footer-contact-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: var(--transition-fast); }
.footer-links-col a:hover { color: var(--gold); transform: translateX(4px); }
.footer-links-col a i { color: var(--gold); font-size: 0.7rem; }
.footer-contact-col li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.footer-contact-col i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-col a { color: var(--text-muted); transition: var(--transition-fast); }
.footer-contact-col a:hover { color: var(--gold); }
/* Footer map link */
.footer-map-link {
  color: var(--text-muted); font-size: 0.88rem;
  line-height: 1.5; display: block;
  transition: var(--transition-fast);
  text-decoration: none;
}
.footer-map-link:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; border-top: 1px solid var(--border); }
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom-flex p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.developer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}
.developer-credit a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(247,195,37,0.5);
}
.developer-credit i { margin-right: 4px; }
@media (max-width: 576px) {
    .footer-bottom-flex {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* Sponsors/Clients */
.clients-logo-section { background: var(--navy); padding: 60px 0; }
.sponsors-title { text-align: center; color: var(--text-muted); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.28em; margin-bottom: 36px; }
.sponsors-track img { height: 56px; width: auto; max-width: 120px; object-fit: contain; filter: grayscale(100%) brightness(0.6); transition: filter 0.35s ease, transform 0.35s ease; opacity: 0.65; }
.sponsors-track img:hover { filter: grayscale(0%) brightness(1); transform: scale(1.1); opacity: 1; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c5f);
  color: white; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12) translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* Scroll-to-top */
.scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--navy-card); border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 1rem;
  display: none; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--gold); color: var(--navy); box-shadow: 0 12px 32px rgba(247,195,37,0.35); transform: translateY(-3px); }

/* About */
.about { background: var(--navy); }
.mv-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(247,195,37,0.15), rgba(247,195,37,0.04));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .order-fields-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { padding: 24px 20px; }
  .stat { padding: 0 20px; }
}

/* ============================================================
   TRUSTED PARTNERS SECTION
   ============================================================ */
.partners-section {
  background: var(--navy-mid);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.partners-section .section-label { color: rgba(255, 255, 255, 0.6); }
.partners-section .section-title { color: var(--white); }
.partners-section .section-title .gold-text { color: var(--gold); text-shadow: 0 0 20px rgba(247,195,37,0.3); }
.partners-section .section-desc { color: var(--text-muted); }
.partners-section .section-line { background: linear-gradient(90deg, var(--gold), transparent); }

/* Premium Flex Layout */
.logo-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 64px auto 80px;
  max-width: 1000px;
  perspective: 1000px;
}

/* Premium Floating White Cards */
.logo-tile {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}


/* The Logo image */
.logo-tile img {
  display: block;
  width: auto;
  max-width: 130px;
  max-height: 75px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
}

/* Hover effects */
.logo-tile:hover {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.06);
  box-shadow: 0 16px 48px rgba(247, 195, 37, 0.15), 0 0 0 2px var(--gold);
}
.logo-tile:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Clean Tooltip */
.logo-tooltip {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--navy-card);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.logo-tile:hover .logo-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Trust bar adjustments back to dark theme */
.partners-section .trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: 22px 48px;
  backdrop-filter: blur(10px);
}
.partners-section .trust-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 600;
}
.partners-section .trust-stat i { color: var(--gold); font-size: 1.1rem; }
.partners-section .trust-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

/* Responsive logo wall */
@media (max-width: 900px) {
  .logo-wall { gap: 24px; padding: 0 20px; }
  .logo-tile { padding: 20px 28px; }
  .logo-tile img { max-width: 110px; max-height: 60px; }
}
@media (max-width: 480px) {
  .logo-wall { gap: 16px; margin-bottom: 60px; }
  .logo-tile { padding: 16px 20px; border-radius: 16px; }
  .logo-tile img { max-width: 90px; max-height: 50px; }
  .partners-section .trust-bar { border-radius: 16px; flex-direction: column; padding: 24px; gap: 16px; }
  .partners-section .trust-stat { padding: 0; }
  .partners-section .trust-divider { width: 60px; height: 1px; }
}
.wa-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #25d366, #128c5f);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  text-decoration: none;
  margin-top: 8px;
}
.wa-contact-btn i { font-size: 1.3rem; }
.wa-contact-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37,211,102,0.5);
  filter: brightness(1.05);
}

/* Animated Footer WhatsApp Icon */
@keyframes floatPulseWA {
    0% { transform: translateY(0) scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { transform: translateY(-4px) scale(1.05); box-shadow: 0 0 15px 5px rgba(37, 211, 102, 0.2); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.footer-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #25d366, #128c5f);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  text-decoration: none;
  animation: floatPulseWA 3s infinite ease-in-out;
  animation-delay: 0.5s; /* Staggered from LinkedIn animation */
  transition: var(--transition);
}
.footer-wa-icon:hover {
  background: #1da851;
  color: #fff;
  animation-play-state: paused;
  transform: scale(1.15) translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* Animated Developer LinkedIn Icon */
@keyframes floatPulse {
    0% { transform: translateY(0) scale(1); box-shadow: 0 0 0 0 rgba(0, 119, 181, 0.4); }
    50% { transform: translateY(-4px) scale(1.05); box-shadow: 0 0 15px 5px rgba(0, 119, 181, 0.2); }
    100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 0 rgba(0, 119, 181, 0); }
}

.dev-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #0077b5;
    color: #fff;
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    animation: floatPulse 3s infinite ease-in-out;
    transition: var(--transition);
}
.dev-linkedin-icon:hover {
    background: #005582;
    color: #fff;
    animation-play-state: paused;
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.5);
}
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }

/* Responsive logo wall */
@media (max-width: 900px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .logo-tile { padding: 32px 24px; }
  .logo-tile img { max-width: 130px; max-height: 75px; }
}
@media (max-width: 480px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .logo-tile { padding: 24px 16px; }
  .logo-tile img { max-width: 100px; max-height: 60px; }
}




/* ============================================================
   SUB-PAGE HERO BANNER
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(76,98,142,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(247,195,37,0.09) 0%, transparent 55%),
    linear-gradient(170deg, rgba(21,27,41,0.9) 0%, rgba(28,36,54,0.75) 50%, rgba(21,27,41,0.95) 100%);
}
/* Decorative gold line at bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-dark), transparent);
  opacity: 0.4;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeInUp 0.9s ease 0.2s both;
}
.page-hero-content .section-label {
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6);
}
.page-hero-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(232,228,245,0.7);
  line-height: 1.75;
}

/* ============================================================
   HERO SLIDESHOW (Crossfade Animation)
   ============================================================ */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(21,27,41,0.65); /* Additional overlay for readability, standard for hero */
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: slideFade 25s infinite;
  z-index: 0;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 5s; }
.hero-slide:nth-child(3) { animation-delay: 10s; }
.hero-slide:nth-child(4) { animation-delay: 15s; }
.hero-slide:nth-child(5) { animation-delay: 20s; }

@keyframes slideFade {
  0%   { opacity: 0; transform: scale(1.02); }
  4%   { opacity: 1; transform: scale(1.03); }
  20%  { opacity: 1; transform: scale(1.07); }
  24%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; transform: scale(1.08); }
}

/* ============================================================
   SERVICES CTA BANNER
   ============================================================ */
.services-cta-banner {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}
.services-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(247,195,37,0.06) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 50%, rgba(76,98,142,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.services-cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.services-cta-inner h3 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.services-cta-inner p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.services-cta-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .page-hero { min-height: 280px; padding: 120px 20px 60px; }
  .services-cta-banner { padding: 36px 24px; }
  .services-cta-inner { flex-direction: column; text-align: center; }
  .services-cta-btns { justify-content: center; }
}

/* ============================================================
   SERVICES GRID & CARDS
   ============================================================ */
.services-section { padding: 80px 0 120px; background: var(--navy); }
.services-tabs {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 64px; flex-wrap: wrap; text-align: center;
}
.services-tabs button {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  color: var(--text-light); padding: 12px 32px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.services-tabs button.active {
  background: rgba(247,195,37,0.1); border-color: var(--gold);
  color: var(--gold); box-shadow: 0 4px 20px var(--gold-glow);
}
.service-category-section { display: none; animation: fadeIn 0.4s ease; }
.service-category-section.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 40px 32px;
  transition: var(--transition); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(circle at 100% 0%, rgba(247,195,37,0.08) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: var(--border-gold); transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(247,195,37,0.07);
}
.featured-card { border-color: rgba(247,195,37,0.3); background: linear-gradient(170deg, var(--navy-card), #14111d); }
.featured-badge {
  position: absolute; top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); font-size: 0.75rem; font-weight: 800;
  padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.08em;
}
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(247,195,37,0.15), rgba(247,195,37,0.03));
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.6rem; margin-bottom: 24px;
  transition: var(--transition); box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.service-card:hover .service-icon-wrap {
  transform: scale(1.1); box-shadow: 0 12px 32px rgba(247,195,37,0.2), 0 0 0 6px rgba(247,195,37,0.04);
}
.service-card h3 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 1; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 24px; position: relative; z-index: 1; }
.service-list { list-style: none; margin-bottom: 32px; flex-grow: 1; position: relative; z-index: 1; }
.service-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #c6c2db; font-size: 0.9rem; margin-bottom: 10px; line-height: 1.5;
}
.service-list i { color: var(--gold); font-size: 0.8rem; margin-top: 5px; flex-shrink: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 0.95rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: var(--transition-fast); position: relative; z-index: 1;
}
.service-link i { transition: transform 0.3s ease; }
.service-link:hover { color: var(--gold-light); }
.service-link:hover i { transform: translateX(4px); }

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.portfolio { padding: 80px 0 120px; background: var(--navy); }
.portfolio-filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 56px;
}
.filter-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); padding: 10px 24px; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: rgba(247,195,37,0.4); color: var(--white); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); box-shadow: 0 4px 16px var(--gold-glow); }

.portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px;
}
.portfolio-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background: var(--navy-mid); border: 1px solid var(--border); aspect-ratio: 4/3;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,27,41,0.95) 0%, rgba(21,27,41,0.7) 40%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; opacity: 0; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { transform: translateY(15px); transition: transform 0.4s ease; position: relative; width: 100%; }
.portfolio-item:hover .portfolio-info { transform: translateY(0); }
.portfolio-info h4 { color: var(--white); font-size: 1.25rem; font-weight: 700; margin-bottom: 6px; }
.portfolio-info p { color: var(--gold); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.portfolio-zoom {
  position: absolute; top: -100px; right: 0; /* Pushed out initially, comes in on hover */
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(247,195,37,0.15); border: 1px solid rgba(247,195,37,0.3);
  color: var(--gold); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.portfolio-item:hover .portfolio-zoom { top: -20px; }
.portfolio-zoom:hover { background: var(--gold); color: var(--navy); box-shadow: 0 0 24px var(--gold-glow); transform: scale(1.1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 11000;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox.open .lightbox-content { animation: modalBounceIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.92); backdrop-filter: blur(10px); cursor: pointer; }
.lightbox-content { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 60px rgba(0,0,0,0.8); }
.lightbox-close {
  position: absolute; top: -50px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover { background: #fff; color: #000; transform: scale(1.1); }
#lightbox-title { color: #fff; font-size: 1.1rem; font-weight: 500; margin-top: 16px; font-family: var(--font-head); }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
}
/* Pill action links inside info cards */
.info-link {
  display: inline-flex !important; align-items: center; gap: 8px;
  margin-top: 6px; padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 50px;
  color: var(--text-light) !important;
  font-size: 0.84rem !important; font-weight: 500;
  transition: var(--transition) !important;
  text-decoration: none; width: fit-content;
}
.info-link i { font-size: 0.8rem; color: var(--gold); flex-shrink: 0; }
.info-link:hover {
  background: rgba(247,195,37,0.09) !important;
  border-color: rgba(247,195,37,0.3) !important;
  color: var(--gold) !important;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(247,195,37,0.1);
}
.info-link-wa {
  background: rgba(37,211,102,0.06) !important;
  border-color: rgba(37,211,102,0.18) !important;
}
.info-link-wa i { color: #25d366; }
.info-link-wa:hover {
  background: rgba(37,211,102,0.14) !important;
  border-color: rgba(37,211,102,0.4) !important;
  color: #25d366 !important;
  box-shadow: 0 4px 16px rgba(37,211,102,0.12);
}
/* Hours indicators */
.hours-dot { color: var(--gold) !important; font-size: 0.42rem !important; flex-shrink: 0; }
.hours-closed { opacity: 0.55; }

/* ============================================================
   PARTNER TILES - BRAND COLORS + CINEMATIC ENTRANCE
   ============================================================ */

/* Remove old float animation - replaced below */
.logo-tile:nth-child(odd)  { animation: tileEntrance 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.logo-tile:nth-child(even) { animation: tileEntrance 0.7s cubic-bezier(0.16,1,0.3,1) both; }

@keyframes tileEntrance {
  from { opacity: 0; transform: translateY(28px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}
/* Stagger each tile */
.logo-tile:nth-child(1) { animation-delay: 0.05s; }
.logo-tile:nth-child(2) { animation-delay: 0.15s; }
.logo-tile:nth-child(3) { animation-delay: 0.25s; }
.logo-tile:nth-child(4) { animation-delay: 0.35s; }
.logo-tile:nth-child(5) { animation-delay: 0.45s; }
.logo-tile:nth-child(6) { animation-delay: 0.55s; }

/* Individual brand accent colors */
#partner-gifas      { --brand: #2e8b57; }
#partner-time       { --brand: #c0392b; }
#partner-bestman    { --brand: #1a5f9c; }
#partner-gcu        { --brand: #6b21a8; }
#partner-tradewinds { --brand: #d97706; }
#partner-kumawuman  { --brand: #0e7490; }

/* Override hover with brand color glow + 3D lift */
.logo-tile:hover {
  animation-play-state: running;
  transform: translateY(-8px) scale(1.07) rotateY(2deg) !important;
  border: 2px solid var(--brand, var(--gold));
  box-shadow:
    0 22px 56px rgba(0,0,0,0.45),
    0  0  28px color-mix(in srgb, var(--brand,  #f7c325)  45%, transparent),
    0  0   0 1px rgba(255,255,255,0.06) !important;
}
/* Tooltip adopts brand color */
.logo-tile:hover .logo-tooltip {
  border-color: var(--brand, var(--border-gold));
  color: var(--brand, var(--gold));
}

/* Keep logo images fully colored on hover */
.logo-tile img {
  filter: grayscale(15%) opacity(0.9) !important;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.logo-tile:hover img {
  filter: grayscale(0%) opacity(1) !important;
  transform: scale(1.08);
}

/* ============================================================
   ORDER CATEGORIES - EXPANDABLE ACCORDION (Step 1)
   ============================================================ */
.order-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.order-category {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.order-category.active {
  border-color: rgba(247,195,37,0.35);
  background: rgba(247,195,37,0.02);
}

/* Category header button */
.order-cat-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}
.order-cat-header:hover {
  background: rgba(247,195,37,0.04);
}
.order-cat-header-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.order-cat-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(247,195,37,0.16), rgba(247,195,37,0.05));
  border: 1px solid rgba(247,195,37,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.25rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.order-category.active .order-cat-icon {
  background: linear-gradient(135deg, rgba(247,195,37,0.28), rgba(247,195,37,0.10));
  box-shadow: 0 0 24px rgba(247,195,37,0.2);
  transform: scale(1.06);
}
.order-cat-text {
  display: flex; flex-direction: column; gap: 4px;
}
.order-cat-title {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
.order-category.active .order-cat-title { color: var(--gold); }
.order-cat-desc {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Animated chevron */
.order-cat-chevron {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease,
              color 0.3s ease;
}
.order-category.active .order-cat-chevron {
  transform: rotate(180deg);
  border-color: rgba(247,195,37,0.4);
  color: var(--gold);
}

/* Collapsible body - animates with max-height */
.order-cat-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.16,1,0.3,1),
              opacity 0.35s ease,
              padding 0.35s ease;
  opacity: 0;
  padding: 0 28px;
}
.order-cat-body.open {
  max-height: 900px;
  opacity: 1;
  padding: 0 28px 28px;
}

/* Override service-selector-grid inside the body */
.order-cat-body .service-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .order-cat-header { padding: 18px 18px; }
  .order-cat-icon { width: 44px; height: 44px; font-size: 1.05rem; }
  .order-cat-title { font-size: 1rem; }
  .order-cat-body.open { padding: 0 16px 20px; }
  .order-cat-body .service-selector-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; }
}

/* Split Panel Motion Upgrade block removed explicitly to favor cinematic accordion */
/* Slimmer Review Cards */
.review-card {
  width: 280px !important;
  padding: 22px 24px !important;
}
.review-top { margin-bottom: 12px !important; }
.review-text { font-size: 0.85rem !important; margin-bottom: 14px !important; line-height: 1.6 !important; }
.review-card::before { font-size: 4rem !important; top: -5px !important; left: 15px !important; }
/* Added Citations Styling & Motion */
.citations-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  perspective: 1000px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.citations-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.citation-img {
  position: absolute;
  width: 75%;
  max-width: 380px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.6);
  border: 2px solid var(--gold-dark);
  transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-style: preserve-3d;
  background: var(--white);
  padding: 4px; /* polaroid/frame effect */
}

.citation-1 {
  transform: translateX(-15%) rotate(-6deg) translateZ(10px);
  z-index: 2;
  animation: floatCit1 6s ease-in-out infinite alternate;
}

.citation-2 {
  transform: translateX(15%) rotate(4deg) translateZ(0);
  z-index: 1;
  animation: floatCit2 5s ease-in-out infinite alternate;
  filter: brightness(0.85);
}

@keyframes floatCit1 {
  0% { transform: translateX(-15%) translateY(0) rotate(-6deg) translateZ(10px); }
  100% { transform: translateX(-15%) translateY(-12px) rotate(-6deg) translateZ(10px); }
}

@keyframes floatCit2 {
  0% { transform: translateX(15%) translateY(0) rotate(4deg) translateZ(0); }
  100% { transform: translateX(15%) translateY(10px) rotate(4deg) translateZ(0); }
}

.citations-wrapper:hover .citation-1 {
  transform: translateX(-35%) rotate(-10deg) scale(1.05) translateZ(20px);
  z-index: 3;
  filter: brightness(1) drop-shadow(0 0 20px rgba(247,195,37,0.4));
}

.citations-wrapper:hover .citation-2 {
  transform: translateX(35%) rotate(10deg) scale(1.05) translateZ(20px);
  z-index: 3;
  filter: brightness(1) drop-shadow(0 0 20px rgba(247,195,37,0.4));
}

/* Ensure mobile layout doesn't overflow citation cards */
@media (max-width: 600px) {
  .citations-wrapper { height: 350px; }
  .citation-img { width: 85%; }
  .citations-wrapper:hover .citation-1 {
    transform: translateX(-20%) translateY(-20px) rotate(-8deg) scale(1.05) translateZ(20px);
  }
  .citations-wrapper:hover .citation-2 {
    transform: translateX(20%) translateY(20px) rotate(8deg) scale(1.05) translateZ(20px);
  }
}

.highlight-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--navy);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 16px 40px rgba(247, 195, 37, 0.4);
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    z-index: 4;
}
.highlight-badge i { font-size: 1.8rem; color: var(--navy); }
.highlight-badge p { font-size: 0.75rem; opacity: 0.85; margin-top: 2px; }

/* CITATION BOOK FLIP OVERRIDES */
.citations-wrapper {
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}
.citation-book {
    position: relative;
    width: 80%;
    max-width: 380px;
    aspect-ratio: 0.76;
    margin: 0 auto;
    cursor: pointer;
    transform-style: preserve-3d;
}
.book-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 45px rgba(0,0,0,0.6);
    border-radius: 8px;
    /* Gentle floating animation when idle */
    animation: bookIdleFloat 5s ease-in-out infinite alternate;
}

@keyframes bookIdleFloat {
    0% { transform: translateY(0) rotateX(2deg) rotateY(-5deg); }
    100% { transform: translateY(-12px) rotateX(-2deg) rotateY(5deg); }
}

.citation-book:hover .book-inner {
    transform: rotateY(-180deg) scale(1.05);
    animation: none; /* stop float on hover */
}

.book-page {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    border: 3px solid var(--gold);
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    transition: transform 0.4s ease;
}

.book-page:hover img {
    transform: scale(1.02);
}

.book-front {
    z-index: 2;
}

.book-back {
    transform: rotateY(180deg);
    z-index: 1;
}

/* Flip Hint Overlay */
.flip-hint {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    background: var(--navy);
    color: var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    border: 1px solid var(--gold-dark);
    opacity: 0;
    transition: opacity 0.3s ease, bottom 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.book-inner:hover .flip-hint {
    opacity: 1;
    bottom: -20px;
}

/* Ensure the back page hint shows properly when flipped */
.book-back .flip-hint {
    transform: translate(-50%, 0) rotateY(180deg) scaleX(-1);
}
.book-inner:hover .book-back .flip-hint {
    opacity: 1;
    bottom: -20px;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 6, 11, 0.95);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: zoom-out;
}
.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(247, 195, 37, 0.3);
    border: 2px solid var(--gold);
    animation: modZoom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 44px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
    z-index: 2001;
}

.lightbox-close:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

@keyframes modZoom {
    from { transform: scale(0.6) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

/* Mobile Overrides */
@media (max-width: 600px) {
    .citation-book {
        width: 90%;
        max-width: 320px;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
    }
}
/* DUAL CITATION DESKTOP SPREAD */
.citations-wrapper {
    perspective: 1500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.citations-open-book {
    position: relative;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    transform-style: preserve-3d;
    cursor: pointer;
    /* initial slow idle float */
    animation: spreadFloat 4s ease-in-out infinite alternate;
}

@keyframes spreadFloat {
    0% { transform: translateY(0) rotateX(5deg); }
    100% { transform: translateY(-10px) rotateX(-5deg); }
}

.page-side {
    position: relative;
    width: 50%;
    aspect-ratio: 0.72;
    background: #fff;
    border: 3px solid var(--gold);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
    box-shadow: 0 15px 45px rgba(0,0,0,0.5);
}

.page-left {
    transform-origin: center right;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px 0 0 8px;
    background: linear-gradient(to right, #ffffff 88%, #e6e6e6 100%);
}

.page-right {
    transform-origin: center left;
    border-left: 1px solid rgba(0,0,0,0.1);
    border-radius: 0 8px 8px 0;
    background: linear-gradient(to left, #ffffff 88%, #e6e6e6 100%);
}

.page-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: transparent;
    transition: transform 0.4s ease;
}

/* On hover, flip pages slightly like picking up the book */
.citations-open-book:hover .page-left {
    transform: rotateY(18deg);
    box-shadow: 20px 20px 30px rgba(0,0,0,0.6);
}
.citations-open-book:hover .page-right {
    transform: rotateY(-18deg);
    box-shadow: -20px 20px 30px rgba(0,0,0,0.6);
}

.citations-open-book:hover .page-side img {
    transform: scale(1.02);
}

.dual-flip-hint {
    position: absolute;
    bottom: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(247,195,37,0.4);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    z-index: 5;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.citations-open-book:hover .dual-flip-hint {
    opacity: 1;
    transform: translateY(0);
}

/* DUAL LIGHTBOX CONTENT */
.lightbox-dual-content {
    display: flex;
    gap: 24px;
    width: 90vw;
    height: 90vh;
    align-items: center;
    justify-content: center;
    animation: zoomDual 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}
.lightbox-dual-content img {
    max-width: 48%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    border: 3px solid var(--gold);
    box-shadow: 0 0 50px rgba(0,0,0,0.6);
    background: #fff;
    padding: 4px; /* inner white border */
}

@keyframes zoomDual {
    from { transform: scale(0.7) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .citations-open-book { width: 100%; flex-direction: column; perspective: none; }
    .page-side { width: 80%; margin: 0 auto; border-radius: 8px !important; border: 3px solid var(--gold) !important; margin-bottom: 10px; }
    .citations-open-book:hover .page-left, .citations-open-book:hover .page-right { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    
    .lightbox-dual-content {
        flex-direction: column;
        overflow-y: auto;
        padding: 60px 0 20px;
        height: 100vh;
        width: 100vw;
        gap: 20px;
        align-items: center;
        justify-content: flex-start;
    }
    .lightbox-dual-content img {
        max-width: 90%;
        max-height: none;
        flex-shrink: 0;
    }
    .lightbox-close { right: 20px; top: 15px; background: rgba(0,0,0,0.5); border-radius: 50%; width: 40px; height: 40px; display:flex; align-items:center; justify-content:center; }
}

/* ============================================================
   IPHONE LIQUID GLASS HOVER THEME
   ============================================================ */
/* Global transition for interactive elements */
a, button, input, textarea, select, .service-card, .portfolio-card, .mv-card, .contact-card, .why-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* iPhone Glassmorphism on Hover for Divs/Cards */
.service-card:hover,
.portfolio-card:hover,
.contact-card:hover,
.mv-card:hover,
.why-card:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px) saturate(180%) brightness(1.15) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    box-shadow: 
        0 12px 36px rgba(0, 0, 0, 0.2), 
        inset 0 0 10px rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-4px); /* Removed glitching scale factor */
}

/* Very prominent CLICK (Select) state for Divs/Cards */
.service-card:active,
.portfolio-card:active,
.contact-card:active,
.mv-card:active,
.why-card:active {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(247, 195, 37, 0.6) !important; /* Gold flash when selected */
    transform: scale(0.98);
}

/* Form Inputs & Controls */
input:hover,
textarea:hover,
select:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(18px) saturate(180%) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) brightness(1.1) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}
input:focus,
textarea:focus,
select:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(247, 195, 37, 0.3) !important;
}

/* Nav Links & Outline Buttons */
.btn-outline:hover,
.nav-link:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(14px) saturate(180%) brightness(1.15) !important;
    -webkit-backdrop-filter: blur(14px) saturate(180%) brightness(1.15) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 0 4px rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}
.btn-outline:active,
.nav-link:active {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: scale(0.95);
}

/* Slight bright edge for gold buttons on hover */
.btn-gold:hover, .nav-cta:hover {
    backdrop-filter: blur(12px) saturate(200%) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(12px) saturate(200%) brightness(1.1) !important;
    box-shadow: 
        0 8px 24px rgba(247, 195, 37, 0.4),
        inset 0 0 12px rgba(255, 255, 255, 0.3) !important;
}
.btn-gold:active, .nav-cta:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(247, 195, 37, 0.3) !important;
}

/* Overriding and disabling the custom cursor that was previously added */
body.hide-default-cursor, 
body.hide-default-cursor * {
    cursor: auto !important;
}
.liquid-glass-cursor {
    display: none !important;
}

/* ============================================================
   BOOK SUBJECT STEP - Order Page
   ============================================================ */
.book-subject-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-gold);
}
.book-subject-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    gap: 12px !important;
    margin-bottom: 28px;
}
.book-subject-grid .service-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.book-subject-grid .service-option input[type="checkbox"]:checked + .service-option-card {
    border-color: var(--gold) !important;
    background: rgba(247, 195, 37, 0.12) !important;
    box-shadow: 0 0 0 2px var(--gold), 0 8px 24px rgba(247,195,37,0.2);
    color: var(--gold);
}
.book-subject-grid .service-option input[type="checkbox"]:checked + .service-option-card i {
    color: var(--gold);
}
.step-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 6px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--text-muted); font-size: 0.85rem; white-space: nowrap; }
.summary-row strong { color: var(--white); font-size: 0.9rem; text-align: right; }

/* --- 3D Rotating Gifas Box --- */
.portfolio-item.gifas-portfolio-item {
    overflow: visible;
    background: transparent;
    border: none;
}
.portfolio-item.gifas-portfolio-item .portfolio-overlay {
    z-index: 10;
    pointer-events: none;
}
.portfolio-item.gifas-portfolio-item .portfolio-zoom {
    pointer-events: auto;
}
.portfolio-item.gifas-portfolio-item:hover .portfolio-overlay {
    background: rgba(0,0,0,0.6);
}

.gifas-box-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    z-index: 2; 
    border-radius: var(--radius-md);
}

.gifas-box {
    width: 150px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: rotateY(-15deg) rotateX(5deg);
    cursor: pointer;
}

.portfolio-item.gifas-portfolio-item:hover .gifas-box {
    transform: rotateY(345deg) rotateX(5deg);
}

.box-face {
    position: absolute;
    top: 50%;
    left: 50%;
    box-sizing: border-box;
    backface-visibility: hidden;
}

.box-face.front {
    width: 150px; height: 250px;
    margin-top: -125px; margin-left: -75px;
    transform: translateZ(40px);
    background-image: url('assets/gifas_mixture.png');
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
}

.box-face.back {
    width: 150px; height: 250px;
    margin-top: -125px; margin-left: -75px;
    transform: rotateY(180deg) translateZ(40px);
    background-image: url('assets/gifas_mixture.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.85);
}

.box-face.left {
    width: 80px; height: 250px;
    margin-top: -125px; margin-left: -40px;
    transform: rotateY(-90deg) translateZ(75px);
    background: linear-gradient(to bottom, #d27b40, #cf3157, #599ad2, #397a4a);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255,255,255,0.2);
}

.box-face.right {
    width: 80px; height: 250px;
    margin-top: -125px; margin-left: -40px;
    transform: rotateY(90deg) translateZ(75px);
    background: linear-gradient(to bottom, #d27b40, #cf3157, #599ad2, #397a4a);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255,255,255,0.2);
}

.box-face.top {
    width: 150px; height: 80px;
    margin-top: -40px; margin-left: -75px;
    transform: rotateX(90deg) translateZ(125px);
    background: #d27b40;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.box-face.bottom {
    width: 150px; height: 80px;
    margin-top: -40px; margin-left: -75px;
    transform: rotateX(-90deg) translateZ(125px);
    background: #111;
}

/* Ground shadow */
.gifas-box-shadow {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) rotateX(70deg);
    width: 160px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    filter: blur(10px);
    border-radius: 50%;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}
.portfolio-item.gifas-portfolio-item:hover .gifas-box-shadow {
    transform: translateX(-50%) rotateX(70deg) scale(0.85);
    background: rgba(0,0,0,0.6);
}

/* ============================================================
   PRODUCT SHOWCASE (Vertical Image Framing)
   ============================================================ */
.portfolio-item.product-showcase {
    background: var(--navy-card);
    border: 1px solid var(--border);
}
.portfolio-item.product-showcase .product-img-wrap {
    width: 100%; height: 320px; 
    background: radial-gradient(circle at center, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.4) 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    overflow: hidden;
}
.portfolio-item.product-showcase img {
    height: 100%; width: auto; 
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.65));
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-origin: bottom center;
}
.portfolio-item.product-showcase:hover img {
    transform: scale(1.08) translateY(-8px);
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.85));
}



@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-mid);
    flex-direction: column;
    padding: 80px 30px 40px;
    transition: var(--transition);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    align-items: flex-start;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-link {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
  }
  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .hamburger {
    z-index: 1000;
  }
}
@media (max-width: 768px) {
  /* Ensure titles fit better on mobile */
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.1;
  }
  .section-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .stat-num {
    font-size: 2rem;
  }

  /* Ensure padding and layout is mobile-friendly */
  .hero {
    padding: 100px 16px 60px;
  }
  .section {
    padding: 60px 0;
  }
  .hero-stats {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-radius: var(--radius-lg);
  }
  .stat-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0));
  }
  .stat {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .hero-badge {
    padding: 8px 16px;
    font-size: 0.7rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .map-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-split-container {
    flex-direction: column;
    height: auto;
  }
  .split-panel {
    min-height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  /* Fix any remaining overflow or alignment issues on very small screens */
  .services-split-container {
    border-radius: var(--radius-sm);
  }
  .split-panel {
    padding: 30px 15px;
    min-height: 280px;
  }
  .footer-links-col, .footer-contact-col {
    text-align: center;
  }
  .footer-links-col ul, .footer-contact-col ul {
    align-items: center;
  }
  .footer-contact-col li {
    justify-content: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo-img {
    margin: 0 auto;
  }
  .footer-social {
    justify-content: center;
  }
}

/* Additional fixes for specific pages on mobile */
@media (max-width: 768px) {
  /* Order Page fixes */
  .order-platform-inner {
    padding: 30px 20px;
  }
  .order-fields-grid {
    grid-template-columns: 1fr;
  }
  .service-selector-grid {
    grid-template-columns: 1fr 1fr;
  }
  .order-progress {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  /* Services Page fixes */
  .services-tabs button {
    width: 100%;
    margin-bottom: 10px;
  }
  /* Portfolio Page fixes */
  .portfolio-filters {
    gap: 8px;
  }
  .filter-btn {
    width: calc(50% - 4px);
    padding: 10px 0;
  }
  .order-step-nav .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .service-selector-grid {
    grid-template-columns: 1fr;
  }
}
/* Fix hamburger display for all pages */
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
  }
}
@media (max-width: 600px) {
  .citations-wrapper {
    height: auto !important;
    min-height: 400px;
    margin-bottom: 40px;
  }
  .citation-img {
    position: relative !important;
    transform: none !important;
    animation: none !important;
    margin-bottom: 20px;
  }
  .citations-container {
    flex-direction: column;
  }
  .citations-wrapper:hover .citation-1,
  .citations-wrapper:hover .citation-2 {
    transform: none !important;
  }
}
@media (max-width: 768px) {
  /* Fix slider overlap/speed on mobile */
  .review-wall {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }
  .review-card {
    width: 260px !important;
    padding: 20px 16px !important;
    white-space: normal;
  }
  .review-text {
    font-size: 0.85rem !important;
  }
  .review-track {
    animation-duration: 25s; /* Speed up a bit for mobile but keep it smooth */
  }
}

@media (max-width: 768px) {
  .review-wall {
    padding: 10px 0;
  }
  .review-track {
    animation-duration: 35s !important; /* smooth and readable speed */
    padding: 12px 0 24px !important;
  }
  .review-card {
    width: 280px !important;
    margin-right: 16px;
    flex: 0 0 auto;
  }
}
@media (max-width: 480px) {
  @keyframes driftReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 8px)); }
  }
}
@media (max-width: 600px) {
    /* Absolute fix for the citations issue, overriding everything else */
    .citations-wrapper {
        display: block !important;
        height: auto !important;
        perspective: none !important;
        transform: none !important;
        margin-bottom: 40px !important;
        position: relative !important;
    }
    .citations-open-book {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        height: auto !important;
        perspective: none !important;
        transform: none !important;
        animation: none !important;
    }
    .page-side {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
        aspect-ratio: auto !important;
        margin: 0 auto !important;
        transform: none !important;
        animation: none !important;
    }
    .page-side img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        transform: none !important;
    }
    /* Completely kill the dual flip hint on mobile */
    .dual-flip-hint {
        display: none !important;
    }
    /* Stop hovering from making it go crazy */
    .citations-open-book:hover .page-left,
    .citations-open-book:hover .page-right {
        transform: none !important;
        box-shadow: 0 15px 45px rgba(0,0,0,0.5) !important;
    }
    .citations-open-book:hover .page-side img {
        transform: none !important;
    }
}
