/* =============================================
   AC ASOCIADOS – Agencia Aduanera
   Stylesheet Principal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:       #0b1f3a;
  --navy-dark:  #071529;
  --navy-mid:   #122847;
  --gold:       #c8a75d;
  --gold-light: #dfc085;
  --gold-dark:  #a88840;
  --white:      #ffffff;
  --gray-light: #f5f6f8;
  --gray-mid:   #e8eaed;
  --gray-text:  #6b7280;
  --text-dark:  #1a2940;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Montserrat', sans-serif;

  --shadow-sm:  0 2px 8px rgba(11,31,58,.12);
  --shadow-md:  0 6px 24px rgba(11,31,58,.18);
  --shadow-lg:  0 12px 48px rgba(11,31,58,.24);
  --radius:     6px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { font-size: .97rem; color: #3d4f63; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.gold { color: var(--gold); }
.divider-gold {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.divider-gold.center { margin: 1rem auto 1.5rem; }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-dark { background: var(--navy); }
.section-gray { background: var(--gray-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,167,93,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(200,167,93,.2);
  padding: .5rem 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
}
.topbar-inner a { color: var(--gold-light); transition: color var(--transition); }
.topbar-inner a:hover { color: var(--white); }
.topbar-contacts { display: flex; gap: 1.5rem; }
.topbar-contacts span { display: flex; align-items: center; gap: .4rem; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-img {
  height: 46px;
  width: auto;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.logo-text span {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
nav { display: flex; align-items: center; gap: .25rem; }
.nav-link {
  padding: .5rem .85rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-light);
}
.nav-link.active { color: var(--gold-dark); }

.nav-cta { margin-left: .75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  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; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: .75rem 1rem; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 800px;
  overflow: hidden;
  background: var(--navy-dark);
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform .75s cubic-bezier(.4,0,.2,1);
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1.06); }

/* Slide backgrounds using CSS gradients (placeholders for real photos) */
.slide-1 .slide-bg {
  background-image:
    linear-gradient(135deg, rgba(7,21,41,.88) 0%, rgba(11,31,58,.72) 50%, rgba(18,40,71,.6) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='500'%3E%3Crect fill='%230b1f3a' width='800' height='500'/%3E%3Cpath fill='none' stroke='%23c8a75d' stroke-width='.4' opacity='.3' d='M0 100h800M0 200h800M0 300h800M0 400h800M100 0v500M200 0v500M300 0v500M400 0v500M500 0v500M600 0v500M700 0v500'/%3E%3C/svg%3E");
}
.slide-2 .slide-bg {
  background-image:
    linear-gradient(135deg, rgba(7,21,41,.85) 0%, rgba(11,31,58,.68) 60%, rgba(18,40,71,.55) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='500'%3E%3Crect fill='%23122847' width='800' height='500'/%3E%3Ccircle cx='400' cy='250' r='200' fill='none' stroke='%23c8a75d' stroke-width='.3' opacity='.25'/%3E%3Ccircle cx='400' cy='250' r='150' fill='none' stroke='%23c8a75d' stroke-width='.3' opacity='.2'/%3E%3C/svg%3E");
}
.slide-3 .slide-bg {
  background-image:
    linear-gradient(135deg, rgba(7,21,41,.9) 0%, rgba(11,31,58,.75) 50%, rgba(18,40,71,.65) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='500'%3E%3Crect fill='%23071529' width='800' height='500'/%3E%3Cpolygon fill='none' stroke='%23c8a75d' stroke-width='.3' opacity='.2' points='400,50 700,250 400,450 100,250'/%3E%3C/svg%3E");
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: 760px;
  margin-left: calc((100% - 1200px) / 2);
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease .2s, transform .6s ease .2s;
}
@media (max-width: 1240px) { .slide-content { margin-left: 0; } }
.slide.active .slide-content { opacity: 1; transform: translateY(0); }

.slide-content .section-label { color: var(--gold); }
.slide-content h1 { color: var(--white); margin-bottom: 1.25rem; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.slide-content p  { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 580px; margin-bottom: 2rem; }
.slide-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%; z-index: 10;
  transform: translateY(-50%);
  background: rgba(11,31,58,.6);
  border: 1px solid rgba(200,167,93,.4);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.2rem;
}
.slider-arrow:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .6rem;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 24px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy));
  border-bottom: 2px solid var(--gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,.1);
}
.stat-item {
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .4rem;
}

/* ── SERVICES SECTION ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  padding: 2.25rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(200,167,93,.12), rgba(200,167,93,.06));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-card h3 { margin-bottom: .75rem; }
.service-card p  { font-size: .9rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .6rem; }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  aspect-ratio: 4/3;
}
.why-img-inner {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
}
.why-img-badge {
  text-align: center;
  color: var(--white);
}
.why-img-badge .big {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.why-img-badge small {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.why-img-accent {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 120px; height: 120px;
  background: var(--gold);
  border-radius: 12px 0 12px 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(200,167,93,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.why-feature-text h4 { margin-bottom: .2rem; font-size: .95rem; }
.why-feature-text p  { font-size: .85rem; }

/* ── CLIENTS ── */
.clients-section { background: var(--gray-light); }
.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.clients-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.client-logo {
  flex: 0 0 160px;
  height: 140px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  font-family: var(--font-title);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  user-select: none;
}
.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.client-logo:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(200,167,93,.2); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--gray-mid);
  position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-title);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
}
.testimonial-card p { font-size: .9rem; margin: 1.5rem 0 1.25rem; font-style: italic; }
.testimonial-meta { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.testimonial-role { font-size: .78rem; color: var(--gray-text); }
.stars { color: var(--gold); font-size: .85rem; margin-bottom: .25rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(200,167,93,.2);
  border-bottom: 1px solid rgba(200,167,93,.2);
  text-align: center;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath fill='none' stroke='%23c8a75d' stroke-width='.3' opacity='.12' d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
}
.cta-band h2 { color: var(--white); position: relative; margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 2rem; position: relative; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  border-top: 2px solid rgba(200,167,93,.25);
  color: rgba(255,255,255,.7);
}
.footer-top {
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand .logo-text strong,
.footer-brand .logo-text span { color: var(--white); }
.footer-brand p { font-size: .85rem; max-width: 280px; }
.footer-heading {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(200,167,93,.3);
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.65);
}
.footer-contact li .icon { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold-light); }
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .6rem;
}
.wa-bubble {
  background: var(--white);
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 20px 20px 0 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  opacity: 0;
  transform: translateY(8px) scale(.95);
  transition: var(--transition);
  white-space: nowrap;
}
.wa-float:hover .wa-bubble { opacity: 1; transform: translateY(0) scale(1); }
.wa-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--transition);
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: wa-pulse 2.5s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .5; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* ── SERVICES PAGE ── */
.service-detail {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 5px 1fr;
}
.service-detail-accent { background: linear-gradient(180deg, var(--gold), var(--gold-light)); }
.service-detail-body { padding: 2.5rem; }
.service-detail-body h3 { margin-bottom: .75rem; }
.service-detail ul {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .5rem;
}
.service-detail ul li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  color: #3d4f63;
}
.service-detail ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
}

/* ── ABOUT PAGE ── */
.about-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 6rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath fill='none' stroke='%23c8a75d' stroke-width='.3' opacity='.1' d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
}
.about-hero h1, .about-hero p { color: var(--white); position: relative; }
.about-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin: .75rem auto 0; }

.director-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--gray-mid);
}
.director-photo {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  gap: 1rem;
}
.director-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(200,167,93,.15);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}
.director-title {
  text-align: center;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.director-name {
  text-align: center;
  color: var(--white);
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
}
.director-info { padding: 2.5rem; }
.director-info h3 { margin-bottom: 1rem; }
.director-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.5rem;
}
.director-spec {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: #3d4f63;
  background: var(--gray-light);
  padding: .6rem .9rem;
  border-radius: var(--radius);
}
.director-spec::before { content: '◆'; color: var(--gold); font-size: .6rem; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--gray-light);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,167,93,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--gray-mid);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(200,167,93,.15); }
.contact-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: .9rem; margin-bottom: .2rem; }
.contact-info-text p  { font-size: .85rem; }

/* ── BLOG PAGE ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.blog-category-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 20px;
}
.blog-card-body { padding: 1.75rem; }
.blog-meta { display: flex; gap: 1rem; font-size: .75rem; color: var(--gray-text); margin-bottom: .75rem; }
.blog-card-body h3 { margin-bottom: .6rem; font-size: 1.1rem; }
.blog-card-body p  { font-size: .88rem; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: .6rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath fill='none' stroke='%23c8a75d' stroke-width='.3' opacity='.1' d='M0 30h60M30 0v60'/%3E%3C/svg%3E");
}
.page-hero h1, .breadcrumb { position: relative; }
.page-hero h1 { color: var(--white); }
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .5rem;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 6.5rem; right: 2rem;
  width: 42px; height: 42px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid rgba(200,167,93,.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  font-size: 1rem;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--gold); color: var(--navy); }

/* ── SECTION HEADER ── */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1rem; }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .why-img    { max-height: 300px; }
  .director-card { grid-template-columns: 1fr; }
  .director-photo { padding: 2rem; flex-direction: row; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links-desktop, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .topbar-inner .topbar-contacts { display: none; }
  .director-photo { flex-direction: column; text-align: center; }
  .director-specs { grid-template-columns: 1fr; }
  .slide-content { padding: 2rem 1.5rem; }
  .slide-btns { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 0; }
}
