/* =============================================================
   Kathmandu Dairy - Main Stylesheet
   Theme: Custom WordPress-Ready Frontend
   Fonts: Bodoni Moda (headings) + Source Sans Pro (body)
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;6..96,500;6..96,600;6..96,700;6..96,800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ----- CSS Variables ----- */
:root {
  /* Colors */
  --color-primary: #0a3d2e;
  --color-primary-light: #0f5a43;
  --color-primary-dark: #06281e;
  --color-secondary: #d4a853;
  --color-secondary-light: #e4c078;
  --color-secondary-dark: #b8903a;
  --color-accent: #f5f0e8;
  --color-bg-light: #faf8f5;
  --color-bg-dark: #0a0f0e;
  --color-text: #1a1a1a;
  --color-text-light: #5a5a5a;
  --color-text-muted: #8a8a8a;
  --color-white: #ffffff;
  --color-off-white: #f7f5f1;
  --color-border: #e5e0d8;
  --color-glass: rgba(255, 255, 255, 0.85);
  --color-glass-border: rgba(255, 255, 255, 0.25);
  --color-overlay: rgba(10, 61, 46, 0.6);
  --color-gradient-start: #0a3d2e;
  --color-gradient-end: #06281e;
  --color-hero-overlay: rgba(10, 15, 14, 0.35);

  /* Typography */
  --font-heading: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --max-width-wide: 1400px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-base: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-base: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(212, 168, 83, 0.3);

  /* Z-index */
  --z-header: 1000;
  --z-mobile-nav: 999;
  --z-hero: 1;
  --z-overlay: 5;
  --z-modal: 2000;
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: var(--color-bg-dark);
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 0;
  margin-top: auto;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-light);
}

/* ----- Selection ----- */
::selection {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: var(--text-6xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: var(--max-width-wide);
}

/* ----- Section Base ----- */
.section {
  position: relative;
  padding: var(--space-3xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: var(--text-lg);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  border: 2px solid var(--color-secondary);
}

.btn-gold:hover {
  background: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-white-outline:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--transition-base);
  margin-left: 4px;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* =============================================================
   SITE HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-slow);
  padding: 0 var(--space-lg);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass-border);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.site-header.scrolled::before {
  opacity: 1;
}

.site-header.scrolled {
  height: 64px;
}

.site-header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition-base);
}

.scrolled .site-logo {
  color: var(--color-primary);
}

.site-logo img {
  height: 64px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.site-logo-text span:last-child {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.main-navigation {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: calc(var(--z-header) + 1);
  width: 30px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition-base);
  border-radius: 1px;
}

.scrolled .nav-toggle span {
  background: var(--color-text);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

.nav-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.nav-menu a {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-white);
  padding: 4px 0;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.scrolled .nav-menu a {
  color: var(--color-text);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width var(--transition-base);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 100%;
}

.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.menu-item-has-children > a::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition-base);
}

.menu-item-has-children:hover > a::before {
  transform: rotate(180deg);
}

.nav-menu > li > a:hover {
  color: var(--color-secondary);
}

/* ----- Mega Menu ----- */
.menu-item-has-children {
  position: relative;
  z-index: 1;
}

.menu-item-has-children:hover {
  z-index: 10;
}

.sub-menu-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: calc(var(--z-header) + 5);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  min-width: 520px;
  margin-top: var(--space-sm);
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-white);
}

.menu-item-has-children:hover .mega-menu,
.menu-item-has-children .mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.mega-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  border-radius: var(--radius-base);
  transition: all var(--transition-base);
  text-decoration: none;
  color: var(--color-text);
}

.mega-menu-item:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.nav-menu .mega-menu-item::after {
  display: none;
}

.scrolled .mega-menu-item {
  color: var(--color-text);
}

.mega-menu-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: border-color var(--transition-base);
}

.mega-menu-item:hover .mega-menu-icon {
  border-color: var(--color-secondary);
}

.mega-menu-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-menu-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.mega-menu-item:hover .mega-menu-label {
  color: var(--color-primary);
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: var(--z-hero);
}

.hero-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.1;
}

/* ----- Hero Slider ----- */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-bg {
  position: absolute;
  top: -5%;
  left: -5%;
  right: -5%;
  bottom: -5%;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.1;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active .hero-slide-bg img {
  transform: scale(1.05);
}

/* ----- Hero Slider Controls ----- */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0;
  pointer-events: none;
}

.hero:hover .hero-slider-arrow {
  opacity: 1;
  pointer-events: auto;
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.hero-slider-prev {
  left: var(--space-lg);
}

.hero-slider-next {
  right: var(--space-lg);
}

.hero-slider-dots {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: var(--space-sm);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.hero-slider-dot.active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

.hero-slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 768px) {
  .hero-slider-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-slider-prev {
    left: var(--space-sm);
  }

  .hero-slider-next {
    right: var(--space-sm);
  }

  .hero-slider-dots {
    bottom: var(--space-sm);
  }
}

@media screen and (max-width: 425px) {
  .hero-slider-arrow {
    display: none;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 46, 0.6) 0%,
    rgba(10, 15, 14, 0.4) 50%,
    rgba(10, 61, 46, 0.3) 100%
  );
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  /* background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 15, 14, 0.1) 50%,
    rgba(10, 15, 14, 0.4) 100%
  ); */
}

.hero-three-scene {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  padding-top: var(--header-height);
  width: 100%;
}

.hero-content-inner {
  max-width: 860px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.hero-title {
  font-size: var(--text-7xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: flex;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-item .number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-secondary);
}

.hero-trust-item .label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.scroll-cue {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-floating {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  opacity: 0.15;
}

.hero-floating-1 {
  top: 20%;
  right: 10%;
  width: 60px;
  height: 60px;
  border: 2px solid var(--color-white);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-floating-2 {
  bottom: 30%;
  right: 20%;
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

.hero-floating-3 {
  top: 40%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.about {
  background: var(--color-white);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-content {
  padding-right: var(--space-xl);
}

.about-content h2 {
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
}

.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  background: var(--color-secondary);
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.about-image-accent-2 {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.08;
  z-index: -1;
}

/* =============================================================
   PRODUCTS SECTION
   ============================================================= */
.products {
  background: var(--color-off-white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.product-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 61, 46, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-body {
  padding: var(--space-lg);
  text-align: center;
}

.product-card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.product-card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.product-card-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-secondary);
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-card-btn::after {
  content: '→';
  transition: transform var(--transition-base);
}

.product-card-btn:hover::after {
  transform: translateX(4px);
}

/* =============================================================
   FEATURES / WHY CHOOSE US
   ============================================================= */
.features {
  background: var(--color-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  padding: var(--space-xl);
  text-align: center;
  border-radius: var(--radius-lg);
  transition: all var(--transition-slow);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 50%;
  font-size: var(--text-2xl);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--color-secondary);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--text-base);
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* =============================================================
   DISTRIBUTOR SECTION
   ============================================================= */
.distributor {
  background: var(--color-primary-dark);
  overflow: hidden;
}

.distributor-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.distributor-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.distributor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(10, 61, 46, 0.95) 0%, rgba(6, 40, 30, 0.98) 100%);
}

.distributor-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.distributor-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.distributor-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.distributor-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.distributor-benefit {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.distributor-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), rgba(212, 168, 83, 0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.distributor-benefit:hover::before {
  opacity: 1;
}

.distributor-benefit::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.6s ease;
}

.distributor-benefit:hover::after {
  top: -20%;
  right: -20%;
  width: 120%;
  height: 120%;
}

.distributor-benefit:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 168, 83, 0.06);
}

.distributor-benefit-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-base);
  background: rgba(212, 168, 83, 0.1);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  transition: all 0.4s ease;
}

.distributor-benefit:hover .distributor-benefit-icon {
  background: rgba(212, 168, 83, 0.2);
  transform: scale(1.1);
}

.distributor-benefit h4 {
  color: var(--color-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.distributor-benefit p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  line-height: 1.6;
}

.distributor-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.distributor-floating {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(212, 168, 83, 0.06);
}

.distributor-floating-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation: float 12s ease-in-out infinite;
}

.distributor-floating-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation: float 10s ease-in-out infinite 3s;
}

/* =============================================================
   EXPLORE SPLIT SECTION
   ============================================================= */
.explore-split {
  padding: 0;
  overflow: hidden;
}

.explore-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.explore-split-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  min-height: 500px;
  cursor: pointer;
}

.explore-split-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.explore-split-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-split-card:hover .explore-split-bg img {
  transform: scale(1.1);
}

.explore-split-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(10, 61, 46, 0.65) 0%, rgba(6, 40, 30, 0.8) 100%);
  transition: opacity 0.5s ease;
}

.explore-icecream .explore-split-overlay {
  background: linear-gradient(135deg, rgba(20, 30, 60, 0.75) 0%, rgba(10, 15, 40, 0.85) 100%);
}

.explore-split-card:hover .explore-split-overlay {
  opacity: 0.5;
}

.explore-split-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 400px;
  padding: var(--space-xl);
}

.explore-split-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.explore-split-content h2 {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.explore-split-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--text-base);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.explore-split-content .btn {
  display: inline-flex;
}

.explore-split-card::after {
  content: '';
  position: absolute;
  z-index: 4;
  top: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  bottom: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  transition: all 0.5s ease;
  pointer-events: none;
}

.explore-split-card:hover::after {
  border-color: rgba(212, 168, 83, 0.4);
  box-shadow: inset 0 0 40px rgba(212, 168, 83, 0.06);
}

/* ----- Explore Split responsive ----- */
@media screen and (max-width: 768px) {
  .explore-split-inner {
    grid-template-columns: 1fr;
  }

  .explore-split-card,
  .explore-split-inner {
    min-height: 400px;
  }

  .explore-split-content h2 {
    font-size: var(--text-2xl);
  }
}

/* =============================================================
   COUNTERS SECTION
   ============================================================= */
.counters {
  background: var(--color-white);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.counter-item {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--color-off-white);
  transition: all var(--transition-base);
}

.counter-item:hover {
  background: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.counter-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.counter-item:hover .counter-number {
  color: var(--color-secondary-light);
}

.counter-label {
  font-size: var(--text-base);
  color: var(--color-text-light);
  font-weight: 500;
}

.counter-item:hover .counter-label {
  color: rgba(255, 255, 255, 0.85);
}

.counter-suffix {
  font-size: var(--text-3xl);
}

/* =============================================================
   CONTACT CTA
   ============================================================= */
.contact-cta {
  position: relative;
  background: var(--color-primary);
  overflow: hidden;
}

.contact-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.contact-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(10, 61, 46, 0.95) 0%, rgba(6, 40, 30, 0.9) 100%);
}

.contact-cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.contact-cta-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--space-xl);
}

.contact-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-base);
  margin-top: var(--space-md);
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-column h4 {
  font-size: var(--text-base);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.footer-column a:hover {
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item .icon {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item strong {
  display: block;
  color: var(--color-white);
  font-size: var(--text-xs);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.2;
}

.contact-value {
  display: inline;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0;
}

.footer-credit {
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
  font-size: var(--text-sm);
}

.footer-social a:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* =============================================================
   UTILITY CLASSES
   ============================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--color-secondary); }
.bg-light { background: var(--color-bg-light); }
.bg-white { background: var(--color-white); }
.bg-dark { background: var(--color-bg-dark); }
.overflow-hidden { overflow: hidden; }

/* WordPress / Gutenberg compatibility */
.wp-block { max-width: var(--max-width); margin: 0 auto; }
.alignwide { max-width: var(--max-width-wide); }

/* =============================================================
   ICE CREAM PAGE - HERO SLIDER
   ============================================================= */
.ic-hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #081F4D;
}

.ic-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.ic-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
  display: flex;
  align-items: center;
}

.ic-hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.ic-hero-slide-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  right: -10%;
  bottom: -10%;
}

.ic-hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ic-hero-slide.active .ic-hero-slide-bg img {
  transform: scale(1);
}

.ic-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 31, 77, 0.85) 0%, rgba(8, 31, 77, 0.4) 50%, rgba(8, 31, 77, 0.7) 100%);
  z-index: 2;
}

.ic-hero-content {
  position: relative;
  z-index: 5;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  padding-top: 80px;
}

.ic-hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}

.ic-hero-title {
  font-size: var(--text-7xl);
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.ic-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.ic-hero #ice-three-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ic-hero-topping {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
}

.ic-hero-topping-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.ic-hero-topping-2 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  right: 25%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite 2s;
}

.ic-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  opacity: 0;
  pointer-events: none;
}

.ic-hero:hover .ic-hero-arrow {
  opacity: 1;
  pointer-events: auto;
}

.ic-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.ic-hero-prev { left: var(--space-lg); }
.ic-hero-next { right: var(--space-lg); }

.ic-hero-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.ic-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  padding: 0;
}

.ic-hero-dot.active {
  background: var(--color-secondary);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(212, 168, 83, 0.4);
}

.ic-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-xs);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ic-scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =============================================================
   ICE CREAM STORY
   ============================================================= */
.ic-story {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.ic-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.ic-story-text h2 {
  font-size: var(--text-5xl);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: #081F4D;
}

.ic-story-text p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
}

.ic-story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.ic-story-stat .number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #081F4D;
  font-family: var(--font-heading);
}

.ic-story-stat .label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.ic-story-visual {
  position: relative;
}

.ic-story-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.ic-story-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.ic-story-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 31, 77, 0.06) 0%, transparent 70%);
  z-index: -1;
}

/* =============================================================
   3D PRODUCT SHOWCASE
   ============================================================= */
.ic-showcase {
  background: linear-gradient(180deg, #0a1a3a 0%, #081F4D 100%);
  padding: var(--space-3xl) 0;
  scroll-margin-top: 80px;
}

.ic-showcase .section-header h2 {
  color: var(--color-white);
}

.ic-showcase .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.ic-showcase-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  height: 100vh;
  max-height: 100vh;
  perspective: 1200px;
  margin-top: var(--space-2xl);
  overflow: hidden;
}

.ic-card {
  grid-area: 1 / 1;
  width: 100%;
  max-width: 920px;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.ic-card:first-child {
  opacity: 1;
}

.ic-card.visible {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.ic-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.ic-card-visual {
  position: relative;
  min-height: 400px;
  height: 100%;
  overflow: hidden;
}

.ic-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.ic-card:hover .ic-card-visual img {
  transform: scale(1.05);
}

.ic-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(212, 168, 83, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.ic-card-info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ic-card-number {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.ic-card-info h3 {
  font-size: var(--text-3xl);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.ic-card-info p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.ic-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.ic-card-tags span {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ic-card-info .btn {
  align-self: flex-start;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.ic-card-info .btn:hover {
  background: var(--color-white);
  color: #081F4D;
  border-color: var(--color-white);
}

/* =============================================================
   WHY YOU'LL LOVE IT
   ============================================================= */
.ic-features {
  background: var(--color-white);
  padding: var(--space-3xl) 0;
}

.ic-features .section-header h2 {
  color: #081F4D;
}

.ic-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.ic-feature-card {
  padding: var(--space-xl);
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ic-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(8, 31, 77, 0.08);
  border-color: rgba(8, 31, 77, 0.15);
}

.ic-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-base);
  background: rgba(8, 31, 77, 0.06);
  color: #081F4D;
  margin-bottom: var(--space-md);
  transition: all 0.4s ease;
}

.ic-feature-card:hover .ic-feature-icon {
  background: #081F4D;
  color: var(--color-white);
  transform: scale(1.1);
}

.ic-feature-card h3 {
  font-size: var(--text-xl);
  color: #081F4D;
  margin-bottom: var(--space-xs);
}

.ic-feature-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================================
   ICE CREAM CTA
   ============================================================= */
.ic-cta {
  position: relative;
  overflow: hidden;
  padding: var(--space-3xl) 0;
  background: #081F4D;
}

.ic-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.ic-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.ic-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(8, 31, 77, 0.95) 0%, rgba(8, 31, 77, 0.85) 100%);
}

.ic-cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ic-cta-content h2 {
  font-size: var(--text-5xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.ic-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-xl);
}

.ic-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ic-cta-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.ic-cta-particle-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite;
}

.ic-cta-particle-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite 3s;
}

