/* Custom CSS for Adam & Eve Robotic Coffee Landing Page */

/* --- CSS VARIABLES & THEMING --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --color-gold: #c4a265;
  --color-gold-hover: #d9b77a;
  --color-gold-dark: #a9874a;
  
  --color-dark-bg: #0d0d0d;
  --color-dark-card: #151515;
  --color-light-bg: #f8f9fa;
  --color-white: #ffffff;
  
  --color-text-dark: #111111;
  --color-text-light: #ffffff;
  --color-text-muted-dark: #666666;
  --color-text-muted-light: #a5a5a5;
  
  --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* --- RESET & GLOBAL STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  display: block;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-outline {
  border: 1.5px solid var(--color-gold);
  color: #ffffff;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
}

.btn-outline .btn-arrow {
  transition: transform 0.3s ease;
}
.btn-outline:hover .btn-arrow,
.btn-long-clickable:hover .btn-arrow {
  transform: translateX(4px);
}
.btn-long-clickable {
  padding: 16px 48px !important;
  min-width: 320px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
  border: 1.5px solid var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  border-color: var(--color-gold-hover);
  transform: translateY(-2px);
}

/* --- SCROLL ANIMATIONS --- */
.scroll-anim {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-anim.active {
  opacity: 1;
  transform: none;
}

/* --- HEADER / NAVBAR --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-normal);
  background: transparent;
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Design */
.logo-link {
  display: flex;
  flex-direction: column;
  color: var(--color-text-light);
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  margin-top: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--color-text-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-gold);
  transition: var(--transition-normal);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta-btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-dark-bg);
  background-color: var(--color-gold);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
}

.header-cta-btn:hover {
  background-color: var(--color-gold-hover);
  transform: scale(1.03);
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--color-text-light);
  transition: var(--transition-normal);
}

.mobile-cta-btn {
  display: none !important;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: #0d0d0d; /* Fallback background color */
  display: flex;
  align-items: center;
  padding-top: 100px;
  width: 100%;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.4) 0%, rgba(13, 13, 13, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}


.hero-sound-toggle {
  position: absolute;
  bottom: 40px;
  right: 5%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 42px; /* Circular small size */
  height: 42px; /* Circular small size */
  border-radius: 50%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-sound-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-sound-toggle svg {
  display: block;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px; /* Balanced height for smooth but non-intrusive transition */
  background: linear-gradient(180deg, transparent 20%, rgba(255, 255, 255, 0.4) 60%, var(--color-white) 100%);
  z-index: 5;
  pointer-events: none;
}


.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(196, 162, 101, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
}

.hero-content-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 150px);
  position: relative;
  z-index: 10;
}

.hero-text-wrapper {
  max-width: 1000px;
  margin: auto; /* Centered vertically and horizontally */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(50px); /* Shifts the centered content slightly downward */
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.hero-title .accent-text {
  color: var(--color-gold);
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 650px;
}


/* --- BRANDS SECTION --- */
.brands-section {
  background-color: var(--color-white);
  padding: 60px 0;
  width: 100%;
}

.brands-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.brands-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-muted-dark);
  text-align: center;
  margin-bottom: 40px;
}

.brands-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  padding: 10px 0;
}

/* Fades on the edges for premium look */
.brands-marquee-container::before,
.brands-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.brands-marquee-track {
  display: flex;
  width: max-content;
  gap: 80px; /* Space between logos */
  animation: marquee-scroll 25s linear infinite;
}

.brand-item {
  color: #a0a0a0;
  transition: var(--transition-normal);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.brand-item svg {
  height: 42px; /* Make the logos bigger! Original was around 30px */
  width: auto;  /* Auto width to keep aspect ratio */
  display: block;
}

.brand-item:hover {
  color: #111111;
  transform: scale(1.08);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- THE EXPERIENCE SECTION --- */
.experience-section {
  position: relative;
  padding: 120px 0;
  background: url('images/brew_experience.png') no-repeat right center / cover; /* Pushed fully to the right, away from text */
  width: 100%;
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Stacked Gradients: Top fade, Bottom fade, Left-to-right white fade covering the text area */
  background: 
    linear-gradient(180deg, var(--color-white) 0%, transparent 150px),
    linear-gradient(0deg, var(--color-light-bg) 0%, transparent 150px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 90%);
  z-index: 1;
  pointer-events: none;
}

.experience-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 5%;
  position: relative;
  z-index: 3;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.experience-content {
  max-width: 550px;
}

.section-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.section-title .accent-text {
  color: var(--color-gold);
}

.section-description {
  color: var(--color-text-muted-dark);
  font-size: 1.05rem;
  margin-bottom: 40px;
  font-weight: 400;
}

/* Sub-features List (Shared between Experience and Success) */
.experience-features-list,
.success-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.experience-feature-row,
.success-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(196, 162, 101, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.experience-feature-row:last-child,
.success-feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.experience-feature-row:hover,
.success-feature-row:hover {
  transform: translateX(8px); /* Sleek slide right on hover */
}

.experience-feature-row .feature-icon-wrapper,
.success-feature-row .feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196, 162, 101, 0.05);
  color: var(--color-gold);
  border: 1px solid rgba(196, 162, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.experience-feature-row:hover .feature-icon-wrapper,
.success-feature-row:hover .feature-icon-wrapper {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 8px 16px rgba(196, 162, 101, 0.25);
}

.feature-text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-row-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.experience-feature-row:hover .feature-row-title,
.success-feature-row:hover .feature-row-title {
  color: var(--color-gold); /* Turns gold on hover */
}

.feature-row-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted-dark);
  line-height: 1.5;
}

/* Hide separate image card on desktop */
.experience-image-wrapper {
  display: none;
}

.experience-image {
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-slow);
}

.experience-image:hover {
  transform: scale(1.02);
}

/* --- INTELLIGENCE SECTION --- */
.intelligence-section {
  padding: 100px 0;
  background-color: var(--color-light-bg);
  width: 100%;
}

.intelligence-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.intelligence-main-title {
  font-size: 2.2rem;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.intelligence-underline {
  width: 60px;
  height: 2.5px;
  background-color: var(--color-gold);
  margin: 0 auto 60px auto;
}

.intelligence-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  padding: 15px 0;
}

/* Blur gradient overlays on left and right edges */
.intelligence-marquee-container::before,
.intelligence-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.intelligence-marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-light-bg) 0%, transparent 100%);
}

.intelligence-marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-light-bg) 0%, transparent 100%);
}

.intelligence-marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: intelligence-marquee-scroll 35s linear infinite;
  padding: 10px 0;
}

.intelligence-marquee-track:hover {
  animation-play-state: paused; /* Pause scrolling on mouse hover */
}


.intelligence-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  padding: 48px 36px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(196, 162, 101, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 350px; /* Lock card width for horizontal scrolling track */
}

.intelligence-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intelligence-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(196, 162, 101, 0.08);
  border-color: rgba(196, 162, 101, 0.3);
}

.intelligence-card:hover::before {
  opacity: 1;
}

@keyframes intelligence-marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(196, 162, 101, 0.05);
  color: var(--color-gold);
  border: 1px solid rgba(196, 162, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 0 rgba(196, 162, 101, 0.2);
}

.intelligence-card:hover .card-icon {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 10px 20px rgba(196, 162, 101, 0.3), 0 0 0 6px rgba(196, 162, 101, 0.15);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted-dark);
  line-height: 1.6;
}

/* --- KIOSK SUCCESS SECTION --- */
.success-section {
  position: relative;
  padding: 120px 0;
  background: url('images/robotic_kiosk.png') no-repeat left center / cover; /* Pushed fully to the left, away from text */
  width: 100%;
  overflow: hidden;
}

.success-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Stacked Gradients: Top fade, Bottom fade, Right-to-left white fade covering the text area */
  background: 
    linear-gradient(180deg, var(--color-light-bg) 0%, transparent 150px),
    linear-gradient(0deg, var(--color-white) 0%, transparent 150px),
    linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 90%);
  z-index: 1;
  pointer-events: none;
}

.success-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 5%;
  position: relative;
  z-index: 3;
}

.success-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

.success-content {
  max-width: 580px;
  margin-left: auto; /* Aligns content to the right side where the white fade is */
}

/* Hide separate image card on desktop */
.success-image-wrapper {
  display: none;
}

.success-image {
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: var(--transition-slow);
}

.success-image:hover {
  transform: scale(1.02);
}

.success-title {
  font-size: 2.5rem;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 40px;
}

/* (Retired success benefits classes deleted in favor of shared feature-item styles) */

/* --- HIGH IMPACT SPACES SECTION --- */
.spaces-section {
  padding: 100px 0;
  background-color: var(--color-light-bg);
  width: 100%;
}

.spaces-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.spaces-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Space items row */
.spaces-icons-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 80px;
}

.space-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1 1 110px;
  text-align: center;
  cursor: pointer;
}

.space-icon-wrapper {
  width: 72px; /* Bigger icon wrapper */
  height: 72px; /* Bigger icon wrapper */
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  color: var(--color-gold);
  border: 1px solid rgba(196, 162, 101, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.space-icon-wrapper svg {
  width: 28px; /* Bigger SVG icon */
  height: 28px;
  transition: transform 0.4s ease;
}

.space-icon-item:hover .space-icon-wrapper {
  transform: translateY(-6px);
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 10px 20px rgba(196, 162, 101, 0.3), 0 0 0 6px rgba(196, 162, 101, 0.15); /* Double-ring hover glow */
}

.space-icon-item:hover .space-icon-wrapper svg {
  transform: scale(1.1);
}

.space-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase; /* Uppercase look */
  transition: var(--transition-normal);
}

.space-icon-item:hover .space-label {
  color: var(--color-gold);
}

/* Gallery Section */
.gallery-subsection {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 60px;
  width: 100%;
}

.gallery-tag {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 40px;
  text-transform: uppercase;
}

.gallery-carousel-container {
  position: relative;
  width: 100%;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 162, 101, 0.2);
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.gallery-nav-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 8px 25px rgba(196, 162, 101, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.gallery-nav-btn.prev-btn {
  left: 30px;
}

.gallery-nav-btn.next-btn {
  right: 30px;
}

@media (max-width: 768px) {
  .gallery-nav-btn {
    display: none;
  }
}

.gallery-wrapper {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  width: 100%;
}

.gallery-wrapper::-webkit-scrollbar {
  display: none;
}

.gallery-track {
  display: flex;
  gap: 24px;
  padding: 15px 5% 35px 5%;
}

.gallery-item {
  flex: 0 0 480px; /* Make the cards bigger & use more vertical space */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid rgba(196, 162, 101, 0.05);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(196, 162, 101, 0.16);
  border-color: rgba(196, 162, 101, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* --- CONTACT / FORM SECTION --- */
.contact-section {
  background-color: var(--color-dark-bg);
  padding: 100px 0;
  color: var(--color-text-light);
  position: relative;
  width: 100%;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.contact-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted-light);
  margin-bottom: 40px;
  font-weight: 300;
}

.lead-form {
  background-color: var(--color-dark-card);
  padding: 48px;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.lead-form input {
  width: 100%;
  padding: 16px 20px;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255,255,255,0.05);
  box-shadow: 0 0 10px rgba(196, 162, 101, 0.15);
}

.lead-form input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background-color: var(--color-gold);
  border: none;
  border-radius: var(--border-radius-sm);
  color: var(--color-dark-bg);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.form-submit-btn:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
}

.form-feedback {
  margin-top: 15px;
  font-size: 0.9rem;
  text-align: center;
}

.form-feedback.success {
  color: #2ec4b6;
}

.form-feedback.error {
  color: #e71d36;
}

/* --- FOOTER --- */
.site-footer {
  background-color: #080808;
  padding: 80px 0 40px 0;
  color: var(--color-text-light);
  border-top: 1px solid rgba(255,255,255,0.03);
  width: 100%;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.col-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo .logo-main {
  font-size: 1.5rem;
}

.footer-brand-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  max-width: 320px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted-light);
  border: 1px solid rgba(255,255,255,0.05);
}

.social-link:hover {
  background-color: var(--color-gold);
  color: var(--color-dark-bg);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--color-gold);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
}

.contact-list-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer-contact-list a:hover {
  color: var(--color-gold-hover);
}

.footer-address {
  font-size: 0.9rem;
  color: var(--color-text-muted-light);
  line-height: 1.7;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: var(--color-text-muted-light);
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
  font-size: 0.8rem;
}

.footer-bottom-links a {
  color: var(--color-text-muted-light);
}

.footer-bottom-links a:hover {
  color: var(--color-gold-hover);
}


/* --- RESPONSIVENESS (MOBILE/TABLET) --- */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .experience-grid, .success-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-normal);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
  }
  
  .header-cta-btn {
    display: none;
  }
  
  .mobile-cta-btn {
    display: inline-block !important;
    background-color: var(--color-gold);
    color: var(--color-dark-bg) !important;
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .experience-grid, .success-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .experience-container, .success-container {
    padding: 0 24px;
  }
  
  .experience-section {
    background: var(--color-white); /* Remove background image on mobile */
  }
  
  .experience-section::before {
    display: none; /* Disable horizontal gradient overlay on mobile */
  }
  
  .experience-image-wrapper {
    display: block; /* Show the curved image card on mobile */
    order: -1;      /* Place image above text */
  }
  
  .success-section {
    background: var(--color-white); /* Remove background image on mobile */
  }
  
  .success-section::before {
    display: none; /* Disable horizontal gradient overlay on mobile */
  }
  
  .success-image-wrapper {
    display: block; /* Show the curved image card on mobile */
    order: -1;      /* Place image above text */
  }
  
  .success-content {
    margin-left: 0; /* Reset margins on mobile */
  }
  
  .intelligence-card {
    flex: 0 0 290px;
    padding: 36px 24px;
  }
  .intelligence-marquee-container::before,
  .intelligence-marquee-container::after {
    width: 60px; /* Slimmer side blur masks on mobile screens */
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
