/**
 * Alien AC - Revamp Stylesheet
 * Modern, clean design for e-commerce website
 *
 * @package LG_East_Africa
 * @since 2.0.0
 */

/* ==========================================================================
   CSS VARIABLES - Theme Consistency
   ========================================================================== */
:root {
  /* Primary Colors - Green Theme */
  --color-primary: #2d5a3d;
  --color-primary-light: #3d7a52;
  --color-primary-bright: #4ade80;
  --color-primary-dark: #1e3d29;

  /* Neutral Colors - Green Theme */
  --color-dark: #1a2f23;
  --color-dark-light: #2d5a3d;
  --color-gray-700: #4b5563;
  --color-gray-600: #6b7280;
  --color-gray-400: #9ca3af;
  --color-gray-300: #d1d5db;
  --color-gray-200: #e5e7eb;
  --color-gray-100: #f3f4f6;
  --color-gray-50: #f9fafb;
  --color-white: #ffffff;

  /* Accent Colors */
  --color-lg-red: #a50034;
  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-success: #10b981;
  --color-info: #3b82f6;

  /* Typography */
  --font-family-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  --font-family-heading:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-snug: 1.4;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1320px;
  --container-padding: 20px;
}

/* ==========================================================================
   BASE STYLES - Global Reset & Typography
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-dark);
  background-color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  color: var(--color-dark);
  margin: 0;
}

p {
  margin: 0 0 1rem 0;
}

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

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

button {
  font-family: var(--font-family-primary);
  cursor: pointer;
}

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

/* ==========================================================================
   Top Announcement Bar - LG Authorized Distributor (Green Theme)
   ========================================================================== */

.lg-top-announcement-bar {
  background: #2d5a3d;
  padding: 10px 0;
  position: relative;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.announcement-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* LG Logo with Pop Animation */
.lg-logo-container {
  display: flex;
  align-items: center;
  animation: lgLogoPop 2s ease-in-out infinite;
}

@keyframes lgLogoPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.lg-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.lg-logo-container:hover .lg-logo-img {
  transform: scale(1.15);
}

.lg-logo-small {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.lg-logo-svg {
  color: #fff;
  flex-shrink: 0;
}

.announcement-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-badge .badge-highlight {
  background: #fff;
  color: #2d5a3d;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: -0.02em;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
}

.announcement-text {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 400;
}

.announcement-text strong {
  font-weight: 700;
}

.announcement-contact {
  display: flex;
  align-items: center;
}

.announcement-contact .contact-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all 0.2s ease;
}

.announcement-contact .contact-link:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.announcement-contact .contact-link svg {
  flex-shrink: 0;
}

/* Responsive - Top Bar */
@media (max-width: 768px) {
  .announcement-container {
    justify-content: center;
    text-align: center;
  }

  .announcement-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lg-logo-img {
    height: 26px;
  }

  .announcement-text {
    font-size: 0.8rem;
  }

  .announcement-contact {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .lg-top-announcement-bar {
    padding: 8px 0;
  }

  .announcement-text {
    font-size: 0.75rem;
  }

  .announcement-badge .badge-highlight {
    font-size: 0.75rem;
    padding: 3px 8px;
  }

  @keyframes lgLogoPop {
    0%,
    100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
}

/* ==========================================================================
   Fix Salient Header Gap/Loading Issue
   ========================================================================== */

/* Sticky header - always visible, no shrink */
#header-outer {
  position: sticky !important;
  top: 0 !important;
  z-index: 9998 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease !important;
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Prevent Salient from shrinking the header on scroll */
#header-outer[data-header-resize="1"] header#top,
#header-outer header#top {
  height: auto !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#header-outer[data-header-resize="1"] #logo,
#header-outer #logo {
  transform: none !important;
  transition: none !important;
}

/* Remove any loading delays */
body:not(.loaded) #header-outer,
body:not(.using-mobile-browser) #header-outer {
  opacity: 1 !important;
}

/* Fix header space - avoid double gap since header is sticky */
body[data-header-resize="1"] #header-space,
body #header-space {
  height: 0 !important;
  min-height: 0 !important;
  display: none !important;
}

/* Hide header class added by custom JS - override it */
#header-outer.header-hidden {
  transform: none !important;
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ==========================================================================
   Mobile Navigation Toggle Fix
   ========================================================================== */

/* Ensure the Salient mobile hamburger icon is visible and clickable */
.slide-out-widget-area-toggle.mobile-icon {
  display: block !important;
  cursor: pointer !important;
  z-index: 10000 !important;
  position: relative !important;
}

/* Show the mobile toggle only on small screens */
@media (min-width: 1000px) {
  .slide-out-widget-area-toggle.mobile-icon {
    display: none !important;
  }
}

/* Hide Salient's off-canvas menu panel entirely */
#slide-out-widget-area,
#slide-out-widget-area-bg {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Mobile menu panel — hidden off-screen via transform, slides in when .open */
#header-outer #mobile-menu,
#mobile-menu {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 300px !important;
  max-width: 85vw !important;
  height: 100vh !important;
  background: #fff !important;
  z-index: 99999 !important;
  overflow-y: auto !important;
  transform: translateX(100%) !important;
  transition: transform 0.3s ease !important;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;
  padding: 70px 20px 20px !important;
}

/* Slide in when open */
body.mobile-menu-open #mobile-menu,
#header-outer #mobile-menu.open,
#mobile-menu.open {
  transform: translateX(0) !important;
}

/* Mobile menu close button */
#lg-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #374151;
  padding: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  z-index: 1;
  flex-shrink: 0;
}

#lg-menu-close:hover {
  background: #2d5a3d;
  color: #fff;
  transform: rotate(90deg);
}

#lg-menu-close svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Mobile menu overlay — separate div injected by JS, sits behind the panel */
#lg-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99998;
}

body.mobile-menu-open #lg-menu-overlay {
  display: block;
}

/* Mobile menu nav items */
#mobile-menu .menu-items-wrap ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

#mobile-menu .menu-items-wrap ul li {
  border-bottom: 1px solid #e5e7eb !important;
}

#mobile-menu .menu-items-wrap ul li a {
  display: block !important;
  padding: 14px 8px !important;
  color: #1a2f23 !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
}

#mobile-menu .menu-items-wrap ul li a:hover {
  color: #2d5a3d !important;
  background: #f3f4f6 !important;
}

/* Active / current page highlight */
#mobile-menu .menu-items-wrap ul li.current-menu-item > a,
#mobile-menu .menu-items-wrap ul li.current_page_item > a,
#mobile-menu .menu-items-wrap ul li.current-menu-ancestor > a,
#mobile-menu .menu-items-wrap ul li.current-menu-parent > a {
  color: #2d5a3d !important;
  font-weight: 700 !important;
  border-left: 3px solid #2d5a3d !important;
  padding-left: 12px !important;
  background: #f0f7f3 !important;
}

/* Submenu in mobile */
#mobile-menu .menu-items-wrap .sub-menu {
  display: none;
  padding-left: 16px !important;
  background: #f9fafb !important;
}

#mobile-menu .menu-items-wrap .submenu-open > .sub-menu {
  display: block !important;
}

/* ==========================================================================
   Variables & Base Styles
   ========================================================================== */

:root {
  /* Colors - Alien AC Brand */
  --color-primary: #2d5a3d; /* Green */
  --color-primary-dark: #1e3d29;
  --color-primary-light: #3d7a52;
  --color-secondary: #10b981; /* Green accent */
  --color-dark: #1a2f23; /* Dark green */
  --color-dark-2: #142119;
  --color-text: #374151;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --color-bg: #f9fafb;
  --color-white: #ffffff;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  /* Typography */
  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.alien-hero-section {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  background-color: var(--color-dark);
}

.alien-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.alien-hero-image .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.alien-hero-image .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
}

.alien-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text-wrapper {
  max-width: 650px;
  color: var(--color-white);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-xl);
  font-weight: var(--font-weight-normal);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--color-white);
}

.scroll-indicator p {
  font-size: 0.875rem;
  margin-bottom: var(--spacing-xs);
  opacity: 0.9;
}

.scroll-indicator .scroll-link {
  color: var(--color-primary-light);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-base);
}

.scroll-indicator .scroll-link:hover {
  color: var(--color-white);
}

/* ==========================================================================
   LG-Style Split Panel Hero
   ========================================================================== */

/* ============================================
   Hero — Full-bleed image + diagonal green triangle
   ============================================ */

.hs-hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  background: #1a3528;
}

/* Track holds all slides stacked */
.hs-track {
  position: absolute;
  inset: 0;
}

/* Each slide */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.hs-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Full-bleed photo — subtle Ken Burns zoom */
.hs-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  transition: transform 9s ease;
  will-change: transform;
}

.hs-slide.active .hs-photo {
  transform: scale(1);
}

/* No overlay on the photo */
.hs-photo::after {
  display: none;
}

/* ── Solid diagonal green triangle — bottom-right only ── */
.hs-panel {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 4;
}

/* Curved panel — SVG bezier clip-path for smooth organic edge */
.hs-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 56, 0.7);
  clip-path: url(#hero-curve);
}

/* Text block — lower-right inside the curved panel */
.hs-panel-inner {
  position: absolute;
  right: 3%;
  bottom: 14%;
  width: 33%;
  padding: 0 0 0 20px;
  text-align: left;
  box-sizing: border-box;
  z-index: 5;
}

/* Slide-up entrance */
.hs-slide.active .hs-panel-inner {
  animation: hsPanelIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

@keyframes hsPanelIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* Label — hidden in this layout */
.hs-label {
  display: none;
}

/* Title */
.hs-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hs-title em {
  font-style: normal;
  color: #8ef5b4;
}

/* Subtitle */
.hs-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

/* CTA — hidden in this layout */
.hs-btn {
  display: none;
}

/* Arrows */
.hs-arrow {
  display: none !important;
}

/* Dots — bottom-right, inside the green area */
.hs-dots {
  position: absolute;
  bottom: 32px;
  right: 64px;
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
  transition: all 0.35s ease;
}

.hs-dot.active {
  width: 26px;
  border-radius: 4px;
  background: #fff;
  border-color: #fff;
}

/* LG Badge */
.hs-hero .hero-lg-badge {
  z-index: 30;
}

/* Scroll indicator */
.hero-scroll-down {
  z-index: 30;
}

/* ── Tablet 1024px (Nest Hub, iPad landscape) ─── */
@media (max-width: 1024px) {
  .hs-hero { height: 100vh; min-height: 500px; max-height: 700px; }

  /* Keep inset:0 — never set width on ::before, it breaks objectBoundingBox */
  .hs-panel-inner {
    right: 3%;
    bottom: 12%;
    width: 38%;
    padding: 0 0 0 16px;
  }

  .hs-title { font-size: clamp(1.3rem, 2.4vw, 2rem); }
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .hs-hero { height: 100svh; max-height: none; }

  .hs-slide.active .hs-photo { transform: scale(1); }

  /* Full-bottom gradient on mobile — no SVG curve needed */
  .hs-panel::before {
    clip-path: none;
    background: linear-gradient(
      to top,
      rgba(27, 94, 56, 0.96) 0%,
      rgba(27, 94, 56, 0.70) 55%,
      transparent 100%
    );
  }

  .hs-panel-inner {
    right: auto;
    left: 0;
    bottom: 60px;
    width: 100%;
    padding: 0 28px;
    text-align: left;
  }

  .hs-title { font-size: 1.6rem; }
  .hs-sub   { font-size: 0.9rem; }
  .hs-dots  { right: auto; left: 28px; bottom: 16px; }
}

@media (max-width: 480px) {
  .hs-title { font-size: 1.35rem; }
  .hs-panel-inner { padding: 0 20px; bottom: 56px; }
}

/* ============================================
   Scroll Down Indicator
   ============================================ */

.hero-scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-scroll-down:hover {
  transform: translateY(5px);
  color: #fff;
}

.scroll-text {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  opacity: 0.9;
}

@keyframes bounceDown {
  0%, 50%, 100% { transform: translateY(0); }
  30%            { transform: translateY(7px); }
}

@media (max-width: 768px) {
  .hero-scroll-down { display: none; }
}

/* ==========================================================================
   Stats/Numbers Section - Big Countdown Cards
   ========================================================================== */

.stats-countdown-section {
  padding: 80px 0;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.stats-countdown-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(45, 90, 61, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(45, 90, 61, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.stats-header-text {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.stats-header-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.stats-header-text p {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
}

.countdown-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.countdown-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

/* Background Icon */
.countdown-bg-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.06;
  color: #1f2937;
  transition: all 0.4s ease;
}

.countdown-card:hover .countdown-bg-icon {
  opacity: 0.1;
  transform: scale(1.1) rotate(10deg);
}

.countdown-bg-icon svg {
  width: 100%;
  height: 100%;
}

/* Big Numbers */
.countdown-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.countdown-number .count-value {
  font-size: 4rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
  letter-spacing: -0.03em;
}

.countdown-number .count-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: #4b5563;
}

.countdown-number .count-divider {
  font-size: 2.5rem;
  font-weight: 300;
  color: #9ca3af;
  margin: 0 5px;
}

.countdown-special .count-value {
  font-size: 3.2rem;
}

/* Label */
.countdown-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Progress Bar — always pinned to bottom of card */
.countdown-bar {
  height: 4px;
  background: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  width: 100%;
  margin-top: auto;
}

.countdown-bar-fill {
  height: 100%;
  background: #2d5a3d;
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

.countdown-bar-pulse {
  animation: barPulse 2s ease-in-out infinite;
}

@keyframes barPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Accent Card (8/6) */
.countdown-card-accent {
  background: #fff;
}

.countdown-card-accent:hover {
  border-color: #d1d5db;
}

/* Responsive - Countdown Cards */
@media (max-width: 1100px) {
  .countdown-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .countdown-number .count-value {
    font-size: 3.5rem;
  }

  .countdown-special .count-value {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .stats-countdown-section {
    padding: 50px 0;
  }

  .stats-header-text {
    margin-bottom: 28px;
  }

  .stats-header-text h2 {
    font-size: 1.75rem;
  }

  .stats-header-text p {
    font-size: 1rem;
  }

  .countdown-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .countdown-card {
    padding: 24px 16px;
  }

  .countdown-number .count-value {
    font-size: 2.5rem;
  }

  .countdown-number .count-suffix {
    font-size: 1.3rem;
  }

  .countdown-special .count-value {
    font-size: 2rem;
  }

  .countdown-label {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }

  .countdown-bg-icon {
    width: 70px;
    height: 70px;
  }
}

/* ==========================================================================
   Shop by Solution Section
   ========================================================================== */

.shop-by-solution-section {
  padding: 50px 0 40px;
  background-color: #fff;
  position: relative;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mall-solution-page .section-header {
  display: block;
  /* justify-content: space-between;
  align-items: center;
  margin-bottom: 24px; */
}
.mall-solution-page .section-header {
  display: block;
  text-align: center;
  /* justify-content: space-between;
  align-items: center;
  margin-bottom: 24px; */
}

.section-header h2 {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin: 0;
}

.view-all-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: color var(--transition-base);
}

.view-all-link:hover {
  color: var(--color-primary-dark);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.solution-card {
  position: relative;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  aspect-ratio: 4/3;
}

.solution-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.solution-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.solution-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.solution-card:hover .solution-image img {
  transform: scale(1.05);
}

.solution-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.solution-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--spacing-md);
  z-index: 2;
}

.solution-label h3 {
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin: 0;
}

/* ==========================================================================
   Top-Selling Units Section - Professional Revamp
   ========================================================================== */

.top-selling-section-revamp {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.top-selling-section-revamp::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(31, 41, 55, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Section Header */
.top-selling-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 30px;
}

.header-content {
  max-width: 500px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1f2937;
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.carousel-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #1a2f23;
  border-color: #1a2f23;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.2);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #2d5a3d;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #27704a;
  box-shadow: 0 4px 16px rgba(27, 94, 56, 0.30);
}

.view-all-btn svg {
  transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
  transform: translateX(3px);
}

/* Products Showcase */
.products-showcase {
  position: relative;
  overflow: hidden;
}

.products-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Product Card - Professional Style */
.product-card-pro {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  border: 1px solid #eef0f2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card-pro:hover {
  box-shadow: 0 16px 40px rgba(27, 94, 56, 0.14);
  transform: translateY(-3px);
}

/* Badges */
.product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.badge-available {
  background: #1B5E38;
  color: #fff;
}

.badge-outofstock {
  background: rgba(156,163,175,0.9);
  color: #fff;
}

.badge-bestseller { background: #fcd34d; color: #78350f; }
.badge-sale       { background: #ef4444; color: #fff; }
.badge-new        { background: #1B5E38; color: #fff; }

/* Product Image Container */
.product-image-container {
  position: relative;
  height: 260px;
  background: #f5f6f7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
}

/* Hover overlay on image */
.image-link::after {
  content: 'View Details →';
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 56, 0.82);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-pro:hover .image-link::after {
  opacity: 1;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.product-card-pro:hover .product-img {
  transform: scale(1.06);
}

/* Quick Actions Overlay */
.quick-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.98) 0%,
    transparent 100%
  );
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.action-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-view {
  background: #f3f4f6;
  color: #374151;
}

.action-view:hover {
  background: #1a2f23;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(31, 41, 55, 0.3);
}

.action-cart {
  background: #1a2f23;
  color: #fff;
}

.action-cart:hover {
  background: #2d5a3d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.action-cart.loading svg.spin {
  animation: spin 1s linear infinite;
}

.action-cart.added {
  background: #10b981;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Product Details */
.product-details {
  padding: 20px 20px 24px;
}

/* Rating Stars */
.product-rating-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars .star {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.stars .star.filled {
  color: #f59e0b;
}

.stars .star.half {
  background: linear-gradient(90deg, #f59e0b 50%, #e5e7eb 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rating-text {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Product Name */
.product-name {
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.product-name a {
  color: #1f2937;
  text-decoration: none;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a:hover {
  color: #374151;
}

/* SKU */
.product-sku {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0 0 16px 0;
}

/* Product Footer */
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.product-price {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1B5E38;
  background: #eef7f2;
  padding: 5px 12px;
  border-radius: 8px;
  margin: 8px 0 16px;
}

.product-price del {
  font-size: 0.85rem;
  color: #9ca3af;
  font-weight: 400;
  margin-right: 6px;
}

.product-price ins {
  text-decoration: none;
  color: #1f2937;
}

.shop-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f3f4f6;
  transition: all 0.3s ease;
}

.shop-now-btn:hover {
  background: #1a2f23;
  color: #fff;
}

.shop-now-btn svg {
  transition: transform 0.3s ease;
}

.shop-now-btn:hover svg {
  transform: translateX(3px);
}

/* View Details Button */
.view-details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  background: #1B5E38;
  transition: background 0.25s ease;
  width: 100%;
}

.view-details-btn:hover {
  background: #27704a;
}

.view-details-btn svg {
  transition: transform 0.25s ease;
}

.view-details-btn:hover svg {
  transform: translateX(4px);
}

.view-details-btn svg {
  transition: transform 0.3s ease;
}

.view-details-btn:hover svg {
  transform: translateX(3px);
}

/* No Products Message */
.no-products-message {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
}

.no-products-message svg {
  margin-bottom: 20px;
  opacity: 0.5;
}

.no-products-message p {
  font-size: 1rem;
}

/* Mobile View All */
.mobile-view-all {
  display: none;
  text-align: center;
  margin-top: 40px;
}

.mobile-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #2d5a3d;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-view-all-btn:hover {
  background: #1e3d29;
  transform: translateY(-2px);
}

/* Responsive Styles for Top Selling Section */
@media (max-width: 1200px) {
  .products-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .top-selling-section-revamp {
    padding: 60px 0;
  }

  .top-selling-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .section-heading {
    font-size: 2rem;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .products-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .top-selling-section-revamp {
    padding: 50px 0;
  }

  .top-selling-header {
    text-align: center;
  }

  .header-left {
    width: 100%;
    text-align: center;
  }

  .section-label-tag {
    margin: 0 auto;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .header-actions {
    justify-content: center;
  }

  .nav-buttons {
    display: none;
  }

  .view-all-btn {
    display: none;
  }

  .mobile-view-all {
    display: block;
    text-align: center;
  }

  .products-track {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 350px;
    margin: 0 auto;
  }

  .product-card-pro {
    border-radius: 12px;
  }

  .product-badges {
    top: 10px;
    left: 10px;
  }

  .badge {
    padding: 4px 8px;
    font-size: 0.6rem;
  }

  .product-img {
    padding: 15px;
  }

  .product-details {
    padding: 14px 14px 18px;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 1rem;
  }

  .shop-now-btn {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .quick-actions {
    display: none;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .products-track {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-section {
  padding: 100px 0;
  background: #f8faf9;
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,61,0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.why-choose-left .section-label {
  display: inline-block;
  background: rgba(45,90,61,0.1);
  color: #2d5a3d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.why-choose-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a2f23;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.why-choose-desc {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 400px;
}

.why-choose-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2d5a3d;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.why-choose-cta:hover {
  background: #1a2f23;
  transform: translateY(-2px);
  color: #fff;
}

.why-choose-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.why-feature-card {
  background: #fff;
  border: 1px solid #e9eef0;
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.why-feature-card:hover {
  box-shadow: 0 12px 32px rgba(45,90,61,0.1);
  transform: translateY(-4px);
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(45,90,61,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  margin-bottom: 16px;
}

.why-feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2f23;
  margin: 0 0 8px;
}

.why-feature-text p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */

.how-it-works-section {
  padding: 100px 0;
  background: #fff;
}

.section-label-centered {
  text-align: center;
  display: block;
  background: rgba(45,90,61,0.1);
  color: #2d5a3d;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  margin: 0 auto 18px;
}

.how-it-works-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a2f23;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 64px;
}

.how-it-works-heading span {
  color: #2d5a3d;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #2d5a3d, #4ade80);
  margin-top: 56px;
  opacity: 0.4;
}

.process-step-number {
  font-size: 0.78rem;
  font-weight: 800;
  color: #2d5a3d;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.6;
}

.process-step-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(135deg, #2d5a3d, #3d7a52); */
  background: #3d7a52;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(45,90,61,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-step-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(45,90,61,0.35);
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2f23;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #f0f7f2 0%, #f8faf9 60%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: Georgia, serif;
  font-size: 300px;
  color: #2d5a3d;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-heading {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a2f23;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e9eef0;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 16px 40px rgba(45,90,61,0.1);
  transform: translateY(-6px);
}

.testimonial-card-featured {
  background: #2d5a3d;
  /* background: linear-gradient(145deg, #2d5a3d, #1a2f23); */
  border-color: transparent;
  color: #fff;
  transform: translateY(-12px);
  box-shadow: 0 20px 48px rgba(45,90,61,0.3);
}

.testimonial-card-featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 28px 56px rgba(45,90,61,0.4);
}

.testimonial-quote-icon {
  margin-bottom: 20px;
  opacity: 0.8;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card-featured .testimonial-text {
  color: rgba(255,255,255,0.85);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.testimonial-card-featured .testimonial-stars {
  color: #4ade80;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:  #2d5a3d;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card-featured .testimonial-avatar {
  background: rgba(255,255,255,0.2);
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2f23;
}

.testimonial-card-featured .testimonial-info strong {
  color: #fff;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: #9ca3af;
}

.testimonial-card-featured .testimonial-info span {
  color: rgba(255,255,255,0.6);
}

/* ==========================================================================
   CTA Banner Section
   ========================================================================== */

.cta-banner-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2f23 0%, #2d5a3d 100%);
  /* background: linear-gradient(135deg, #1a2f23 0%, #2d5a3d 60%, #3d7a52 100%); */
  position: relative;
  overflow: hidden;
}

.cta-banner-bg-shape {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-banner-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-banner-label {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.cta-banner-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.cta-banner-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a2f23;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-btn-primary:hover {
  background: #f0f7f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  color: #1a2f23;
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.35);
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.cta-btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
  color: #fff;
}

.cta-banner-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-visual-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 16px 24px;
  min-width: 200px;
  transition: background 0.3s ease;
}

.cta-visual-card:hover {
  background: rgba(255,255,255,0.13);
}

.cta-visual-icon {
  color: #4ade80;
  flex-shrink: 0;
}

.cta-visual-card p {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* ==========================================================================
   Responsive — New Sections
   ========================================================================== */

@media (max-width: 1024px) {
  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-choose-heading { font-size: 2rem; }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .testimonial-card-featured { transform: none; }
  .cta-banner-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-banner-visual {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .why-choose-section,
  .how-it-works-section,
  .testimonials-section,
  .cta-banner-section { padding: 72px 0; }

  .why-choose-heading,
  .how-it-works-heading,
  .testimonials-heading,
  .cta-banner-heading { font-size: 1.75rem; }

  .why-choose-right { grid-template-columns: 1fr; }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #2d5a3d, #4ade80);
    margin: 0;
  }
  .process-step { max-width: 320px; }

  .cta-banner-visual { display: none; }
  .cta-banner-actions { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Trusted Partners Section
   ========================================================================== */

.trusted-partners-section {
  padding: 40px 0;
  background: #1a2f23;
  position: relative;
  overflow: hidden;
}

/* Decorative diagonal stripes */
.trusted-partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.02) 40px,
    rgba(255, 255, 255, 0.02) 80px
  );
  pointer-events: none;
}

.partners-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.partners-label {
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.partner-logo {
  opacity: 0.5;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.1);
}

.partner-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.partner-lg-main {
  opacity: 1 !important;
  transform: none !important;
}

.partner-lg-main svg {
  color: #fff;
}

.partners-tagline {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 20px;
  font-style: italic;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .alien-hero-section {
    /* height: 500px; */
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .products-carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-sm);
  }

  .partners-logos {
    gap: var(--spacing-lg);
  }

  .partner-logo img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .products-carousel {
    grid-template-columns: 1fr;
  }

  .alien-hero-section {
    height: 500px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* ==========================================================================
   Trusted Partners Section - Clean & Professional
   ========================================================================== */

.trusted-partners-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
}

.partners-badge {
  display: inline-block;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.partners-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #374151;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partners-logo-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.partner-logo-large {
  background: #fff;
  padding: 40px 80px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.partner-logo-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.lg-partner-logo {
  height: 120px;
  width: 120px;
  display: block;
}

.partners-tagline {
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #9ca3af;
  margin-bottom: 35px;
}

.partner-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 0.9rem;
  font-weight: 500;
}

.partner-feature svg {
  color: #4b5563;
  flex-shrink: 0;
}

/* Responsive Partners */
@media (max-width: 768px) {
  .trusted-partners-section {
    padding: 60px 0;
  }

  .partners-title {
    font-size: 1.4rem;
  }

  .partner-logo-large {
    padding: 30px 50px;
  }

  .lg-partner-logo {
    height: 100px;
  }

  .partner-features {
    gap: 20px;
  }

  .partner-feature {
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Professional Footer - Green Theme
   ========================================================================== */

.alien-footer {
  background: #f3f4f6;
  color: #4b5563;
  font-size: 0.95rem;
}

.footer-main {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

/* Company Column */
.footer-company {
  padding-right: 30px;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

/* Single Logo Layout */
.footer-logo-single {
  margin-bottom: 24px;
}

.footer-logo-single .footer-logo-img {
  max-height: 60px;
  max-width: 180px;
  height: auto;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
}

.footer-logo-item {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: auto;
  width: auto;
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-logo-img.alien-logo {
  max-height: 45px;
}

.footer-logo-img.lg-logo {
  max-height: 40px;
}

.footer-logo-divider {
  width: 1px;
  height: 35px;
  background: #d1d5db;
}

.footer-company-desc {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #6b7280;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2d5a3d;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-cta-btn:hover {
  background: #3d7a52;
  transform: translateY(-2px);
  color: #fff;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.social-link:hover {
  background: #2d5a3d;
  color: #fff;
  transform: translateY(-3px);
  border-color: #2d5a3d;
}

.social-whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
}

/* Footer Headings */
.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2d5a3d;
  border-radius: 2px;
}

/* Footer Links */
.footer-links,
.footer-links li {
  list-style: none !important;
}

.footer-links {
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links li {
  margin-bottom: 12px;
}

/* Quick Links: 2 columns on mobile */
@media (max-width: 999px) {
  .footer-links--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
  }

  .footer-links--two-col li {
    margin-bottom: 8px;
  }
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-links a:hover {
  color: #2d5a3d;
  padding-left: 5px;
}

.footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #2d5a3d;
  transition: width 0.3s ease;
}

.footer-links a:hover::before {
  width: 12px;
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.footer-contact-list svg {
  color: #2d5a3d;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-list a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-list a:hover {
  color: #2d5a3d;
}

.footer-contact-list span {
  color: #4b5563;
}

/* Newsletter */
.footer-newsletter h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: #1f2937;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #9ca3af;
}

.newsletter-form button {
  padding: 12px 18px;
  background: #2d5a3d;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #3d7a52;
}

/* Footer Bottom */
.footer-bottom {
  background: #e5e7eb;
  padding: 25px 0;
  border-top: 1px solid #d1d5db;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Policy links — hidden on desktop, shown on mobile */
.footer-bottom-links {
  display: none;
}

.footer-bottom .footer-social {
  display: flex;
  gap: 10px;
}

.footer-bottom .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-bottom .social-link:hover {
  background: #2d5a3d;
  color: #fff;
  border-color: #2d5a3d;
}

.footer-bottom .social-link--active {
  background: #2d5a3d;
  color: #fff;
  border-color: #2d5a3d;
}

.copyright {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
  text-align: center;
}

.copyright a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #2d5a3d;
}

/* Payment icons removed - keeping placeholder for backwards compatibility */
.footer-payments {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 48px 0 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-col {
    padding-right: 0;
    text-align: center;
  }

  .footer-company {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo-single {
    display: flex;
    justify-content: center;
  }

  .footer-company-desc {
    text-align: center;
  }

  /* Links in 2-column grid on mobile */
  .footer-links {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    padding: 0 !important;
    margin: 0 auto !important;
    max-width: 260px;
  }

  .footer-links li {
    margin-bottom: 0;
    text-align: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-links a {
    padding-left: 0 !important;
    justify-content: center;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Contact items in 2x2 grid, centered */
  .footer-contact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin: 0 auto;
    max-width: 340px;
  }

  .footer-contact-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 8px;
  }

  .footer-contact-list svg {
    margin-top: 0;
  }

  .footer-contact-list span,
  .footer-contact-list a {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Bottom bar: stack on mobile, centered */
  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom .footer-social {
    display: none;
  }

  .footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #6b7280;
  }

  .footer-bottom-links a {
    color: #4b5563;
    text-decoration: none;
  }

  .footer-bottom-links a:hover {
    color: #2d5a3d;
  }

  .footer-bottom-links span {
    color: #9ca3af;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 50px 0 30px;
  }

  .payment-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================================
   ABOUT US PAGE STYLES
   ========================================================================== */

/* About Page Wrapper */
.about-page-wrapper {
  overflow-x: hidden;
}

/* Section Badge - Reusable */
.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b7280;
  background: #f3f4f6;
  padding: 8px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================================================
   About Hero Section
   ========================================================================== */
.about-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  background: #1a2f23;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/Vertical-Solution-Page-Office-01-Hero-Desktop.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.9) 0%,
    rgba(55, 65, 81, 0.85) 100%
  );
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 80px;
}

.about-hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: 30px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.about-hero-subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Our Story Section
   ========================================================================== */
.about-story-section {
  padding: 100px 0;
  background: #fff;
}

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

.story-images {
  position: relative;
  height: 80%;
}

.story-image-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.story-image-main img {
  width: 100%;
  height:600px;
  object-fit: cover;
  display: block;
}

.story-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid #fff;
}

.story-image-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.story-experience-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a2f23;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.exp-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.9;
}

.story-content {
  padding-left: 20px;
}

.story-lead {
  font-size: 1.2rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.story-text {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 20px;
}

.story-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #374151;
}

.highlight-item svg {
  color: #374151;
  flex-shrink: 0;
}

/* ==========================================================================
   Mission & Vision Section
   ========================================================================== */
.about-mission-section {
  padding: 100px 0;
  background: #f9fafb;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.mv-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #374151;
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.8;
}

/* ==========================================================================
   Core Values Section
   ========================================================================== */
.about-values-section {
  padding: 100px 0;
  background: #fff;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 40px 30px;
  background: #f9fafb;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.value-card:hover {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #374151;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card:hover .value-icon {
  background: #1a2f23;
  color: #fff;
}

.value-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.about-why-section {
  padding: 100px 0;
  background: #f9fafb;
}

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

.why-intro {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1a2f23;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.why-feature-icon svg {
  width: 18px;
  height: 18px;
}

.why-feature-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 6px;
}

.why-feature-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
}

.why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  height: 70%;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(31, 41, 55, 0.95) 0%,
    transparent 100%
  );
  padding: 60px 30px 30px;
}

.overlay-content {
  text-align: center;
}

.overlay-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.overlay-text {
  font-size: 0.9rem;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   Achievements Section
   ========================================================================== */
.about-achievements-section {
  padding: 100px 0;
  background: #1a2f23;
}

.achievements-header {
  text-align: center;
  margin-bottom: 60px;
}

.achievements-header .section-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #d1d5db;
}

.achievements-header .section-title {
  color: #fff;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.achievement-card {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.achievement-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #9ca3af;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

.achievement-label {
  font-size: 0.9rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   About Partners Section
   ========================================================================== */
.about-partners-section {
  padding: 100px 0;
  background: #fff;
}

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

.about-page-wrapper .section-title {
  margin-bottom: 20px;
  text-align: left;
}
.about-page-wrapper .values-header .section-title, .about-page-wrapper .achievements-header .section-title {
  margin-bottom: 20px;
  text-align: center;
}

 .partners-info .section-title {
  margin-bottom: 20px;
 
}

.partners-info p {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
}

.partner-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partner-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.partner-benefits li:last-child {
  border-bottom: none;
}

.partner-benefits svg {
  color: #374151;
  flex-shrink: 0;
}

.partner-logo-display {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
    width: 60%;
  padding: 60px 40px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
   margin: 0 auto;
}

.lg-logo-large {
  max-width: 200px;
  height: auto;
  /* margin-bottom: 20px; */
}

.partner-tagline {
  display: block;
  font-size: 1.1rem;
  color: #6b7280;
  font-style: italic;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.about-cta-section {
  padding: 100px 0;
  background: #1e3d29;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-btn-primary {
  background: #fff;
  color: #2d5a3d;
}

.cta-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #2d5a3d;
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: #fff;
}

.cta-contact-quick {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.cta-contact-quick a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-left: 8px;
}

.cta-contact-quick a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   About Page Responsive Styles
   ========================================================================== */
@media (max-width: 1100px) {
  .story-grid,
  .why-grid,
  .partners-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .story-content {
    padding-left: 0;
  }

  .why-image {
    order: -1;
  }

  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-stats {
    gap: 40px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 500px;
  }

  .about-hero-content {
    padding: 80px 0 60px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-hero-stats {
    flex-direction: column;
    gap: 25px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .about-story-section,
  .about-mission-section,
  .about-values-section,
  .about-why-section,
  .about-achievements-section,
  .about-partners-section,
  .about-cta-section {
    padding: 70px 0;
  }

  .story-image-accent {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .achievements-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .achievement-card {
    padding: 30px 15px;
  }

  .achievement-number {
    font-size: 2.2rem;
  }

  .mv-card {
    padding: 35px 25px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }


}

@media (max-width: 480px) {
    .partner-logo-display {
        height: 100%;
    width: 80%;
    padding: 40px 25px !important;
  }
  .about-hero-title {
    font-size: 1.7rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-hero-badge {
    font-size: 0.7rem;
    padding: 8px 18px;
  }

  .story-image-main img {
    height: 280px;
  }

  .why-image img {
    height: 350px;
  }

  .value-card {
    padding: 30px 20px;
  }

  .achievements-grid {
    gap: 15px;
  }

  .achievement-icon {
    width: 50px;
    height: 50px;
  }

  .achievement-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================================================
   GLOBAL RESPONSIVE STYLES - Comprehensive Mobile Optimization
   ========================================================================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
  :root {
    --text-5xl: 2.5rem;
    --text-4xl: 2rem;
    --text-3xl: 1.5rem;
  }

  .container {
    padding: 0 24px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --spacing-4xl: 60px;
    --spacing-3xl: 48px;
  }

  /* Hero Section Tablet */
  .alien-hero-diagonal {
    min-height: 500px;
  }

  .hero-content-wrapper {
    padding: 60px 0;
  }

  .hero-content-centered h1 {
    font-size: var(--text-4xl);
  }

  .hero-content-centered .hero-subtitle {
    font-size: var(--text-base);
  }

  /* Stats Section Tablet */
  .countdown-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Solutions Grid Tablet */
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large Mobile / Small Tablets */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2rem;
    --text-4xl: 1.75rem;
    --text-3xl: 1.375rem;
    --text-2xl: 1.25rem;
    --spacing-4xl: 50px;
    --spacing-3xl: 40px;
    --container-padding: 16px;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero Section Mobile */
  .alien-hero-diagonal {
    min-height: 450px;
  }

  .hero-content-wrapper {
    padding: 50px 0;
  }

  .hero-content-centered h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-content-centered .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta-buttons .btn-primary,
  .hero-cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  /* Slideshow Controls Mobile */
  .hero-slideshow-nav {
    display: none;
  }

  .hero-slideshow-dots {
    bottom: 20px;
  }

  /* Stats Section Mobile */
  .stats-countdown-section {
    padding: 45px 0;
  }

  .stats-header-text {
    margin-bottom: 24px;
  }

  .stats-header-text h2 {
    font-size: 1.6rem;
  }

  .stats-header-text p {
    font-size: 0.95rem;
  }

  .countdown-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .countdown-card {
    padding: 20px 14px;
  }

  .countdown-number .count-value {
    font-size: 2.2rem;
  }

  /* Solutions Section Mobile */
  .solutions-section {
    padding: 50px 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .solution-card {
    min-height: 200px;
  }

  /* Partners Section Mobile */
  .trusted-partners-section {
    padding: 40px 0;
  }

  .partners-title {
    font-size: 1.25rem;
  }

  .lg-partner-logo {
    max-width: 120px;
  }

  .partner-features {
    flex-direction: column;
    gap: 12px;
  }

  /* Global Text Adjustments */
  .section-title,
  .section-heading {
    font-size: 1.5rem !important;
  }

  .section-subtitle,
  .section-desc {
    font-size: 0.9rem !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --text-5xl: 1.75rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.25rem;
    --text-2xl: 1.125rem;
    --container-padding: 14px;
  }

  .container {
    padding: 0 14px;
  }

  /* Hero Section Small Mobile */
  .alien-hero-diagonal {
    min-height: 400px;
  }

  .hero-content-centered h1 {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  /* Stats Small Mobile */
  .stats-countdown-section {
    padding: 40px 0;
  }

  .stats-header-text {
    margin-bottom: 20px;
  }

  .stats-header-text h2 {
    font-size: 1.5rem;
  }

  .stats-header-text p {
    font-size: 0.9rem;
  }

  .countdown-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .countdown-card {
    padding: 18px 12px;
    border-radius: 12px;
  }

  .countdown-number {
    margin-bottom: 8px;
  }

  .countdown-number .count-value {
    font-size: 1.9rem;
  }

  .countdown-number .count-suffix {
    font-size: 1.1rem;
  }

  .countdown-special .count-value {
    font-size: 1.7rem;
  }

  .countdown-number .count-divider {
    font-size: 1.8rem;
  }

  .countdown-label {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }

  .countdown-bg-icon {
    width: 60px;
    height: 60px;
    top: -10px;
    right: -10px;
  }

  /* Products Grid Small Mobile */
  .products-track {
    grid-template-columns:  1fr;
    gap: 10px;
  }

  .product-card-pro {
    border-radius: 10px;
  }

  .product-details {
    padding: 12px;
  }

  .product-name {
    font-size: 0.85rem;
  }

  .product-price {
    font-size: 0.9rem;
  }

  .shop-now-btn {
    display: none;
  }

  /* Footer Small Mobile */
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-logo-text {
    font-size: 1.4rem;
  }

  .footer-company-desc {
    font-size: 0.85rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-heading {
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-links a,
  .footer-contact-list li {
    font-size: 0.85rem;
  }

  /* About Page Small Mobile */
  .about-hero-title {
    font-size: 1.5rem !important;
  }

  .about-hero-subtitle {
    font-size: 0.9rem !important;
  }

  .mv-card {
    padding: 25px 20px;
  }

  .value-card {
    padding: 24px 16px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
  }

  /* CTA Buttons Small Mobile */
  .cta-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-content-centered h1 {
    font-size: 1.35rem;
  }

  .countdown-cards-grid {
    gap: 8px;
  }

  .countdown-number .count-value {
    font-size: 1.75rem;
  }

  .products-track {
    gap: 8px;
  }

  .product-details {
    padding: 10px;
  }
}

/* ==========================================================================
   UTILITY CLASSES - Responsive Helpers
   ========================================================================== */

/* Hide on mobile */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Show only on mobile */
@media (min-width: 769px) {
  .show-mobile-only {
    display: none !important;
  }
}

/* Hide on tablet and below */
@media (max-width: 992px) {
  .hide-tablet {
    display: none !important;
  }
}

/* Text alignment responsive */
@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center !important;
  }
}

/* Flex direction responsive */
@media (max-width: 768px) {
  .flex-col-mobile {
    flex-direction: column !important;
  }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
  .alien-footer,
  .lg-top-announcement-bar,
  .hero-slideshow-nav,
  .hero-slideshow-dots,
  .quick-actions {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}

/* ==========================================================================
   RESIDENCE SOLUTION PAGE - Creative, Minimal, Professional
   ========================================================================== */

/* Residence Hero Section */
.residence-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.residence-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.residence-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.residence-hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.residence-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0;
}

.residence-hero .hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.residence-hero .hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.residence-hero .hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 550px;
  margin-bottom: 40px;
}

.residence-hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: var(--color-primary-light);
  transform: translateX(5px);
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* Key Benefits Section */
.residence-benefits {
  padding: 100px 0;
  background: #fff;
}

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(45, 90, 61, 0.1);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.benefits-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.benefit-card {
  padding: 40px 32px;
  background: var(--color-gray-50);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.benefit-card:hover {
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--color-gray-200);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 20px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.benefit-card > p {
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefit-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-features li {
  padding: 8px 0;
  color: var(--color-gray-700);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Room Solutions Section */
.room-solutions {
  padding: 100px 0;
  background: var(--color-gray-50);
}

.section-header-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header-centered h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header-centered p {
  color: var(--color-gray-600);
  font-size: 1.1rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}

.room-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.room-card.room-large {
  grid-column: span 2;
  grid-row: span 2;
}

.room-image {
  position: absolute;
  inset: 0;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.room-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.room-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.room-content h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.room-card.room-large .room-content h3 {
  font-size: 1.75rem;
}

.room-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: none;
}

.room-card.room-large .room-content p {
  display: block;
}

.room-recommendations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.rec-tag {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 20px;
}

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.room-card:hover .room-link {
  opacity: 1;
  transform: translateY(0);
}

.room-link:hover {
  color: var(--color-primary-bright);
}

/* Product Lineup Section */
.product-lineup {
  padding: 100px 0;
  background: #fff;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lineup-card {
  display: block;
  padding: 36px 28px;
  background: var(--color-gray-50);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.lineup-card:hover {
  background: #fff;
  border-color: var(--color-gray-200);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.lineup-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d5a3d;
  color: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
}

.lineup-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.lineup-card p {
  color: var(--color-gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.lineup-arrow {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lineup-card:hover .lineup-arrow {
  background: var(--color-primary);
  color: #fff;
  transform: translateX(5px);
}

/* Residence Products Section */
.residence-products {
  padding: 100px 0;
  background: var(--color-gray-50);
}

.products-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.products-header-flex h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-top: 10px;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  gap: 12px;
  color: var(--color-primary-dark);
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.featured-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
}

.featured-product-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 1;
  background: var(--color-gray-100);
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}

.featured-product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  background: #2d5a3d;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 6px;
}

.product-details {
  padding: 24px;
}

.product-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-sku {
  display: block;
  color: var(--color-gray-500);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.product-price del {
  color: var(--color-gray-400);
  font-size: 0.9rem;
  font-weight: 400;
  margin-right: 8px;
}

.product-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--color-gray-100);
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.product-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: #fff;
}

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

.trust-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.trust-content > p {
  color: var(--color-gray-600);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--color-gray-50);
  border-radius: 12px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--color-gray-600);
  font-size: 0.85rem;
}

.trust-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-gray-50);
  border-radius: 10px;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.trust-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-badge svg {
  color: var(--color-primary);
}

.trust-badge span {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.9rem;
}

/* Residence CTA Section */
.residence-cta {
  padding: 80px 0;
  background: #f9fafb;
}

.cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 70px;
  background: #2d5a3d;
  border-radius: 24px;
  gap: 40px;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: var(--color-gray-100);
  transform: translateX(5px);
  color: var(--color-primary);
}

.btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* ==========================================================================
   RESIDENCE PAGE - Responsive Design
   ========================================================================== */

@media (max-width: 1200px) {
  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .room-card.room-large {
    grid-column: span 3;
    grid-row: span 1;
  }

  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .residence-hero {
    min-height: 70vh;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .room-card.room-large {
    grid-column: span 2;
  }

  .room-card {
    min-height: 280px;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-image {
    order: -1;
    max-height: 400px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .cta-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .featured-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .residence-hero {
    min-height: 80vh;
  }

  .residence-hero-content {
    padding: 80px 0;
  }

  .residence-benefits,
  .room-solutions,
  .product-lineup,
  .residence-products,
  .trust-section {
    padding: 70px 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .room-card.room-large {
    grid-column: span 1;
  }

  .room-card {
    min-height: 300px;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .products-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .trust-stats {
    grid-template-columns: 1fr;
  }

  .trust-features {
    grid-template-columns: 1fr;
  }

  .featured-products-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    padding: 40px 24px;
  }

  .btn-cta-primary,
  .btn-cta-phone {
    padding: 14px 24px;
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .residence-hero .hero-title {
    font-size: 2rem;
  }

  .residence-hero .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .benefit-card {
    padding: 30px 24px;
  }

  .room-content {
    padding: 20px;
  }

  .lineup-card {
    padding: 28px 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ==========================================================================
   WOOCOMMERCE - Single Product Page
   ========================================================================== */

/* Product Page Container */
.woocommerce div.product,
.single-product .product {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* Product Layout - Two Columns */
.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: 100%;
}

@media (min-width: 992px) {
  .woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }

  .woocommerce div.product div.images {
    position: sticky;
    top: 120px;
  }
}

/* Product Gallery */
.woocommerce div.product div.images {
  margin-bottom: 30px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f3f4f6;
}

.woocommerce div.product div.images .flex-control-thumbs li:hover,
.woocommerce div.product div.images .flex-control-thumbs li.flex-active {
  border-color: var(--color-primary, #2d5a3d);
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Summary */
.woocommerce div.product div.summary {
  padding: 20px 0;
}

/* Product Title */
.woocommerce div.product .product_title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Product Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary, #2d5a3d);
  margin-bottom: 24px;
  display: block;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: #9ca3af;
  font-size: 1.25rem;
  font-weight: 400;
  margin-right: 12px;
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  text-decoration: none;
}

/* Short Description */
.woocommerce div.product .woocommerce-product-details__short-description {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Quantity & Add to Cart */
.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 24px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.woocommerce div.product form.cart .quantity {
  display: flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce div.product form.cart .quantity .qty {
  width: 60px;
  height: 50px;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  background: #fff;
  -moz-appearance: textfield;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce div.product form.cart .quantity button,
.woocommerce div.product form.cart .quantity .minus,
.woocommerce div.product form.cart .quantity .plus {
  width: 44px;
  height: 50px;
  border: none;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 1.25rem;
  color: #374151;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product form.cart .quantity button:hover,
.woocommerce div.product form.cart .quantity .minus:hover,
.woocommerce div.product form.cart .quantity .plus:hover {
  background: #e5e7eb;
}

/* Add to Cart Button */
.woocommerce div.product form.cart button.single_add_to_cart_button,
.woocommerce div.product form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
  padding: 16px 32px;
  background: var(--color-primary, #2d5a3d);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background: #1e3d29;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 90, 61, 0.3);
}

/* Buy Now Button */
.woocommerce div.product .buy-now-btn,
.single-product .buy-now-btn {
  padding: 16px 32px;
  background: #2d5a3d;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce div.product .buy-now-btn:hover {
  background: #8b002c;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(165, 0, 52, 0.3);
  color: #fff;
}

/* Find Retailer Button */
.woocommerce div.product .find-retailer-btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: var(--color-primary, #2d5a3d);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.woocommerce div.product .find-retailer-btn:hover {
  border-color: var(--color-primary, #2d5a3d);
  background: rgba(45, 90, 61, 0.05);
}

/* Product Benefits/Meta Info */
.woocommerce div.product .product-benefits,
.woocommerce div.product .product_meta {
  margin-top: 24px;
}

.woocommerce div.product .product-benefits li,
.woocommerce div.product .product-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #4b5563;
  font-size: 0.95rem;
  border-bottom: 1px solid #f3f4f6;
}

.woocommerce div.product .product-benefits li:last-child {
  border-bottom: none;
}

.woocommerce div.product .product-benefits li svg,
.woocommerce div.product .product-benefits li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Product Meta */
.woocommerce div.product .product_meta {
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.woocommerce div.product .product_meta > span {
  display: block;
  padding: 8px 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.woocommerce div.product .product_meta > span a {
  color: var(--color-primary, #2d5a3d);
  text-decoration: none;
}

.woocommerce div.product .product_meta > span a:hover {
  text-decoration: underline;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs {
  clear: both;
  margin-top: 60px;
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  gap: 8px;
  border-bottom: 2px solid #e5e7eb;
  overflow-x: auto;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 16px 24px;
  color: #6b7280;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #1f2937;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--color-primary, #2d5a3d);
  border-bottom-color: var(--color-primary, #2d5a3d);
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 30px 0;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs .panel p {
  color: #4b5563;
  line-height: 1.8;
}

/* Product Attributes Table */
.woocommerce div.product .woocommerce-tabs table.shop_attributes {
  width: 100%;
  border-collapse: collapse;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes tr {
  border-bottom: 1px solid #e5e7eb;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes th,
.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  padding: 14px 16px;
  text-align: left;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes th {
  font-weight: 600;
  color: #374151;
  background: #f9fafb;
  width: 30%;
}

.woocommerce div.product .woocommerce-tabs table.shop_attributes td {
  color: #4b5563;
}

/* Related Products */
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  margin-top: 80px;
  grid-column: 1 / -1;
}

.woocommerce div.product .related.products h2,
.woocommerce div.product .upsells.products h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}

/* ==========================================================================
   WOOCOMMERCE - Shop Page
   ========================================================================== */

/* Shop Page Container */
.woocommerce-page .content-container,
.woocommerce-shop .woocommerce {
  max-width: 1320px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Shop Header */
.woocommerce-products-header {
  margin-bottom: 40px;
}

.woocommerce-products-header__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
}

.woocommerce-products-header p,
.term-description p {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 600px;
}

/* Shop Layout with Sidebar */
.woocommerce-shop .woocommerce,
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .woocommerce-shop .woocommerce,
  .shop-layout {
    grid-template-columns: 1fr;
  }
}

/* Shop Sidebar/Filters */
.shop-sidebar,
.woocommerce-sidebar {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  position: sticky;
  top: 120px;
}

.shop-sidebar .widget-title,
.filter-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-sidebar .reset-filters,
.reset-all-link {
  font-size: 0.85rem;
  color: var(--color-primary, #2d5a3d);
  text-decoration: none;
  font-weight: 500;
}

.shop-sidebar .reset-filters:hover {
  text-decoration: underline;
}

/* Price Range Slider */
.price-slider-wrapper,
.woocommerce .widget_price_filter {
  padding: 20px 0;
  border-bottom: 1px solid #e5e7eb;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: #e5e7eb;
  height: 6px;
  border-radius: 3px;
  border: none;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  background: var(--color-primary, #2d5a3d);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  width: 18px;
  height: 18px;
  background: var(--color-primary, #2d5a3d);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  top: -6px;
  cursor: pointer;
}

.woocommerce .widget_price_filter .price_slider_amount {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.woocommerce .widget_price_filter .price_slider_amount .price_label {
  font-size: 0.9rem;
  color: #4b5563;
}

/* Filter Checkboxes */
.filter-checkbox-list,
.woocommerce-widget-layered-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-checkbox-list li,
.woocommerce-widget-layered-nav-list li {
  padding: 10px 0;
}

.filter-checkbox-list label,
.woocommerce-widget-layered-nav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}

.filter-checkbox-list input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--color-primary, #2d5a3d);
}

/* Products Grid */
.woocommerce ul.products,
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 1100px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* Product Card */
.woocommerce ul.products li.product {
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: transparent;
}

/* Product Image */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f8f9fa;
  padding: 20px;
  margin: 0;
  transition: transform 0.4s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.05);
}

/* Product Info */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  padding: 16px 20px 8px;
  margin: 0;
  line-height: 1.4;
}

.woocommerce ul.products li.product .price {
  padding: 0 20px 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary, #2d5a3d);
  display: block;
}

.woocommerce ul.products li.product .price del {
  color: #9ca3af;
  font-size: 0.95rem;
  font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

/* Product Card Actions */
.woocommerce ul.products li.product .product-actions,
.woocommerce ul.products li.product .button-wrap {
  padding: 0 20px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Add to Cart Button - Shop Page */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a.button {
  flex: 1;
  padding: 12px 20px;
  background: var(--color-primary, #2d5a3d);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: #1e3d29;
  color: #fff !important;
}

/* Compare Checkbox */
.woocommerce ul.products li.product .compare-checkbox,
.product-compare-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #6b7280;
}

.woocommerce ul.products li.product .compare-checkbox input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary, #2d5a3d);
}

/* Sale Badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2d5a3d;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 5;
}

/* Product Wrapper for Badges */
.woocommerce ul.products li.product {
  position: relative;
}

/* Shop Ordering/Sorting */
.woocommerce .woocommerce-ordering {
  margin-bottom: 24px;
}

.woocommerce .woocommerce-ordering select {
  padding: 12px 40px 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #374151;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Results Count */
.woocommerce .woocommerce-result-count {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
  margin-top: 50px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0;
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #374151;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--color-primary, #2d5a3d);
  color: var(--color-primary, #2d5a3d);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-primary, #2d5a3d);
  border-color: var(--color-primary, #2d5a3d);
  color: #fff;
}

/* No Products Found */
.woocommerce-info,
.woocommerce-message {
  padding: 20px 24px;
  background: #f3f4f6;
  border-left: 4px solid var(--color-primary, #2d5a3d);
  border-radius: 8px;
  color: #374151;
  margin-bottom: 24px;
}

/* ==========================================================================
   WOOCOMMERCE - Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
  /* Single Product */
  .woocommerce div.product .product_title {
    font-size: 1.5rem;
  }

  .woocommerce div.product p.price {
    font-size: 1.5rem;
  }

  .woocommerce div.product form.cart {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce div.product form.cart .quantity {
    justify-content: center;
  }

  .woocommerce div.product form.cart button.single_add_to_cart_button {
    min-width: 100%;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  /* Shop Page */
  .woocommerce-products-header__title {
    font-size: 1.75rem;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 0.9rem;
    padding: 12px 14px 6px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 1.1rem;
    padding: 0 14px 12px;
  }

  .woocommerce ul.products li.product .product-actions {
    padding: 0 14px 14px;
    flex-direction: column;
  }

  .woocommerce ul.products li.product .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product {
    padding: 20px 16px 60px;
  }
}

/* ==========================================================================
   BUTTON LOADING STATES & ANIMATIONS
   ========================================================================== */

/* Loading spinner animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spin {
  animation: spin 1s linear infinite;
}

/* Button loading state */
.add-to-cart-btn.loading,
.single_add_to_cart_button.loading,
.buy-now-btn.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

/* Button added state (success) */
.add-to-cart-btn.added,
.single_add_to_cart_button.added {
  background: #10b981 !important;
  border-color: #10b981 !important;
}

/* Related product add to cart button */
.related-add-cart {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2d5a3d;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(45, 90, 61, 0.3);
  z-index: 5;
}

.related-add-cart:hover {
  background: #1e3d29;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}

.related-add-cart .cart-icon {
  font-size: 1.1rem;
}

/* ==========================================================================
   WOOCOMMERCE NOTICES & MESSAGES
   ========================================================================== */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.woocommerce-message {
  background: rgba(45, 90, 61, 0.1);
  border-left: 4px solid #2d5a3d;
  color: #1e3d29;
}

.woocommerce-info {
  background: #f3f4f6;
  border-left: 4px solid #6b7280;
  color: #374151;
}

.woocommerce-error {
  background: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  color: #991b1b;
}

.woocommerce-message a.button,
.woocommerce-info a.button {
  margin-left: auto;
  padding: 10px 20px;
  background: #2d5a3d;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-message a.button:hover {
  background: #1e3d29;
}

/* ==========================================================================
   RETAIL SOLUTION PAGE STYLES
   ========================================================================== */

/* Retail Hero Section */
.retail-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.retail-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.retail-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.retail-hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 61, 41, 0.85) 0%,
    rgba(45, 90, 61, 0.7) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.retail-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 80px;
}

.retail-hero-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
  color: #fff;
}

.hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.retail-hero .hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.retail-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}

.retail-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.retail-hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.retail-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #2d5a3d;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.retail-hero .btn-hero-primary:hover {
  background: #2d5a3d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.retail-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.retail-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Retail Benefits Section */
.retail-benefits {
  padding: 100px 0;
  background: #fff;
}

.retail-benefits .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.retail-benefits .benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.retail-benefits .section-description {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 16px;
}

.benefits-grid-two {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.benefit-card-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: #f9fafb;
  border-radius: 24px;
  overflow: hidden;
}

.benefit-card-large:nth-child(even) {
  direction: rtl;
}

.benefit-card-large:nth-child(even) > * {
  direction: ltr;
}

.benefit-card-large .benefit-visual {
  height: 100%;
  min-height: 400px;
}

.benefit-card-large .benefit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card-large .benefit-content {
  padding: 50px;
}

.benefit-card-large .benefit-icon {
  width: 80px;
  height: 80px;
  background: #2d5a3d;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.benefit-card-large h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.benefit-card-large p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-card-large .benefit-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card-large .benefit-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #374151;
  font-weight: 500;
  border-bottom: 1px solid #e5e7eb;
}

.benefit-card-large .benefit-features li:last-child {
  border-bottom: none;
}

.benefit-card-large .benefit-features li svg {
  color: #2d5a3d;
  flex-shrink: 0;
}

/* Retail Use Cases Section */
.retail-usecases {
  padding: 100px 0;
  background: #f9fafb;
}

.retail-usecases .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.usecase-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.usecase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.usecase-card.usecase-featured {
  grid-column: span 2;
}

.usecase-card.usecase-featured .usecase-image {
  height: 300px;
}

.usecase-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.usecase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.usecase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.usecase-content {
  padding: 28px;
}

.usecase-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2d5a3d;
  margin-bottom: 10px;
}

.usecase-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.usecase-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.usecase-product {
  margin-bottom: 16px;
}

.product-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.usecase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d5a3d;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.usecase-link:hover {
  gap: 12px;
}

/* Retail Product Lineup */
.retail-lineup {
  padding: 100px 0;
  background: #fff;
}

.retail-lineup .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.retail-lineup .lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.retail-lineup .lineup-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 24px;
  background: #f9fafb;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.retail-lineup .lineup-card:hover {
  background: #fff;
  border-color: #2d5a3d;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(45, 90, 61, 0.15);
}

.retail-lineup .lineup-image {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.retail-lineup .lineup-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.retail-lineup .lineup-icon {
  width: 80px;
  height: 80px;
  background: #2d5a3d;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  transition: transform 0.3s ease;
}

.retail-lineup .lineup-card:hover .lineup-icon {
  transform: scale(1.1);
}

.retail-lineup .lineup-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.retail-lineup .lineup-card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.retail-lineup .lineup-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2d5a3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.retail-lineup .lineup-card:hover .lineup-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* Retail Products Section */
.retail-products {
  padding: 100px 0;
  background: #f9fafb;
}

.retail-products .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Retail Trust Section */
.retail-trust {
  padding: 100px 0;
  background: #fff;
}

.retail-trust .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Retail Resources Section */
.retail-resources {
  padding: 100px 0;
  background: #f9fafb;
}

.retail-resources .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.retail-resources .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.retail-resources .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.retail-resources .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.resources-grid-retail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card-retail {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.resource-card-retail:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #2d5a3d;
}

.resource-card-retail .resource-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #2d5a3d;
  transition: all 0.3s ease;
}

.resource-card-retail:hover .resource-icon {
  background: #2d5a3d;
  color: #fff;
}

.resource-card-retail h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.resource-card-retail p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.resource-card-retail .resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d5a3d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-card-retail .resource-link:hover {
  gap: 12px;
  color: #3d7a52;
}

/* Retail CTA Section */
.retail-cta {
  padding: 100px 0;
  /* background: #1e3d29; */
}

.retail-cta .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.retail-cta .cta-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.retail-cta .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.retail-cta .cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.retail-cta .cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.retail-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #2d5a3d;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.retail-cta .btn-cta-primary:hover {
  background: #f9fafb;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.retail-cta .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.retail-cta .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Retail Page Responsive */
@media (max-width: 1024px) {
  .benefit-card-large {
    grid-template-columns: 1fr;
  }

  .benefit-card-large:nth-child(even) {
    direction: ltr;
  }

  .benefit-card-large .benefit-visual {
    min-height: 300px;
  }

  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecase-card.usecase-featured {
    grid-column: span 2;
  }

  .retail-lineup .lineup-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .retail-trust .trust-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .resources-grid-retail {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .retail-hero {
    min-height: 100vh;
  }

  .retail-hero .hero-title {
    font-size: 2rem;
  }

  .retail-hero .hero-actions {
    flex-direction: column;
  }

  .retail-benefits,
  .retail-usecases,
  .retail-lineup,
  .retail-products,
  .retail-trust,
  .retail-resources {
    padding: 60px 0;
  }

  .benefit-card-large .benefit-content {
    padding: 30px;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .usecase-card.usecase-featured {
    grid-column: span 1;
  }

  .retail-lineup .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .resources-grid-retail {
    grid-template-columns: 1fr;
  }

  .retail-cta .cta-card {
    flex-direction: column;
    text-align: center;
  }

  .retail-cta .cta-content h2 {
    font-size: 1.75rem;
  }

  .retail-cta .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .retail-cta .btn-cta-primary,
  .retail-cta .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .retail-hero-content {
    padding: 100px 0 60px;
  }

  .retail-hero .hero-subtitle {
    font-size: 1rem;
  }

  .retail-lineup .lineup-grid {
    grid-template-columns: 1fr;
  }

  .retail-lineup .lineup-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   OFFICE SOLUTION PAGE STYLES
   ========================================================================== */

/* Office Hero Section */
.office-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.office-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.office-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 30, 45, 0.9) 0%,
    rgba(30, 61, 41, 0.8) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.office-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 140px 0 100px;
}

.office-hero-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.office-hero .hero-label {
  display: inline-block;
  background: rgba(45, 90, 61, 0.3);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #4ade80;
  margin-bottom: 28px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.office-hero .hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 650px;
}

.office-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.office-hero .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.office-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2d5a3d;
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.4);
}

.office-hero .btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 35px rgba(45, 90, 61, 0.5);
}

.office-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.office-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat .stat-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Office Benefits Section */
.office-benefits {
  padding: 120px 0;
  background: #fff;
}

.office-benefits .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.office-benefits .benefits-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.office-benefits .section-desc {
  color: #6b7280;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-top: 16px;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card-office {
  background: #f9fafb;
  border-radius: 24px;
  padding: 40px 35px;
  border: 1px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card-office::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #2d5a3d;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card-office:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.benefit-card-office:hover::before {
  transform: scaleX(1);
}

.benefit-icon-wrap {
  margin-bottom: 28px;
}

.benefit-icon-circle {
  width: 72px;
  height: 72px;
  background: #2d5a3d;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}

.benefit-card-office h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.benefit-card-office > p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

.benefit-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #2d5a3d;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Office Solutions Section */
.office-solutions {
  padding: 120px 0;
  background: #f9fafb;
}

.office-solutions .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.solutions-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}

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

.solution-block.reverse {
  direction: rtl;
}

.solution-block.reverse > * {
  direction: ltr;
}

.solution-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f2937;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-badge.green {
  background: #2d5a3d;
  color: #fff;
}

.solution-badge.gold {
  background: #f59e0b;
  color: #fff;
}

.solution-content {
  padding: 20px 0;
}

.solution-number {
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(45, 90, 61, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.solution-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.solution-content > p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #374151;
  font-weight: 500;
}

.feature-item svg {
  color: #2d5a3d;
  flex-shrink: 0;
}

/* Office Integration Section */
.office-integration {
  padding: 120px 0;
  background: #1e3d29;
}

.office-integration .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.integration-content .section-label {
  color: #4ade80;
}

.integration-content h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.integration-content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.integration-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.integration-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.integration-feature .feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}

.integration-feature h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.integration-feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn-integration {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #2d5a3d;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-integration:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Integration Visual Dashboard */
.integration-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 450px;
  width: 100%;
}

.visual-screen {
  background: #1a2f23;
  border-radius: 16px;
  overflow: hidden;
}

.screen-header {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  background: #142119;
}

.screen-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #374151;
}

.screen-header .dot:first-child {
  background: #ef4444;
}
.screen-header .dot:nth-child(2) {
  background: #f59e0b;
}
.screen-header .dot:nth-child(3) {
  background: #10b981;
}

.screen-content {
  padding: 24px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.stat-row .stat-label {
  width: 100px;
  font-size: 0.85rem;
  color: #9ca3af;
}

.stat-row .stat-bar {
  flex: 1;
  height: 8px;
  background: #374151;
  border-radius: 4px;
  overflow: hidden;
}

.stat-row .stat-bar span {
  display: block;
  height: 100%;
  background: #2d5a3d;
  border-radius: 4px;
}

.stat-row .stat-bar.green span {
  background: #10b981;
}

.stat-row .stat-bar.blue span {
  background: #3b82f6;
}

.stat-row .stat-percent {
  width: 50px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.zone {
  padding: 16px;
  background: #1a2f23;
  border-radius: 10px;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.zone.active {
  background: #2d5a3d;
  color: #fff;
}

/* Office Product Lineup */
.office-lineup {
  padding: 120px 0;
  background: #fff;
}

.office-lineup .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.lineup-grid-office {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.lineup-card-office {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px;
  background: #f9fafb;
  border-radius: 20px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.lineup-card-office:hover {
  background: #fff;
  border-color: #2d5a3d;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(45, 90, 61, 0.12);
}

.lineup-card-office .card-icon {
  width: 80px;
  height: 80px;
  background: #2d5a3d;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.lineup-card-office:hover .card-icon {
  transform: scale(1.1);
}

.lineup-card-office .card-content {
  flex: 1;
}

.lineup-card-office h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.lineup-card-office p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.lineup-card-office .card-capacity {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.lineup-card-office .card-arrow {
  width: 44px;
  height: 44px;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.lineup-card-office:hover .card-arrow {
  background: #2d5a3d;
  color: #fff;
}

/* Office Case Studies Section */
.office-cases {
  padding: 120px 0;
  background: #f9fafb;
}

.office-cases .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.case-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.case-card.featured {
  grid-row: span 1;
}

.case-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-card.featured .case-image {
  height: 280px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.case-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1f2937;
}

.case-badge.platinum {
  background: #6366f1;
  color: #fff;
}

.case-badge.gold {
  background: #f59e0b;
  color: #fff;
}

.case-content {
  padding: 28px;
}

.case-location {
  /* display: inline-block; */
  display: none;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d5a3d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-content h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.case-content p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-stats {
  display: flex;
  gap: 30px;
}

.case-stat {
  display: flex;
  flex-direction: column;
}

.case-stat .value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d5a3d;
}

.case-stat .label {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Office Products Section */
.office-products {
  padding: 100px 0;
  background: #fff;
}

.office-products .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Office Resources Section */
.office-resources {
  padding: 100px 0;
  background: #f9fafb;
}

.office-resources .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.resources-header {
  margin-bottom: 50px;
}

.resources-grid-office {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card-office {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.resource-card-office:hover {
  border-color: #2d5a3d;
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.resource-card-office .resource-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #2d5a3d;
}

.resource-card-office h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.resource-card-office p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-card-office a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2d5a3d;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.resource-card-office a:hover {
  gap: 12px;
}

/* Office CTA Section */
.office-cta {
  padding: 100px 0;
  background: #1a2f23;
}

.office-cta .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.office-cta .cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  background: #2d5a3d;
  padding: 60px 80px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(45, 90, 61, 0.4);
}

.office-cta .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.office-cta .cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.office-cta .cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.office-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #2d5a3d;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.office-cta .btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.office-cta .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.office-cta .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Office Page Responsive */
@media (max-width: 1200px) {
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 1024px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-block,
  .solution-block.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-block.reverse {
    direction: ltr;
  }

  .integration-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .integration-visual {
    order: -1;
  }

  .lineup-grid-office {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-card.featured {
    grid-column: span 1;
  }

  .resources-grid-office {
    grid-template-columns: repeat(2, 1fr);
  }

  .office-cta .cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .office-cta .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .office-cta .btn-cta-primary,
  .office-cta .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .office-hero {
    min-height: 100vh;
  }

  .office-hero-content {
    padding: 120px 0 80px;
  }

  .office-hero .hero-title {
    font-size: 2.5rem;
  }

  .office-hero .hero-actions {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .office-benefits,
  .office-solutions,
  .office-integration,
  .office-lineup,
  .office-cases,
  .office-products,
  .office-resources {
    padding: 80px 0;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
  }

  .solution-image img {
    height: 300px;
  }

  .integration-features {
    grid-template-columns: 1fr;
  }

  .lineup-grid-office {
    grid-template-columns: 1fr;
  }

  .lineup-card-office {
    flex-direction: column;
    text-align: center;
  }

  .lineup-card-office .card-arrow {
    display: none;
  }

  .resources-grid-office {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .office-hero .hero-title {
    font-size: 2rem;
  }

  .office-hero .hero-subtitle {
    font-size: 1rem;
  }

  .solution-number {
    font-size: 3rem;
  }

  .solution-content h3 {
    font-size: 1.5rem;
  }

  .case-stats {
    flex-direction: column;
    gap: 16px;
  }

  .office-cta .cta-content h2 {
    font-size: 1.75rem;
  }

  .office-cta .cta-wrapper {
    padding: 40px 24px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   HOTEL SOLUTION PAGE STYLES
   ========================================================================== */

/* Hotel Hero Section */
.hotel-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hotel-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-hero-bg .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.92) 0%,
    rgba(45, 90, 61, 0.85) 100%
  );
}

.hotel-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 100px;
}

.hotel-hero-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-hero .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.hotel-hero .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hotel-hero .hero-breadcrumb a:hover {
  color: #4ade80;
}

.hotel-hero .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.hotel-hero .hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 30px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hotel-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.hotel-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hotel-hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hotel-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.4);
}

.hotel-hero .btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.5);
}

.hotel-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hotel-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hotel-hero .hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hotel-hero .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-hero .hero-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4ade80;
}

.hotel-hero .hero-stat .stat-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hotel Benefits Section */
.hotel-benefits {
  padding: 120px 0;
  background: #fff;
}

.hotel-benefits .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-benefits .benefits-header {
  text-align: center;
  margin-bottom: 70px;
}

.hotel-benefits .benefits-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hotel-benefits .section-desc {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hotel-benefits .benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card-hotel {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 35px;
  transition: all 0.4s ease;
}

.benefit-card-hotel:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.benefit-card-hotel .benefit-icon-wrap {
  margin-bottom: 24px;
}

.benefit-card-hotel .benefit-icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  transition: all 0.3s ease;
}

.benefit-card-hotel:hover .benefit-icon-circle {
  background: #2d5a3d;
  color: #fff;
}

.benefit-card-hotel h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.benefit-card-hotel > p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-card-hotel .benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card-hotel .benefit-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #4b5563;
}

.benefit-card-hotel .benefit-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5A3D' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* Hotel Spaces Section */
.hotel-spaces {
  padding: 120px 0;
  background: #f9fafb;
}

.hotel-spaces .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-spaces .section-header-centered {
  text-align: center;
  margin-bottom: 70px;
}

.hotel-spaces .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hotel-spaces .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 550px;
  margin: 0 auto;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.space-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}

.space-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.space-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.space-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 55, 0) 50%,
    rgba(31, 41, 55, 0.8) 100%
  );
}

.space-icon {
  position: absolute;
  bottom: 20px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: #2d5a3d;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.4);
}

.space-content {
  padding: 30px;
}

.space-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.space-content > p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.space-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.space-features li {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(45, 90, 61, 0.08);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #2d5a3d;
  font-weight: 500;
}

/* Hotel Smart Control Section */
.hotel-control {
  padding: 120px 0;
  background: #1a2f23;
}

.hotel-control .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.control-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 500px;
  height: 60%;

}

.control-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  border-radius: 24px;
}

.control-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.control-badge .badge-icon {
  width: 40px;
  height: 40px;
  background: #2d5a3d;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.control-badge span:last-child {
  font-weight: 700;
  color: #1f2937;
  font-size: 0.95rem;
}

.control-content .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 30px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.control-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.control-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

.control-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.control-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-number {
  width: 48px;
  height: 48px;
  background: #2d5a3d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.feature-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.btn-control {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.4);
}

.btn-control:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.5);
}

/* Hotel Product Lineup */
.hotel-lineup {
  padding: 120px 0;
  background: #fff;
}

.hotel-lineup .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-lineup .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.hotel-lineup .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hotel-lineup .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.lineup-grid-hotel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lineup-card-hotel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lineup-card-hotel:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.lineup-card-hotel .card-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lineup-card-hotel:hover .card-icon {
  background: #2d5a3d;
  color: #fff;
}

.lineup-card-hotel .card-content {
  flex: 1;
}

.lineup-card-hotel .card-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.lineup-card-hotel .card-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 10px;
}

.lineup-card-hotel .card-capacity {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #2d5a3d;
  font-weight: 600;
}

.lineup-card-hotel .card-arrow {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lineup-card-hotel:hover .card-arrow {
  background: #2d5a3d;
  color: #fff;
}

/* Hotel Case Studies */
.hotel-cases {
  padding: 120px 0;
  background: #f9fafb;
}

.hotel-cases .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-cases .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.hotel-cases .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hotel-cases .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.cases-slider-hotel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card-hotel {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}

.case-card-hotel:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.case-card-hotel .case-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.case-card-hotel .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.case-card-hotel .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 55, 0) 50%,
    rgba(31, 41, 55, 0.6) 100%
  );
}

.case-card-hotel .case-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  background: #f59e0b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-card-hotel .case-badge.luxury {
  background: #8b5cf6;
}

.case-card-hotel .case-badge.resort {
  background: #06b6d4;
}

.case-card-hotel .case-badge.spa {
  background: #ec4899;
}

.case-card-hotel .case-content {
  padding: 28px;
}

.case-card-hotel .case-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.case-card-hotel .brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}

.case-card-hotel .brand-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
}

.case-card-hotel .case-location {
  display: none;
  /* display: inline-flex; */
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 14px;
}

.case-card-hotel .case-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-card-hotel .case-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-card-hotel .case-products span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #2d5a3d;
  font-weight: 600;
}

/* Hotel Featured Products */
.hotel-products {
  padding: 120px 0;
  background: #fff;
}

.hotel-products .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-products .products-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.hotel-products .products-header-flex h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 12px;
}

.hotel-products .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hotel-products .view-all-link:hover {
  color: #3d7a52;
  gap: 12px;
}

/* Hotel Resources */
.hotel-resources {
  padding: 120px 0;
  background: #f9fafb;
}

.hotel-resources .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-resources .resources-header {
  margin-bottom: 50px;
}

.hotel-resources .resources-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 12px;
}

.resources-grid-hotel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card-hotel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.resource-card-hotel:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #2d5a3d;
}

.resource-card-hotel .resource-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.resource-card-hotel:hover .resource-icon {
  background: #2d5a3d;
  color: #fff;
}

.resource-card-hotel h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.resource-card-hotel p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.resource-card-hotel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-card-hotel a:hover {
  color: #3d7a52;
  gap: 12px;
}

.resource-card-hotel a:after {
  content: "→";
}

/* Hotel CTA Section */
.hotel-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.hotel-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hotel-cta-bg .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.95) 0%,
    rgba(45, 90, 61, 0.9) 100%
  );
}

.hotel-cta .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-cta .cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px 70px;
}

.hotel-cta .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.hotel-cta .cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.hotel-cta .cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.hotel-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hotel-cta .btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.hotel-cta .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hotel-cta .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hotel Page Responsive Styles */
@media (max-width: 1200px) {
  .control-grid {
    gap: 50px;
  }

  .lineup-grid-hotel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .hotel-hero .hero-title {
    font-size: 2.75rem;
  }

  .hotel-benefits .benefits-cards {
    grid-template-columns: 1fr;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
  }

  .control-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .control-image {
    order: -1;
  }

  .cases-slider-hotel {
    grid-template-columns: 1fr;
  }

  .hotel-cta .cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .hotel-cta .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .hotel-cta .btn-cta-primary,
  .hotel-cta .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }

  .resources-grid-hotel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hotel-hero {
    min-height: 100vh;
  }

  .hotel-hero-content {
    padding: 120px 0 80px;
  }

  .hotel-hero .hero-title {
    font-size: 2.25rem;
  }

  .hotel-hero .hero-actions {
    flex-direction: column;
  }

  .hotel-hero .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hotel-benefits,
  .hotel-spaces,
  .hotel-control,
  .hotel-lineup,
  .hotel-cases,
  .hotel-products,
  .hotel-resources {
    padding: 80px 0;
  }

  .hotel-products .products-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hotel-hero .hero-title {
    font-size: 1.85rem;
  }

  .hotel-hero .hero-subtitle {
    font-size: 1rem;
  }

  .hotel-hero .hero-stat .stat-value {
    font-size: 2rem;
  }

  .space-image {
    height: 180px;
  }

  .control-content h2 {
    font-size: 1.75rem;
  }

  .hotel-cta .cta-content h2 {
    font-size: 1.5rem;
  }

  .hotel-cta .cta-wrapper {
    padding: 40px 24px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   HOSPITAL SOLUTION PAGE STYLES
   ========================================================================== */

/* Hospital Hero Section */
.hospital-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hospital-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hospital-hero-bg .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.93) 0%,
    rgba(45, 90, 61, 0.88) 100%
  );
}

.hospital-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 100px;
}

.hospital-hero-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-hero .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.hospital-hero .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hospital-hero .hero-breadcrumb a:hover {
  color: #4ade80;
}

.hospital-hero .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.hospital-hero .hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 30px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hospital-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
}

.hospital-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.hospital-hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hospital-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.4);
}

.hospital-hero .btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.5);
}

.hospital-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hospital-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hospital-hero .hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hospital-hero .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hospital-hero .hero-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4ade80;
}

.hospital-hero .hero-stat .stat-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hospital Benefits Section */
.hospital-benefits {
  padding: 120px 0;
  background: #fff;
}

.hospital-benefits .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-benefits .benefits-header {
  text-align: center;
  margin-bottom: 70px;
}

.hospital-benefits .benefits-header h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hospital-benefits .section-desc {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid-hospital {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card-hospital {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 35px 28px;
  transition: all 0.4s ease;
}

.benefit-card-hospital:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.benefit-card-hospital .benefit-icon-wrap {
  margin-bottom: 20px;
}

.benefit-card-hospital .benefit-icon-circle {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  transition: all 0.3s ease;
}

.benefit-card-hospital:hover .benefit-icon-circle {
  background: #2d5a3d;
  color: #fff;
}

.benefit-card-hospital h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.benefit-card-hospital > p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 20px;
}

.benefit-card-hospital .benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card-hospital .benefit-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

.benefit-card-hospital .benefit-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5A3D' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* Hospital Areas Section */
.hospital-areas {
  padding: 120px 0;
  background: #f9fafb;
}

.hospital-areas .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-areas .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.hospital-areas .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hospital-areas .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
  max-width: 550px;
  margin: 0 auto;
}

.areas-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.area-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #2d5a3d;
}

.area-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 45px;
  background: #1a2f23;
  border: none;
}

.area-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.area-card .area-icon {
  width: 70px;
  height: 70px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.area-card:hover .area-icon {
  background: #2d5a3d;
  color: #fff;
}

.area-card.featured .area-icon {
  background: #2d5a3d;
  color: #fff;
}

.area-card .area-label {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d5a3d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.area-card.featured .area-label {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

.area-card .area-label.critical {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.area-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.area-card.featured h3 {
  color: #fff;
  font-size: 1.75rem;
}

.area-card > p,
.area-card .area-content > p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.area-card.featured .area-content > p {
  color: rgba(255, 255, 255, 0.8);
}

.area-card .area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-card .area-tags span {
  display: inline-block;
  padding: 6px 14px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #4b5563;
  font-weight: 500;
}

/* Featured Area Card Specifics */
.area-card.featured .area-specs {
  display: flex;
  gap: 30px;
  margin-bottom: 28px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.area-card.featured .spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.area-card.featured .spec-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #4ade80;
}

.area-card.featured .spec-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.area-card.featured .area-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.area-card.featured .area-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.area-card.featured .area-features li svg {
  color: #4ade80;
  flex-shrink: 0;
}

/* Patient Room Visual Mockup */
.area-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-mockup.patient-room {
  background: #142119;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 380px;
}

.room-temp-display {
  text-align: center;
  margin-bottom: 24px;
}

.room-temp-display .temp-value {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.room-temp-display .temp-status {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(74, 222, 128, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  color: #4ade80;
  font-weight: 600;
  margin-top: 10px;
}

.room-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.room-controls .control-btn {
  width: 50px;
  height: 50px;
  background: #1a2f23;
  border: 1px solid #374151;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
}

.room-controls .control-btn.active {
  background: #2d5a3d;
  border-color: #2d5a3d;
  color: #fff;
}

.room-status {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-status .status-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.room-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.room-status .status-dot.green {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.room-status .status-dot.blue {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

/* Hospital Air Quality Section */
.hospital-airquality {
  padding: 120px 0;
  background: #1a2f23;
}

.hospital-airquality .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.airquality-content .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 30px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.airquality-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.airquality-content > p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

.purification-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #2d5a3d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.airquality-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aq-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.aq-stat .aq-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: #4ade80;
}

.aq-stat .aq-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Air Quality Visual Diagram */
.airquality-visual {
  display: flex;
  justify-content: center;
}

.aq-diagram {
  background: #142119;
  border-radius: 24px;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.diagram-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.diagram-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(74, 222, 128, 0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4ade80;
}

.diagram-status.online:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.diagram-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.aq-meter {
  text-align: center;
}

.meter-circle {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
}

.meter-circle svg {
  width: 100%;
  height: 100%;
}

.meter-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.meter-value .value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.meter-value .unit {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.meter-label {
  font-size: 1rem;
  font-weight: 600;
  color: #4ade80;
}

.aq-readings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reading-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #1a2f23;
  border-radius: 12px;
}

.reading-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reading-icon.pm25 {
  background: rgba(139, 92, 246, 0.2);
}

.reading-icon.pm25:before {
  content: "PM";
  font-size: 0.65rem;
  font-weight: 700;
  color: #8b5cf6;
}

.reading-icon.co2 {
  background: rgba(59, 130, 246, 0.2);
}

.reading-icon.co2:before {
  content: "CO₂";
  font-size: 0.6rem;
  font-weight: 700;
  color: #3b82f6;
}

.reading-icon.voc {
  background: rgba(245, 158, 11, 0.2);
}

.reading-icon.voc:before {
  content: "VOC";
  font-size: 0.6rem;
  font-weight: 700;
  color: #f59e0b;
}

.reading-icon.humidity {
  background: rgba(6, 182, 212, 0.2);
}

.reading-icon.humidity:before {
  content: "H₂O";
  font-size: 0.6rem;
  font-weight: 700;
  color: #06b6d4;
}

.reading-label {
  flex: 1;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.reading-value {
  font-size: 0.85rem;
  font-weight: 600;
}

.reading-value.good {
  color: #4ade80;
}

/* Hospital Product Lineup */
.hospital-lineup {
  padding: 120px 0;
  background: #fff;
}

.hospital-lineup .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-lineup .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.hospital-lineup .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hospital-lineup .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.lineup-grid-hospital {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lineup-card-hospital {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 30px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lineup-card-hospital:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.lineup-card-hospital .card-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lineup-card-hospital:hover .card-icon {
  background: #2d5a3d;
  color: #fff;
}

.lineup-card-hospital .card-content {
  flex: 1;
}

.lineup-card-hospital .card-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.lineup-card-hospital .card-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 10px;
}

.lineup-card-hospital .card-capacity {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: #2d5a3d;
  font-weight: 600;
}

.lineup-card-hospital .card-arrow {
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lineup-card-hospital:hover .card-arrow {
  background: #2d5a3d;
  color: #fff;
}

/* Hospital Case Studies */
.hospital-cases {
  padding: 120px 0;
  background: #f9fafb;
}

.hospital-cases .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-cases .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.hospital-cases .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.hospital-cases .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.cases-grid-hospital {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.case-card-hospital {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 28px;
  transition: all 0.3s ease;
}

.case-card-hospital:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.case-card-hospital .case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.case-card-hospital .case-badge {
  position: static;
  padding: 6px 12px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d5a3d;
}

.case-card-hospital .case-location {
  display: none;
  /* display: inline-flex; */
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
  color: #6b7280;
}

.case-card-hospital h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.case-card-hospital > p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-card-hospital .case-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-card-hospital .case-products span {
  display: inline-block;
  padding: 5px 12px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 500;
}

/* Hospital Featured Products */
.hospital-products {
  padding: 120px 0;
  background: #fff;
}

.hospital-products .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-products .products-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.hospital-products .products-header-flex h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 12px;
}

.hospital-products .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hospital-products .view-all-link:hover {
  color: #3d7a52;
  gap: 12px;
}

/* Hospital Compliance Section */
.hospital-compliance {
  padding: 80px 0;
  background: #f9fafb;
}

.hospital-compliance .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.compliance-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.compliance-content {
  max-width: 450px;
}

.compliance-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 12px;
  margin-top: 12px;
}

.compliance-content p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
}

.compliance-logos {
  display: flex;
  gap: 40px;
}

.compliance-item {
  text-align: center;
}

.compliance-item .compliance-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.compliance-item:hover .compliance-icon {
  border-color: #2d5a3d;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.05) 0%,
    rgba(45, 90, 61, 0.02) 100%
  );
}

.compliance-item span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.compliance-item p {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0;
}

/* Hospital Resources */
.hospital-resources {
  padding: 120px 0;
  background: #fff;
}

.hospital-resources .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-resources .resources-header {
  margin-bottom: 50px;
}

.hospital-resources .resources-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 12px;
}

.resources-grid-hospital {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.resource-card-hospital {
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 35px 30px;
  transition: all 0.3s ease;
}

.resource-card-hospital:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #2d5a3d;
}

.resource-card-hospital .resource-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.resource-card-hospital:hover .resource-icon {
  background: #2d5a3d;
  color: #fff;
}

.resource-card-hospital h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.resource-card-hospital p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}

.resource-card-hospital a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.resource-card-hospital a:hover {
  color: #3d7a52;
  gap: 12px;
}

.resource-card-hospital a:after {
  content: "→";
}

/* Hospital CTA Section */
.hospital-cta {
  padding: 100px 0;
  background: #1a2f23;
}

.hospital-cta .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.hospital-cta .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 50px 60px;
}

.hospital-cta .cta-icon {
  width: 100px;
  height: 100px;
  background: #2d5a3d;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.hospital-cta .cta-content {
  flex: 1;
}

.hospital-cta .cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.hospital-cta .cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
}

.hospital-cta .cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.hospital-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hospital-cta .btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.hospital-cta .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hospital-cta .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Hospital Page Responsive Styles */
@media (max-width: 1200px) {
  .benefits-grid-hospital {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid-hospital {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-grid-hospital {
    grid-template-columns: 1fr;
  }

  .compliance-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .compliance-content {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .hospital-hero .hero-title {
    font-size: 2.75rem;
  }

  .benefits-grid-hospital {
    grid-template-columns: 1fr;
  }

  .areas-showcase {
    grid-template-columns: 1fr;
  }

  .area-card.featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .airquality-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .airquality-visual {
    order: -1;
  }

  .cases-grid-hospital {
    grid-template-columns: 1fr;
  }

  .hospital-cta .cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .hospital-cta .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .hospital-cta .btn-cta-primary,
  .hospital-cta .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }

  .resources-grid-hospital {
    grid-template-columns: 1fr;
  }

  .compliance-logos {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hospital-hero {
    min-height: 100vh;
  }

  .hospital-hero-content {
    padding: 120px 0 80px;
  }

  .hospital-hero .hero-title {
    font-size: 2.25rem;
  }

  .hospital-hero .hero-actions {
    flex-direction: column;
  }

  .hospital-hero .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .hospital-benefits,
  .hospital-areas,
  .hospital-airquality,
  .hospital-lineup,
  .hospital-cases,
  .hospital-products,
  .hospital-resources {
    padding: 80px 0;
  }

  .area-card.featured .area-specs {
    flex-direction: column;
    gap: 16px;
  }

  .airquality-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hospital-products .products-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hospital-hero .hero-title {
    font-size: 1.85rem;
  }

  .hospital-hero .hero-subtitle {
    font-size: 1rem;
  }

  .hospital-hero .hero-stat .stat-value {
    font-size: 2rem;
  }

  .airquality-content h2 {
    font-size: 1.75rem;
  }

  .hospital-cta .cta-content h2 {
    font-size: 1.5rem;
  }

  .hospital-cta .cta-wrapper {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .aq-readings {
    grid-template-columns: 1fr;
  }

  .compliance-logos {
    gap: 24px;
  }
}

/* ==========================================================================
   APARTMENTS SOLUTION PAGE STYLES
   ========================================================================== */

/* Apartments Hero Section */
.apartments-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.apartments-hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apartments-hero-bg .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 41, 55, 0.92) 0%,
    rgba(45, 90, 61, 0.85) 100%
  );
}

.apartments-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 100px;
}

.apartments-hero-content .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-hero .hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.apartments-hero .hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.apartments-hero .hero-breadcrumb a:hover {
  color: #4ade80;
}

.apartments-hero .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.apartments-hero .hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 30px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.apartments-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 600px;
}

.apartments-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

.apartments-hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.apartments-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.4);
}

.apartments-hero .btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.5);
}

.apartments-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apartments-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.apartments-hero .hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.apartments-hero .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apartments-hero .hero-stat .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4ade80;
}

.apartments-hero .hero-stat .stat-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Apartments Intro Section */
.apartments-intro {
  padding: 120px 0;
  background: #fff;
}

.apartments-intro .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.intro-content .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 30px;
  color: #2d5a3d;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.intro-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-content > p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

.intro-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* Visual Diagram */
.intro-visual {
  display: flex;
  justify-content: center;
}

.visual-diagram {
  background: #1a2f23;
  border-radius: 24px;
  padding: 50px;
  width: 100%;
  max-width: 500px;
}

.diagram-outdoor {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.outdoor-unit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 40px;
  background: #2d5a3d;
  border-radius: 16px;
  color: #fff;
}

.outdoor-unit span {
  font-size: 0.9rem;
  font-weight: 600;
}

.connection-lines {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.connection-lines .line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, #4ade80 0%, rgba(74, 222, 128, 0.3) 100%);
  border-radius: 2px;
}

.diagram-indoor {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.indoor-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.indoor-unit:hover {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
}

.indoor-unit span {
  font-size: 0.7rem;
  font-weight: 500;
  text-align: center;
}

/* Apartments Benefits Section */
.apartments-benefits {
  padding: 120px 0;
  background: #f9fafb;
}

.apartments-benefits .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-benefits .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.apartments-benefits .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.apartments-benefits .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.benefits-grid-apartments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card-apartments {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
}

.benefit-card-apartments:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.benefit-card-apartments.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #1a2f23;
  border: none;
}

.benefit-card-apartments.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Before/After Visual */
.benefit-visual {
  margin-bottom: 24px;
}

.visual-before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 12px;
}

.visual-before-after .before,
.visual-before-after .after {
  text-align: center;
}

.visual-before-after .label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
}

.visual-before-after .units {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.visual-before-after .unit-box {
  width: 24px;
  height: 24px;
  background: #9ca3af;
  border-radius: 4px;
}

.visual-before-after .unit-box.single {
  width: 40px;
  height: 40px;
  background: #2d5a3d;
}

.visual-before-after .vs {
  font-size: 0.85rem;
  font-weight: 700;
  color: #9ca3af;
}

.benefit-icon-large {
  width: 100px;
  height: 100px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.benefit-card-apartments:hover .benefit-icon-large {
  background: #2d5a3d;
  color: #fff;
}

.benefit-card-apartments .benefit-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.benefit-card-apartments .benefit-content p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Featured Card Styles */
.benefit-card-apartments.featured .benefit-content h3 {
  color: #fff;
}

.benefit-card-apartments.featured .benefit-content p {
  color: rgba(255, 255, 255, 0.8);
}

.benefit-card-apartments.featured .app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(74, 222, 128, 0.2);
  border-radius: 20px;
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.benefit-card-apartments.featured .app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.benefit-card-apartments.featured .app-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.benefit-card-apartments.featured .app-features svg {
  color: #4ade80;
}

/* Phone Mockup */
.benefit-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 200px;
  background: #142119;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  background: #1a2f23;
  border-radius: 20px;
  padding: 20px 16px;
}

.phone-screen .app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.phone-screen .app-header span:first-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.phone-screen .status {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.phone-screen .status.on {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
}

.phone-screen .temp-display {
  text-align: center;
  margin-bottom: 20px;
}

.phone-screen .temp {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.phone-screen .mode {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.phone-screen .room-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-screen .room-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.phone-screen .room-item.active {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.phone-screen .room-item.active span:last-child {
  color: #4ade80;
}

/* Apartments Rooms Section */
.apartments-rooms {
  padding: 120px 0;
  background: #fff;
}

.apartments-rooms .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-rooms .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.apartments-rooms .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.apartments-rooms .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.room-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.room-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 55, 0) 50%,
    rgba(31, 41, 55, 0.7) 100%
  );
}

.room-content {
  padding: 24px;
}

.room-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.room-content p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.room-specs span {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #2d5a3d;
  font-weight: 600;
}

/* Apartments Product Lineup */
.apartments-lineup {
  padding: 120px 0;
  background: #f9fafb;
}

.apartments-lineup .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-lineup .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.apartments-lineup .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.apartments-lineup .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.lineup-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lineup-item-apartments {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.lineup-item-apartments:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.lineup-image {
  margin-bottom: 30px;
}

.product-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  color: #2d5a3d;
}

.lineup-item-apartments:hover .product-3d {
  color: #3d7a52;
}

.lineup-content .lineup-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d5a3d;
  margin-bottom: 16px;
}

.lineup-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.lineup-content > p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.lineup-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.lineup-features li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

.lineup-features li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5A3D' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.lineup-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lineup-link:hover {
  color: #3d7a52;
  gap: 12px;
}

/* Apartments Cases Section */
.apartments-cases {
  padding: 120px 0;
  background: #fff;
}

.apartments-cases .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-cases .section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.apartments-cases .section-header-centered h2 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.apartments-cases .section-header-centered p {
  font-size: 1.15rem;
  color: #6b7280;
}

.cases-grid-apartments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card-apartments {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  border: 1px solid #e5e7eb;
}

.case-card-apartments:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.case-card-apartments .case-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-card-apartments .case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.case-card-apartments .case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(31, 41, 55, 0) 50%,
    rgba(31, 41, 55, 0.7) 100%
  );
}

.case-card-apartments .case-content {
  padding: 28px;
}

.case-card-apartments .case-type {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2d5a3d;
  margin-bottom: 12px;
}

.case-card-apartments h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.case-card-apartments > .case-content > p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-card-apartments .case-stats {
  display: flex;
  gap: 30px;
}

.case-card-apartments .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.case-card-apartments .stat .value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #2d5a3d;
}

.case-card-apartments .stat .label {
  font-size: 0.8rem;
  color: #6b7280;
}

/* Apartments Featured Products */
.apartments-products {
  padding: 120px 0;
  background: #f9fafb;
}

.apartments-products .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-products .products-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.apartments-products .products-header-flex h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-top: 12px;
}

.apartments-products .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apartments-products .view-all-link:hover {
  color: #3d7a52;
  gap: 12px;
}

/* Apartments Installation Section */
.apartments-installation {
  padding: 120px 0;
  background: #fff;
}

.apartments-installation .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.installation-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}

.installation-content .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 30px;
  color: #2d5a3d;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.installation-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.installation-content > p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 40px;
}

.installation-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.install-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  background: #2d5a3d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.step-info p {
  font-size: 0.9rem;
  color: #6b7280;
}

.installation-cta {
  position: sticky;
  top: 100px;
}

.cta-box {
  background: #1a2f23;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.cta-box .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.4);
}

.cta-box .btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.5);
}

/* Apartments CTA Section */
.apartments-cta {
  padding: 100px 0;
  background: #1a2f23;
}

.apartments-cta .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.apartments-cta .cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 60px 70px;
}

.apartments-cta .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.apartments-cta .cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.apartments-cta .cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.apartments-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #2d5a3d;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.apartments-cta .btn-cta-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.apartments-cta .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apartments-cta .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Apartments Page Responsive Styles */
@media (max-width: 1200px) {
  .intro-grid {
    gap: 50px;
  }

  .benefits-grid-apartments {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card-apartments.featured {
    grid-column: span 2;
  }

  .lineup-showcase {
    grid-template-columns: 1fr;
  }

  .installation-wrapper {
    grid-template-columns: 1fr;
  }

  .installation-cta {
    position: static;
  }
}

@media (max-width: 992px) {
  .apartments-hero .hero-title {
    font-size: 2.75rem;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-visual {
    order: -1;
  }

  .benefits-grid-apartments {
    grid-template-columns: 1fr;
  }

  .benefit-card-apartments.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases-grid-apartments {
    grid-template-columns: 1fr;
  }

  .apartments-cta .cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .apartments-cta .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .apartments-cta .btn-cta-primary,
  .apartments-cta .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .apartments-hero {
    min-height: 100vh;
  }

  .apartments-hero-content {
    padding: 120px 0 80px;
  }

  .apartments-hero .hero-title {
    font-size: 2.25rem;
  }

  .apartments-hero .hero-actions {
    flex-direction: column;
  }

  .apartments-hero .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .apartments-intro,
  .apartments-benefits,
  .apartments-rooms,
  .apartments-lineup,
  .apartments-cases,
  .apartments-products,
  .apartments-installation {
    padding: 80px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .diagram-indoor {
    grid-template-columns: repeat(3, 1fr);
  }

  .installation-steps {
    grid-template-columns: 1fr;
  }

  .apartments-products .products-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .apartments-hero .hero-title {
    font-size: 1.85rem;
  }

  .apartments-hero .hero-subtitle {
    font-size: 1rem;
  }

  .apartments-hero .hero-stat .stat-value {
    font-size: 2rem;
  }

  .diagram-indoor {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-diagram {
    padding: 30px 20px;
  }

  .phone-frame {
    width: 180px;
  }

  .apartments-cta .cta-content h2 {
    font-size: 1.5rem;
  }

  .apartments-cta .cta-wrapper {
    padding: 40px 24px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   SHOPPING MALL SOLUTION PAGE STYLES
   ========================================================================== */

.mall-solution-page {
  overflow-x: hidden;
}

/* Mall Hero Section */
.mall-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mall-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mall-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mall-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(45, 90, 61, 0.6) 100%
  );
}

.mall-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 0 100px;
}

.mall-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mall-hero .hero-badge svg {
  opacity: 0.9;
}

.mall-hero .hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 700px;
}

.mall-hero .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.mall-hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.mall-hero .btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #2d5a3d;
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.4);
}

.mall-hero .btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(45, 90, 61, 0.5);
  background: #3d7a52;
}

.mall-hero .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mall-hero .btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.mall-hero .hero-stats {
  display: flex;
  gap: 48px;
  align-items: center;
}

.mall-hero .hero-stat {
  text-align: left;
}

.mall-hero .hero-stat .stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.mall-hero .hero-stat .stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.mall-hero .stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

.mall-hero .hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  display: none;
}

.mall-hero .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* Mall Benefits Section */
.mall-benefits {
  padding: 120px 0;
  background: #f8faf9;
}

.mall-benefits .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-benefits .section-header.centered {
  text-align: center;
  margin-bottom: 60px;
}

.mall-benefits .section-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mall-benefits .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.mall-benefits .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e8ebe9;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.benefit-card.featured {
  background: #2d5a3d;
  border-color: transparent;
}

.benefit-card.featured .benefit-title,
.benefit-card.featured .benefit-description,
.benefit-card.featured .benefit-features li {
  color: #fff;
}

.benefit-card.featured .benefit-features li svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.benefit-card.featured .benefit-number {
  color: rgba(255, 255, 255, 0.2);
}

.benefit-icon-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
}

.benefit-card.featured .benefit-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.benefit-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(45, 90, 61, 0.1);
  line-height: 1;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.benefit-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefit-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.benefit-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
  padding: 8px 0;
}

.benefit-features li svg {
  flex-shrink: 0;
  color: #2d5a3d;
}

.benefit-visual {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.benefit-card.featured .benefit-visual {
  border-top-color: rgba(255, 255, 255, 0.15);
}

/* Energy Visual */
.energy-meter {
  padding: 10px 0;
}

.meter-bar {
  height: 12px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.meter-fill {
  height: 100%;
  background: #2d5a3d;
  border-radius: 10px;
  animation: meterPulse 2s ease-in-out infinite;
}

@keyframes meterPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #666;
}

.meter-labels .savings {
  font-weight: 700;
  color: #2d5a3d;
}

/* Comfort Visual */
.comfort-indicator {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.comfort-ring {
  position: relative;
  width: 100px;
  height: 100px;
}

.comfort-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.comfort-ring .ring-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 8;
}

.comfort-ring .ring-fill {
  fill: none;
  stroke: #fff;
  stroke-width: 8;
  stroke-dasharray: 251;
  stroke-dashoffset: 50;
  stroke-linecap: round;
  animation: ringFill 2s ease-out forwards;
}

@keyframes ringFill {
  from {
    stroke-dashoffset: 251;
  }
  to {
    stroke-dashoffset: 50;
  }
}

.comfort-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.comfort-value .temp {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.comfort-value .label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Management Visual */
.control-nodes {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.central-node {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #2d5a3d;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.4);
}

.node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: #2d5a3d;
  border-radius: 50%;
  animation: nodePulse 2s ease-in-out infinite;
}

.node-1 {
  top: 5px;
  left: 20%;
  animation-delay: 0s;
}
.node-2 {
  top: 5px;
  right: 20%;
  animation-delay: 0.5s;
}
.node-3 {
  bottom: 5px;
  left: 20%;
  animation-delay: 1s;
}
.node-4 {
  bottom: 5px;
  right: 20%;
  animation-delay: 1.5s;
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

.connection-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.connection-lines line {
  stroke: rgba(45, 90, 61, 0.3);
  stroke-width: 2;
  stroke-dasharray: 4 4;
}

/* Mall Zones Section */
.mall-zones {
  padding: 120px 0;
  background: #fff;
}

.mall-zones .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-zones .section-header {
  margin-bottom: 60px;
}

.mall-zones .section-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-align: center;
}

.mall-zones .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.mall-zones .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
}

/* Featured Zone */
.zone-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: center;
}

.zone-featured-content {
  padding-right: 40px;
}

.zone-badge {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.zone-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.zone-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 32px;
}

.zone-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zone-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.zone-feature .feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2d5a3d;
}

.zone-feature .feature-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.zone-feature .feature-text span {
  font-size: 0.9rem;
  color: #666;
}

.zone-featured-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.zone-featured-visual img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.zone-featured-visual .visual-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.3) 0%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.airflow-indicator {
  display: flex;
  gap: 20px;
}

.airflow-circle {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: airflowPulse 2s ease-in-out infinite;
}

.airflow-circle:nth-child(2) {
  animation-delay: 0.3s;
}
.airflow-circle:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes airflowPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Zones Grid */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.zone-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8ebe9;
  transition: all 0.4s ease;
}

.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: #2d5a3d;
}

.zone-card.zone-large {
  grid-column: span 2;
}

.zone-card .zone-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.zone-card.zone-large .zone-image {
  height: 280px;
}

.zone-card .zone-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.zone-card:hover .zone-image img {
  transform: scale(1.05);
}

.zone-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.zone-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.zone-content {
  padding: 28px;
}

.zone-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.zone-info {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.zone-stats {
  display: flex;
  gap: 24px;
}

.zone-stat {
  display: flex;
  flex-direction: column;
}

.zone-stat .stat-num {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5a3d;
}

.zone-stat .stat-text {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Mall Control Section */
.mall-control {
  padding: 120px 0;
  background: #1a2f23;
}

.mall-control .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.control-content .section-tag.light {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.control-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  margin-top: 16px;
}

.control-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}

.control-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-num {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.control-feature .feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.control-feature .feature-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Dashboard Mockup */
.control-visual {
  position: relative;
}

.dashboard-mockup {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
  background: #2d5a3d;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.dashboard-body {
  padding: 24px;
}

.dashboard-zones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.dash-zone {
  background: #f8faf9;
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid #e8ebe9;
  transition: all 0.3s ease;
}

.dash-zone.active {
  border-color: #2d5a3d;
  background: rgba(45, 90, 61, 0.05);
}

.zone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.zone-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
}

.zone-temp {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d5a3d;
}

.zone-bar {
  height: 6px;
  background: #e8ebe9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.zone-bar .bar-fill {
  height: 100%;
  background: #2d5a3d;
  border-radius: 10px;
}

.dash-zone .zone-status {
  font-size: 0.8rem;
  color: #888;
}

.dash-zone.active .zone-status {
  color: #2d5a3d;
  font-weight: 500;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dash-stat {
  background: #f8faf9;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e8ebe9;
}

.dash-stat.highlight {
  background: rgba(45, 90, 61, 0.1);
  border-color: rgba(45, 90, 61, 0.2);
}

.dash-stat .stat-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dash-stat.highlight .stat-icon {
  background: #2d5a3d;
  color: #fff;
}

.dash-stat .stat-info {
  display: flex;
  flex-direction: column;
}

.dash-stat .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
}

.dash-stat.highlight .stat-value {
  color: #2d5a3d;
}

.dash-stat .stat-label {
  font-size: 0.8rem;
  color: #888;
}

/* Mall Lineup Section */
.mall-lineup {
  padding: 120px 0;
  background: #f8faf9;
}

.mall-lineup .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-lineup .section-header.centered {
  text-align: center;
  margin-bottom: 60px;
}

.mall-lineup .section-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mall-lineup .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.mall-lineup .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lineup-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8ebe9;
  transition: all 0.4s ease;
}

.lineup-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.lineup-card.featured {
  background: #2d5a3d;
  border-color: transparent;
  grid-column: span 2;
}

.lineup-image {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(45, 90, 61, 0.05) 0%,
    rgba(45, 90, 61, 0.02) 100%
  );
  min-height: 160px;
}

.lineup-card.featured .lineup-image {
  background: rgba(255, 255, 255, 0.1);
}

.lineup-icon {
  color: #fff;
}

.lineup-card.featured .lineup-icon {
  color: #fff;
}

.lineup-content {
  padding: 28px;
}

.lineup-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.lineup-card.featured .lineup-name {
  color: #fff;
}

.lineup-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.lineup-card.featured .lineup-desc {
  color: rgba(255, 255, 255, 0.85);
}

.lineup-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.lineup-features li {
  font-size: 0.9rem;
  color: #555;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.lineup-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #2d5a3d;
  border-radius: 50%;
}

.lineup-card.featured .lineup-features li {
  color: rgba(255, 255, 255, 0.85);
}

.lineup-card.featured .lineup-features li::before {
  background: #fff;
}

.lineup-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.lineup-link:hover {
  gap: 12px;
}

.lineup-card.featured .lineup-link {
  color: #fff;
}

/* Mall Cases Section */
.mall-cases {
  padding: 120px 0;
  background: #fff;
}

.mall-cases .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-cases .section-header {
  margin-bottom: 60px;
}

.mall-cases .section-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mall-cases .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.mall-cases .section-subtitle {
  font-size: 1.15rem;
  color: #666;
  max-width: 600px;
  line-height: 1.7;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8ebe9;
  transition: all 0.4s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: #2d5a3d;
}

.case-card.featured {
  grid-row: span 1;
}

.case-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-location {
  position: none;
  /* position: absolute; */
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1a1a1a;
}

.case-content {
  padding: 28px;
}

.case-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.case-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.system-tag {
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-stats {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #e8ebe9;
}

.case-stat {
  display: flex;
  flex-direction: column;
}

.case-stat .cs-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5a3d;
}

.case-stat .cs-label {
  font-size: 0.8rem;
  color: #888;
}

/* Mall Tenants Section */
.mall-tenants {
  padding: 120px 0;
  background: #f8faf9;
}

.mall-tenants .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.tenants-content .section-tag.light {
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tenants-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 16px 0 20px 0;
}

.tenants-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.tenant-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tenant-benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tb-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.tb-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.tb-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Store Diagram */
.store-diagram {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  position: relative;
}

.store-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.store-unit {
  flex: 1;
  background: #f8faf9;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #e8ebe9;
  transition: all 0.3s ease;
}

.store-unit.wide {
  flex: 2;
}

.store-unit:hover {
  border-color: #2d5a3d;
}

.store-header {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.store-temp {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.store-status {
  font-size: 0.75rem;
  color: #888;
  padding: 4px 10px;
  background: #e8ebe9;
  border-radius: 10px;
  display: inline-block;
}

.store-status.active {
  background: rgba(45, 90, 61, 0.15);
  color: #2d5a3d;
}

.central-system {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: #2d5a3d;
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
}

/* Mall Products Section */
.mall-products {
  padding: 120px 0;
  background: #fff;
}

.mall-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-products .products-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.mall-products .section-header {
  margin-bottom: 0;
}

.mall-products .section-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mall-products .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0;
}

.mall-products .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2d5a3d;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 28px;
  border: 2px solid #2d5a3d;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mall-products .btn-view-all:hover {
  background: #2d5a3d;
  color: #fff;
}

.mall-products .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mall-products .product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8ebe9;
  transition: all 0.4s ease;
}

.mall-products .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border-color: #2d5a3d;
}

.mall-products .product-image {
  position: relative;
  height: 220px;
  background: #f8faf9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mall-products .product-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.mall-products .product-card:hover .product-image img {
  transform: scale(1.05);
}

.mall-products .sale-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff6b35;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.mall-products .product-info {
  padding: 24px;
}

.mall-products .product-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.mall-products .product-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mall-products .product-title a:hover {
  color: #2d5a3d;
}

.mall-products .product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2d5a3d;
  margin-bottom: 16px;
}

.mall-products .btn-product {
  display: inline-block;
  background: #2d5a3d;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mall-products .btn-product:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}

.mall-products .no-products {
  grid-column: span 4;
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

/* Mall Resources Section */
.mall-resources {
  padding: 100px 0;
  background: #f8faf9;
}

.mall-resources .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-resources .section-header.centered {
  text-align: center;
  margin-bottom: 48px;
}

.mall-resources .section-tag {
  display: inline-block;
  background: rgba(45, 90, 61, 0.1);
  color: #2d5a3d;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mall-resources .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 24px 28px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid #e8ebe9;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #2d5a3d;
}

.resource-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
}

.resource-content {
  flex: 1;
}

.resource-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.resource-content p {
  font-size: 0.9rem;
  color: #666;
}

.resource-action {
  width: 40px;
  height: 40px;
  background: #f8faf9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.resource-card:hover .resource-action {
  background: #2d5a3d;
  color: #fff;
}

/* Mall CTA Section */
.mall-cta {
  padding: 120px 0;
  background: #fff;
}

.mall-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.mall-cta .cta-wrapper {
  position: relative;
  background: #2d5a3d;
  border-radius: 32px;
  padding: 80px 60px;
  overflow: hidden;
}

.mall-cta .cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mall-cta .cta-pattern {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

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

.mall-cta .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.mall-cta .cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.mall-cta .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.mall-cta .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #2d5a3d;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.mall-cta .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mall-cta .btn-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  padding: 18px 36px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.mall-cta .btn-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .mall-hero .hero-title {
    font-size: 3.25rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .zones-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zone-card.zone-large {
    grid-column: span 2;
  }

  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lineup-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 992px) {
  .mall-hero .hero-title {
    font-size: 2.75rem;
  }

  .mall-hero .hero-stats {
    gap: 32px;
  }

  .mall-hero .hero-stat .stat-value {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* .benefit-card.featured {
    order: -1;
  } */

  .zone-featured {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zone-featured-content {
    padding-right: 0;
  }

  .zone-featured-visual img {
    height: 350px;
  }

  .zones-grid {
    grid-template-columns: 1fr;
  }

  .zone-card.zone-large {
    grid-column: span 1;
  }

  .control-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .lineup-card.featured {
    grid-column: span 1;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .tenants-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mall-products .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mall-products .no-products {
    grid-column: span 2;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .mall-cta .cta-wrapper {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .mall-hero {
    min-height: 100vh;
  }

  .mall-hero .hero-content {
    padding: 120px 0 80px;
  }

  .mall-hero .hero-title {
    font-size: 2.25rem;
  }

  .mall-hero .hero-subtitle {
    font-size: 1.1rem;
  }

  .mall-hero .hero-actions {
    flex-direction: column;
  }

  .mall-hero .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .mall-hero .stat-divider {
    display: none;
  }

  .mall-benefits,
  .mall-zones,
  .mall-control,
  .mall-lineup,
  .mall-cases,
  .mall-tenants,
  .mall-products {
    padding: 80px 0;
  }

  .mall-benefits .section-title,
  .mall-zones .section-title,
  .mall-lineup .section-title,
  .mall-cases .section-title,
  .mall-products .section-title {
    font-size: 2rem;
  }

  .zone-title,
  .control-title,
  .tenants-title {
    font-size: 2rem;
  }

  .zone-featured-visual img {
    height: 280px;
  }

  .zone-features {
    gap: 16px;
  }

  .store-row {
    flex-direction: column;
  }

  .store-unit.wide {
    flex: 1;
  }

  .mall-products .products-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .mall-cta .cta-content h2 {
    font-size: 1.85rem;
  }

  .mall-cta .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .mall-cta .btn-cta-primary,
  .mall-cta .btn-cta-phone {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mall-hero .hero-title {
    font-size: 1.85rem;
  }
.mall-hero .hero-scroll-indicator {
  display: none;
}
  .mall-hero .hero-stat .stat-value {
    font-size: 2rem;
  }

  .mall-hero .btn-hero-primary,
  .mall-hero .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .benefit-card {
    padding: 32px 24px;
  }

  .zone-content {
    padding: 20px;
  }

  .zone-stats {
    flex-wrap: wrap;
  }

  .dashboard-mockup {
    border-radius: 16px;
  }

  .dashboard-body {
    padding: 16px;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .lineup-content {
    padding: 24px 20px;
  }

  .case-content {
    padding: 20px;
  }

  .case-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .store-diagram {
    padding: 20px;
  }

  .mall-resources {
    padding: 80px 0;
  }

  .resource-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .resource-action {
    margin-top: 8px;
  }

  .mall-cta .cta-wrapper {
    padding: 50px 24px;
    border-radius: 24px;
  }

  .mall-cta .cta-content h2 {
    font-size: 1.5rem;
  }

  .mall-cta .cta-content p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-page {
  overflow-x: hidden;
}

/* Contact Hero */
.contact-hero {
  position: relative;
  background: #2d5a3d;
  padding: 140px 0 100px;
  overflow: hidden;
}

.contact-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.contact-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.contact-hero .hero-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.5;
}

/* Contact Cards */
.contact-cards-section {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.contact-cards-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8ebe9;
  transition: all 0.3s ease;
  /* clickable <a> resets */
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none !important;
  color: inherit !important;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #2d5a3d;
}

.contact-card .card-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2d5a3d;
}

.contact-card .card-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-card .card-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
}

.contact-card .card-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d5a3d;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.contact-card .card-link:hover {
  color: #1e3d29;
}

.contact-card .card-link.secondary {
  font-size: 0.95rem;
  color: #666;
}

.contact-card .card-link.directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.contact-card .card-hours,
.contact-card .card-address {
  display: block;
  font-size: 0.85rem;
  color: #888;
}

.contact-card .card-address {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}

/* Main Contact Section */
.contact-main-section {
  padding: 100px 0;
  background: #f8faf9;
}

.contact-main-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8ebe9;
}

.form-header {
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 1rem;
  color: #666;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-row .form-group {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-form label .required {
  color: #ef4444;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: #f8faf9;
  border: 2px solid #e8ebe9;
  border-radius: 12px;
  font-size: 1rem;
  color: #1a1a1a;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2d5a3d;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  padding-right: 48px;
}

/* Checkbox */
.checkbox-group {
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400 !important;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #2d5a3d;
}

.checkbox-text {
  font-size: 0.9rem;
  color: #666;
}

/* Contact Form Notices */
.ctf-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: .9rem;
  line-height: 1.5;
}
.ctf-notice svg { flex-shrink: 0; margin-top: 1px; }
.ctf-notice strong { display: block; font-size: 1rem; margin-bottom: 2px; }
.ctf-notice p { margin: 0; opacity: .85; }
.ctf-notice--success {
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}
.ctf-notice--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

/* Submit Button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 32px;
  background: #2d5a3d;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.btn-submit:hover {
  background: #1e3d29;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 90, 61, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

.business-info,
.certifications-info {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8ebe9;
}

.business-info h3,
.certifications-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8faf9;
  border-radius: 10px;
}

.hours-row .day {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
}

.hours-row .time {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d5a3d;
}

.hours-row.closed .time {
  color: #ef4444;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cert-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cert-icon {
  width: 48px;
  height: 48px;
  background: rgba(45, 90, 61, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2d5a3d;
  flex-shrink: 0;
}

.cert-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.cert-text span {
  font-size: 0.85rem;
  color: #666;
}

/* FAQ Section */
.contact-faq-section {
  padding: 100px 0;
  background: #fff;
}

.contact-faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #666;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #f8faf9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e8ebe9;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #2d5a3d;
}

.faq-item.active {
  background: #fff;
  border-color: #2d5a3d;
  box-shadow: 0 8px 30px rgba(45, 90, 61, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  padding-right: 20px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  background: #2d5a3d;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* Contact CTA */
.contact-cta-section {
  padding: 80px 0 100px;
  background: #f8faf9;
}

.contact-cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-cta-section .cta-wrapper {
  background: #2d5a3d;
  border-radius: 28px;
  padding: 60px;
  text-align: center;
}

.contact-cta-section .cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.contact-cta-section .cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta-section .cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta-section .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #2d5a3d;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-cta-section .btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-cta-section .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.contact-cta-section .btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 120px 0 80px;
  }

  .contact-hero .hero-title {
    font-size: 2.5rem;
  }

  .contact-cards-section {
    margin-top: -40px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-section {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .contact-faq-section {
    padding: 80px 0;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .contact-cta-section .cta-wrapper {
    padding: 40px 24px;
  }

  .contact-cta-section .cta-content h2 {
    font-size: 1.75rem;
  }

  .contact-cta-section .cta-actions {
    flex-direction: column;
  }

  .contact-cta-section .btn-cta-primary,
  .contact-cta-section .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-hero .hero-title {
    font-size: 2rem;
  }

  .contact-card {
    padding: 24px 20px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
}

/* ==========================================================================
   E-COMMERCE NAVIGATION ENHANCEMENTS
   Brand color: #2D5A3D
   Iterates on the existing Salient header without overriding partials.
   ========================================================================== */

:root {
  --lg-nav-brand: #2D5A3D;
  --lg-nav-brand-hover: #1e3d29;
  --lg-nav-brand-light: rgba(45, 90, 61, 0.08);
  --lg-nav-text: #1a1a1a;
  --lg-nav-muted: #6b6b6b;
  --lg-nav-border: #e6e6e6;
  --lg-nav-bar-height: 36px;
}

/* --------------------------------------------------------------------------
   Top Utility Bar (slim strip above the header)
   -------------------------------------------------------------------------- */
.lg-utility-bar {
  background: var(--lg-nav-brand);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  min-height: var(--lg-nav-bar-height);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 9999;
}

.lg-utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 24px;
  gap: 16px;
}

.lg-utility-bar__left,
.lg-utility-bar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.lg-utility-bar__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.lg-utility-bar__promo svg {
  width: 14px;
  height: 14px;
}

.lg-utility-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.lg-utility-bar__link:hover,
.lg-utility-bar__link:focus {
  color: #fff;
  text-decoration: none;
}

.lg-utility-bar__link svg {
  width: 13px;
  height: 13px;
}

.lg-utility-bar__whatsapp svg {
  width: 14px;
  height: 14px;
  color: #25D366;
}

.lg-utility-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.lg-utility-bar__account {
  font-weight: 600;
}

@media (max-width: 999px) {
  .lg-hide-mobile {
    display: none !important;
  }
  .lg-utility-bar .container {
    padding: 7px 16px;
    gap: 10px;
  }
  .lg-utility-bar__left,
  .lg-utility-bar__right {
    gap: 12px;
  }
  .lg-utility-bar__promo {
    font-size: 11px;
  }
}

/* --------------------------------------------------------------------------
   Nav Icons (Search + Account) — injected into Salient pull-right
   -------------------------------------------------------------------------- */
.lg-nav-icons {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  list-style: none !important;
  margin: 0 0 0 12px !important;
  padding: 0 !important;
  vertical-align: middle;
}

.lg-nav-icons__item {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.lg-nav-icons__item::before,
.lg-nav-icons__item::after {
  display: none !important;
}

.lg-nav-icons .lg-icon-btn {
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--lg-nav-text);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  padding: 0;
}

.lg-nav-icons .lg-icon-btn:hover,
.lg-nav-icons .lg-icon-btn:focus,
.lg-nav-icons .lg-icon-btn[aria-expanded="true"] {
  background: var(--lg-nav-brand-light);
  color: var(--lg-nav-brand);
  outline: none;
}

.lg-nav-icons .lg-icon-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* When Salient header is in transparent state, lighten icons */
#header-outer[data-transparent-header="true"]:not(.scrolled-down) .lg-nav-icons .lg-icon-btn {
  color: #fff;
}

/* --------------------------------------------------------------------------
   Account Dropdown
   -------------------------------------------------------------------------- */
.lg-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--lg-nav-border);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  padding: 16px;
  z-index: 10000;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lg-account-dropdown[hidden] {
  display: none;
}

.lg-account-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
}

.lg-account-dropdown__greeting {
  font-size: 14px;
  font-weight: 600;
  color: var(--lg-nav-text);
  margin: 0 0 12px;
}

.lg-account-dropdown__cta {
  display: block;
  background: var(--lg-nav-brand);
  color: #fff !important;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-bottom: 10px;
}

.lg-account-dropdown__cta:hover {
  background: var(--lg-nav-brand-hover);
  color: #fff !important;
}

.lg-account-dropdown__sub {
  font-size: 13px;
  color: var(--lg-nav-muted);
  margin: 0 0 12px;
  text-align: center;
}

.lg-account-dropdown__sub a {
  color: var(--lg-nav-brand);
  font-weight: 600;
  text-decoration: none;
}

.lg-account-dropdown hr {
  border: 0;
  border-top: 1px solid var(--lg-nav-border);
  margin: 10px 0;
}

.lg-account-dropdown__link {
  display: block;
  padding: 8px 6px;
  color: var(--lg-nav-text);
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lg-account-dropdown__link:hover {
  background: var(--lg-nav-brand-light);
  color: var(--lg-nav-brand);
}

.lg-account-dropdown__link--muted {
  color: var(--lg-nav-muted);
  font-size: 13px;
  border-top: 1px solid var(--lg-nav-border);
  margin-top: 6px;
  padding-top: 12px;
}

/* --------------------------------------------------------------------------
   Search Overlay (full-width slide-down)
   -------------------------------------------------------------------------- */
.lg-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--lg-nav-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 99998;
  padding: 24px 0;
  transform: translateY(-100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lg-search-overlay[hidden] {
  display: none;
}

.lg-search-overlay.is-open {
  transform: translateY(0);
}

.lg-search-overlay .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.lg-search-overlay__form {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--lg-nav-brand);
  padding-bottom: 8px;
  position: relative;
}

.lg-search-overlay__icon {
  width: 22px;
  height: 22px;
  color: var(--lg-nav-brand);
  flex-shrink: 0;
}

.lg-search-overlay__form input[type="search"] {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 18px;
  padding: 12px 8px;
  background: transparent;
  color: var(--lg-nav-text);
  font-family: inherit;
}

.lg-search-overlay__form input[type="search"]::placeholder {
  color: var(--lg-nav-muted);
}

.lg-search-overlay__submit {
  background: var(--lg-nav-brand);
  color: #fff;
  border: 0;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.lg-search-overlay__submit:hover {
  background: var(--lg-nav-brand-hover);
}

.lg-search-overlay__close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--lg-nav-muted);
  cursor: pointer;
  padding: 4px 10px;
  transition: color 0.2s ease;
}

.lg-search-overlay__close:hover {
  color: var(--lg-nav-text);
}

.lg-search-overlay__suggestions {
  margin-top: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

.lg-search-overlay__label {
  color: var(--lg-nav-muted);
}

.lg-search-overlay__suggestions a {
  color: var(--lg-nav-text);
  text-decoration: none;
  padding: 4px 12px;
  background: var(--lg-light-gray, #f4f4f4);
  border-radius: 16px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.lg-search-overlay__suggestions a:hover {
  background: var(--lg-nav-brand);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Mega Menu styling for Salient sub-menus on .megamenu items
   Targets Salient's standard markup: li.megamenu > .sub-menu
   -------------------------------------------------------------------------- */
#header-outer .sf-menu li.megamenu,
#header-outer .sf-menu li.lg-megamenu-tab {
  position: static !important;
}

#header-outer .sf-menu li.megamenu > .sub-menu,
#header-outer .sf-menu li.lg-megamenu-tab > .sub-menu {
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100% !important;
  padding: 32px 0 !important;
  background: #fff !important;
  border-top: 3px solid var(--lg-nav-brand) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10) !important;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

#header-outer .sf-menu li.megamenu > .sub-menu::before,
#header-outer .sf-menu li.lg-megamenu-tab > .sub-menu::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

#header-outer .sf-menu li.megamenu > .sub-menu > li {
  flex: 1 1 220px;
  max-width: 280px;
  padding: 0 24px;
  border-right: 1px solid var(--lg-nav-border);
}

#header-outer .sf-menu li.megamenu > .sub-menu > li:last-child {
  border-right: 0;
}

#header-outer .sf-menu li.megamenu > .sub-menu > li > a {
  font-weight: 700 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: var(--lg-nav-brand) !important;
  margin-bottom: 8px !important;
  padding: 0 0 10px !important;
  border-bottom: 1px solid var(--lg-nav-border) !important;
  display: block;
  pointer-events: none;
}

#header-outer .sf-menu li.megamenu > .sub-menu > li > .sub-menu {
  position: static !important;
  display: block !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 8px 0 0 !important;
  width: auto !important;
  border: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

#header-outer .sf-menu li.megamenu > .sub-menu > li > .sub-menu > li > a {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: var(--lg-nav-text) !important;
  text-transform: none !important;
  padding: 6px 0 !important;
  display: block;
  border: 0 !important;
  transition: color 0.15s ease, padding 0.15s ease;
}

#header-outer .sf-menu li.megamenu > .sub-menu > li > .sub-menu > li > a:hover {
  color: var(--lg-nav-brand) !important;
  padding-left: 4px !important;
}

/* Mobile: collapse mega menu into stacked accordion-style */
@media (max-width: 999px) {
  #header-outer .sf-menu li.megamenu > .sub-menu,
  #header-outer .sf-menu li.lg-megamenu-tab > .sub-menu {
    width: 100% !important;
    flex-direction: column;
    padding: 12px 0 !important;
    box-shadow: none !important;
  }

  #header-outer .sf-menu li.megamenu > .sub-menu > li {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--lg-nav-border);
  }
}

/* --------------------------------------------------------------------------
   Accent: align main menu hover with brand green
   -------------------------------------------------------------------------- */
#header-outer .sf-menu > li > a:hover,
#header-outer .sf-menu > li.current-menu-item > a,
#header-outer .sf-menu > li.current_page_item > a,
#header-outer .sf-menu > li.sfHover > a {
  color: var(--lg-nav-brand) !important;
}

#header-outer #logo {
  outline-color: var(--lg-nav-brand);
}

/* Small visual hint that an item has a mega menu */
#header-outer .sf-menu > li.megamenu > a::after,
#header-outer .sf-menu > li.lg-megamenu-tab > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.6;
  transition: transform 0.2s ease;
}

#header-outer .sf-menu > li.megamenu.sfHover > a::after,
#header-outer .sf-menu > li.lg-megamenu-tab.sfHover > a::after {
  transform: rotate(180deg);
}
