/* ==========================================================
   ACI FILM FESTIVAL — GLOBAL DESIGN SYSTEM
   Production-Ready CSS
   ========================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colors */
  --aci-white: #FFFFFF;
  --aci-offwhite: #FAFAF7;
  --aci-cream: #F5F3EE;
  --aci-dark: #0D0D0D;
  --aci-charcoal: #1A1A1A;
  --aci-text: #2D2D2D;
  --aci-text-muted: #6B6B6B;
  --aci-text-light: #999999;
  --aci-gold: #C9A84C;
  --aci-gold-dark: #A68B3A;
  --aci-gold-light: #E8D48B;
  --aci-gold-bg: rgba(201,168,76,0.08);
  --aci-border: #E8E5DE;
  --aci-border-light: #F0EDE6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --section-pad-mobile: 60px;
  --container-max: 1280px;
  --container-narrow: 800px;

  /* Misc */
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--aci-text);
  background: var(--aci-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}
ul, ol { list-style: none; }

/* ---------- Container ---------- */
.aci-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}
.aci-container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Section ---------- */
.aci-section {
  padding: var(--section-pad) 0;
  position: relative;
}
.aci-section--alt {
  background: var(--aci-offwhite);
}
.aci-section--dark {
  background: var(--aci-dark);
  color: var(--aci-white);
}
.aci-section--dark .aci-text-muted { color: rgba(255,255,255,0.6); }
.aci-section--dark .aci-heading { color: var(--aci-white); }

/* ---------- Typography ---------- */
.aci-heading {
  font-family: var(--font-heading);
  color: var(--aci-charcoal);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.aci-h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 800; }
.aci-h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
.aci-h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 600; }
.aci-h4 { font-size: 1.15rem; font-weight: 600; }

.aci-text-muted { color: var(--aci-text-muted); }
.aci-text-gold { color: var(--aci-gold); }

.aci-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aci-gold);
  margin-bottom: 16px;
}
.aci-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--aci-gold);
  margin-right: 10px;
  vertical-align: middle;
}

.aci-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--aci-text-muted);
  max-width: 640px;
}

.aci-section-header {
  text-align: center;
  margin-bottom: 70px;
}
.aci-section-header .aci-lead {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.aci-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.aci-btn--primary {
  background: var(--aci-gold);
  color: var(--aci-white);
  box-shadow: var(--shadow-gold);
}
.aci-btn--primary:hover {
  background: var(--aci-charcoal);
  color: var(--aci-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.aci-btn--white {
  background: #FFFFFF;
  color: var(--aci-charcoal);
  border: 2px solid var(--aci-border);
}
.aci-btn--white:hover {
  border-color: var(--aci-gold);
  color: var(--aci-gold);
  background: var(--aci-gold-bg);
}
.aci-btn--outline {
  background: transparent;
  color: var(--aci-charcoal);
  border: 2px solid var(--aci-border);
}
.aci-btn--outline:hover {
  border-color: var(--aci-gold);
  color: var(--aci-gold);
  background: var(--aci-gold-bg);
}
.aci-btn--dark {
  background: var(--aci-charcoal);
  color: var(--aci-white);
}
.aci-btn--dark:hover {
  background: var(--aci-gold);
  color: var(--aci-white);
  transform: translateY(-2px);
}
.aci-btn--white {
  background: var(--aci-white);
  color: var(--aci-charcoal);
}
.aci-btn--white:hover {
  background: var(--aci-gold);
  color: var(--aci-white);
  transform: translateY(-2px);
}
.aci-btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}
.aci-btn--lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

/* ---------- Grid Helpers ---------- */
.aci-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.aci-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.aci-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.aci-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.aci-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.aci-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.aci-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aci-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--aci-charcoal);
  letter-spacing: -0.02em;
}
.aci-logo span {
  color: var(--aci-gold);
}
.aci-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.aci-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--aci-text-muted);
  position: relative;
}
.aci-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--aci-gold);
  transition: var(--transition-fast);
}
.aci-nav a:hover,
.aci-nav a.active {
  color: var(--aci-charcoal);
}
.aci-nav a:hover::after,
.aci-nav a.active::after {
  width: 100%;
}
.aci-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu Toggle */
.aci-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}
.aci-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--aci-charcoal);
  transition: var(--transition-fast);
  border-radius: 2px;
}
.aci-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.aci-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.aci-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
   
.hero-banner{
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    margin-top: 6.5%;
}  

.banner-image img{
    width: 100%;
    padding: 0;
    margin: 0;
} 

.aci-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--aci-offwhite);
}
.aci-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.aci-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aci-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(250,250,247,0.85) 50%, rgba(255,255,255,0.7) 100%);
  z-index: 2;
}
.aci-hero__content {
  position: relative;
  z-index: 3;
  padding-top: 100px;
}
.aci-hero__date {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--aci-white);
  border: 1px solid var(--aci-border);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--aci-text-muted);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.aci-hero__date .dot {
  width: 8px;
  height: 8px;
  background: var(--aci-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.aci-hero h1 {
  margin-bottom: 24px;
}
.aci-hero h1 .highlight {
  color: var(--aci-gold);
  position: relative;
}
.aci-hero__desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--aci-text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}
.aci-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.aci-hero__stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--aci-border);
}
.aci-hero__stat h3 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--aci-charcoal);
  line-height: 1;
}
.aci-hero__stat p {
  font-size: 0.85rem;
  color: var(--aci-text-muted);
  margin-top: 4px;
}

/* ============================================================
   CARDS
   ============================================================ */
.aci-card {
  background: var(--aci-white);
  border: 1px solid var(--aci-border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  position: relative;
}
.aci-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--aci-gold);
}
.aci-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--aci-gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.aci-card__tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--aci-gold-bg);
  color: var(--aci-gold-dark);
  margin-bottom: 16px;
}
.aci-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 12px;
}
.aci-card p {
  color: var(--aci-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.aci-card ul {
  margin-top: 20px;
}
.aci-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--aci-border-light);
  color: var(--aci-text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.aci-card ul li:last-child { border: none; }
.aci-card ul li .check {
  color: var(--aci-gold);
  font-weight: 700;
}

/* Pricing Card */
.aci-price-card {
  text-align: center;
}
.aci-price-card .price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--aci-charcoal);
  line-height: 1;
  margin-bottom: 8px;
}
.aci-price-card .price-sub {
  font-size: 0.9rem;
  color: var(--aci-text-muted);
  margin-bottom: 32px;
}
.aci-price-card.featured {
  border: 2px solid var(--aci-gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}
.aci-price-card.featured:hover {
  transform: scale(1.06);
}
.aci-price-card.featured .aci-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--aci-gold);
  color: var(--aci-white);
  padding: 6px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   STATS / COUNTER BAR
   ============================================================ */
.aci-stats-bar {
  background: var(--aci-charcoal);
  padding: 60px 0;
}
.aci-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.aci-stat-item h3 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--aci-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.aci-stat-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* ============================================================
   SCHEDULE / TIMELINE
   ============================================================ */
.aci-schedule-card {
  background: var(--aci-white);
  border: 1px solid var(--aci-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.aci-schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.aci-schedule-card__header {
  background: var(--aci-charcoal);
  padding: 24px 32px;
  color: var(--aci-white);
}
.aci-schedule-card__header .day-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aci-gold);
  margin-bottom: 4px;
}
.aci-schedule-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}
.aci-schedule-card__body {
  padding: 32px;
}
.aci-schedule-card__body li {
  padding: 12px 0;
  border-bottom: 1px solid var(--aci-border-light);
  font-size: 0.95rem;
  color: var(--aci-text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.aci-schedule-card__body li:last-child { border: none; }
.aci-schedule-card__body li .bullet {
  width: 6px;
  height: 6px;
  background: var(--aci-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   WORKSHOP PILLS
   ============================================================ */
.aci-workshop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.aci-workshop-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--aci-white);
  border: 1px solid var(--aci-border);
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  cursor: default;
}
.aci-workshop-pill:hover {
  border-color: var(--aci-gold);
  background: var(--aci-gold-bg);
  transform: translateY(-2px);
}
.aci-workshop-pill .icon {
  font-size: 1.4rem;
}

/* ============================================================
   PATRON PROFILES
   ============================================================ */
.aci-patron {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.aci-patron:last-child { margin-bottom: 0; }
.aci-patron.reverse {
  grid-template-columns: 1.5fr 1fr;
}
.aci-patron.reverse .aci-patron__image {
  order: 2;
}
.aci-patron__image {
  position: relative;
}
.aci-patron__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.aci-patron__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--aci-gold);
  border-radius: var(--radius);
  z-index: -1;
}
.aci-patron__info .aci-label {
  margin-bottom: 12px;
}
.aci-patron__info h2 {
  margin-bottom: 8px;
}
.aci-patron__info .role {
  font-size: 1.05rem;
  color: var(--aci-gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.aci-patron__info p {
  color: var(--aci-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.aci-patron__awards {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.aci-patron__awards .award-tag {
  padding: 6px 16px;
  background: var(--aci-gold-bg);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--aci-gold-dark);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.aci-cta-banner {
  background: var(--aci-charcoal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aci-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   TRANSLATOR WIDGET (Glassmorphism Re-design)
   ============================================================ */
#aci-translate-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  font-family: var(--font-body);
}

.aci-translate-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--aci-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.aci-translate-btn:hover {
  background: var(--aci-gold);
  color: var(--aci-white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}

.aci-translate-dropdown {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 0;
  width: 280px;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--aci-border);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom left;
}

.aci-translate-dropdown.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
}

.aci-translate-search-wrap {
  margin-bottom: 12px;
}

.aci-translate-search {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--aci-border);
  background: var(--aci-offwhite);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s;
}

.aci-translate-search:focus {
  border-color: var(--aci-gold);
  background: #fff;
  box-shadow: 0 0 0 3px var(--aci-gold-bg);
}

.aci-lang-list {
  max-height: 280px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 4px;
}

.aci-lang-list::-webkit-scrollbar {
  width: 6px;
}
.aci-lang-list::-webkit-scrollbar-thumb {
  background: #dcdcdc;
  border-radius: 6px;
}

.aci-lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--aci-charcoal);
  transition: all 0.2s ease;
}

.aci-lang-option:hover {
  background: var(--aci-gold-bg);
  color: var(--aci-gold-dark);
}

.aci-lang-option .flag {
  font-size: 1.2rem;
}
.aci-lang-option .name {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hide Google Translate UI elements */
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
div.skiptranslate.goog-te-gadget,
body > .skiptranslate,
body > .skiptranslate ~ iframe.skiptranslate {
  display: none !important;
}
body { top: 0 !important; }

@media (max-width: 768px) {
  #aci-translate-widget {
    bottom: 16px;
    left: 16px;
  }
  .aci-translate-dropdown {
    width: 250px;
  }
}.aci-cta-banner h2 {
  color: var(--aci-white);
  margin-bottom: 16px;
}
.aci-cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.aci-cta-banner .aci-btn {
  position: relative;
  z-index: 2;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.aci-faq-item {
  border-bottom: 1px solid var(--aci-border);
  padding: 0;
}
.aci-faq-item:first-child {
  border-top: 1px solid var(--aci-border);
}
.aci-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--aci-charcoal);
  text-align: left;
  transition: var(--transition-fast);
}
.aci-faq-question:hover { color: var(--aci-gold); }
.aci-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--aci-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--aci-text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.aci-faq-item.active .aci-faq-icon {
  background: var(--aci-gold);
  border-color: var(--aci-gold);
  color: var(--aci-white);
  transform: rotate(45deg);
}
.aci-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}
.aci-faq-item.active .aci-faq-answer {
  max-height: 500px;
}
.aci-faq-answer p {
  padding: 0 0 24px 0;
  color: var(--aci-text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.aci-form {
  background: var(--aci-white);
  border: 1px solid var(--aci-border);
  border-radius: var(--radius);
  padding: 48px;
}
.aci-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.aci-form-group {
  margin-bottom: 20px;
}
.aci-form-group.full-width {
  grid-column: 1 / -1;
}
.aci-form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--aci-charcoal);
  margin-bottom: 8px;
}
.aci-form-group input,
.aci-form-group select,
.aci-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--aci-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--aci-text);
  background: var(--aci-offwhite);
  transition: var(--transition-fast);
  outline: none;
}
.aci-form-group input:focus,
.aci-form-group select:focus,
.aci-form-group textarea:focus {
  border-color: var(--aci-gold);
  background: var(--aci-white);
  box-shadow: 0 0 0 3px var(--aci-gold-bg);
}
.aci-form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.aci-form-group input::placeholder,
.aci-form-group textarea::placeholder {
  color: var(--aci-text-light);
}
.aci-form-submit {
  margin-top: 12px;
}
.aci-form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.aci-form-success.show {
  display: block;
}
.aci-form-success .check-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--aci-gold-bg);
  color: var(--aci-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px auto;
}

/* ============================================================
   PARTNERS / LOGO MARQUEE
   ============================================================ */
.aci-partners-track {
  display: flex;
  animation: marquee 30s linear infinite;
  gap: 60px;
  align-items: center;
}
.aci-partners-track img {
  height: 100px;
  opacity: 0.75;
  filter: grayscale(1);
  transition: var(--transition-fast);
}
.aci-partners-track img:hover {
  opacity: 1;
  filter: grayscale(0);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.aci-marquee-wrapper {
  overflow: hidden;
  padding: 40px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.aci-footer {
  background: var(--aci-charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.aci-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.aci-footer__brand .aci-logo {
  color: var(--aci-white);
  margin-bottom: 16px;
  display: block;
}
.aci-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
.aci-footer h4 {
  font-family: var(--font-heading);
  color: var(--aci-white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.aci-footer ul li {
  margin-bottom: 12px;
}
.aci-footer ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.aci-footer ul li a:hover {
  color: var(--aci-gold);
}
.aci-footer__contact p {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.aci-footer__contact p .icon {
  color: var(--aci-gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.aci-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.aci-footer__social {
  display: flex;
  gap: 16px;
}
.aci-footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.aci-footer__social a:hover {
  background: var(--aci-gold);
  border-color: var(--aci-gold);
  color: var(--aci-white);
}

/* ============================================================
   PAGE HERO (non-home pages)
   ============================================================ */
.aci-page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--aci-offwhite);
  position: relative;
}
.aci-page-hero .aci-label { margin-bottom: 16px; }
.aci-page-hero h1 { margin-bottom: 16px; }
.aci-page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--aci-text-muted);
  font-size: 1.15rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .aci-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .aci-patron { grid-template-columns: 1fr; gap: 40px; }
  .aci-patron.reverse { grid-template-columns: 1fr; }
  .aci-patron.reverse .aci-patron__image { order: 0; }
  .aci-patron__image img { max-width: 400px; margin: 0 auto; }
  .aci-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 60px;
  }
  .aci-container, .aci-container-narrow {
    padding: 0 20px;
  }
  
  /* Mobile Navigation */
  .aci-menu-toggle { display: flex; }
  .aci-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--aci-white);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
    z-index: 999;
  }
  .aci-nav.open { right: 0; }
  .aci-nav a { font-size: 1.1rem; }
  .aci-header__cta { display: none; }
  
  /* Mobile grids */
  .aci-grid-2, .aci-grid-3, .aci-grid-4 {
    grid-template-columns: 1fr;
  }
  .aci-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .aci-hero__stats { flex-direction: column; gap: 24px; }
  .aci-form { padding: 28px; }
  .aci-form-grid { grid-template-columns: 1fr; }
  .aci-footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .aci-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  /* Price card featured override */
  .aci-price-card.featured {
    transform: scale(1);
  }
  .aci-price-card.featured:hover {
    transform: scale(1);
  }
  .hero-banner{
    margin-top: 15% !important;
  }
}

@media (max-width: 480px) {
  .aci-stats-bar__grid { grid-template-columns: 1fr; gap: 30px; }
  .aci-hero__actions { flex-direction: column; }
  .aci-hero__actions .aci-btn { width: 100%; justify-content: center; }
  .hero-banner{
    margin-top: 10% !important;
}
}
