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

/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --green-900: #082A20; /* Deep forest green */
  --green-800: #103A2D; /* Dark herbal green */
  --green-700: #174936; /* Medium herbal green */
  --gold: #C9952E;      /* Antique gold */
  --gold-light: #E1B65A;/* Light gold hover states */
  --cream: #F5EFE3;     /* Warm cream background */
  --cream-dark: #E9DDC8;/* Slightly darker cream for contrast */
  --white: #FFFFFF;
  --charcoal: #111411;  /* Rich body text color */
  --muted: #6D6A60;     /* Editorial subheadings/helper text */
  --error: #B32E2E;     /* Muted red for errors */
  --success: #1E663B;   /* Deep green for success */

  /* Fonts */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Layout dimensions */
  --container-width: 1200px;
  --container-wide: 1400px;
  --header-height: 80px;
  --border-radius: 4px;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--green-900);
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
}

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

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

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

/* Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--green-900);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border: 2px solid var(--green-900);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-light);
}

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  position: relative;
}

.bg-cream {
  background-color: var(--cream);
}

.bg-dark {
  background-color: var(--green-900);
  color: var(--cream);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--white);
}

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

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.section-desc {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto var(--space-md) auto;
  font-style: italic;
}

.bg-dark .section-desc {
  color: var(--cream-dark);
}

.gold-separator {
  width: 80px;
  height: 2px;
  background-color: var(--gold);
  margin: var(--space-sm) auto var(--space-md) auto;
  border: none;
}

.gold-line-left {
  position: relative;
  padding-left: 20px;
}

.gold-line-left::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gold);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--green-900);
}

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

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

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

.btn-dark {
  background-color: var(--green-900);
  color: var(--cream);
  border-color: var(--gold);
}

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

.btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  border: none;
}

.btn-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn:disabled {
  background-color: var(--muted);
  color: var(--cream);
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
}

header.sticky {
  position: fixed;
  background-color: rgba(8, 42, 32, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  height: 70px;
  border-bottom: 1px solid rgba(201, 149, 46, 0.2);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  object-fit: cover;
  transition: var(--transition-smooth);
}

header.sticky .logo-link img {
  height: 40px;
  width: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--cream);
}

.logo-text span {
  color: var(--gold);
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--cream-dark);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-icon-btn:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--gold);
  color: var(--green-900);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   MOBILE MENU OVERLAY
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--green-900);
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(201, 149, 46, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: var(--space-md);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid rgba(201, 149, 46, 0.2);
  padding-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cream-dark);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* ==========================================================================
   HERO CAMPAIGN SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--green-900);
  background-image: linear-gradient(135deg, rgba(8, 42, 32, 0.97) 0%, rgba(16, 58, 45, 0.9) 100%);
  color: var(--white);
  padding-top: calc(var(--header-height) + 2rem);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  width: 100%;
}

.hero-content {
  z-index: 10;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

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

.hero-description {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--cream-dark);
  font-style: italic;
  margin-bottom: var(--space-md);
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
}

.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero-image-wrapper {
  position: relative;
  border: 1px solid rgba(201, 149, 46, 0.3);
  padding: var(--space-md);
  background-color: rgba(255, 255, 255, 0.02);
  z-index: 2;
}

.hero-product-img {
  max-height: 550px;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.5));
  transition: transform 0.5s ease-out;
}

/* Botanical elements floating in background */
.botanical-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.botanical-leaf {
  position: absolute;
  opacity: 0.15;
  filter: blur(1px);
}

.botanical-leaf-1 {
  top: 15%;
  right: -5%;
  width: 250px;
}

.botanical-leaf-2 {
  bottom: -10%;
  left: -5%;
  width: 300px;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar {
  background-color: var(--cream-dark);
  border-top: 1px solid rgba(201, 149, 46, 0.3);
  border-bottom: 1px solid rgba(201, 149, 46, 0.3);
  padding: 1.2rem 0;
  z-index: 10;
}

.trust-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--green-900);
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ==========================================================================
   BRAND STORY INTRO
   ========================================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.story-image-wrap {
  position: relative;
  border: 1px solid rgba(201, 149, 46, 0.2);
  padding: 15px;
}

.story-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-content h2 {
  margin-bottom: var(--space-sm);
}

.story-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.story-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--green-700);
  font-style: italic;
  margin-top: 2rem;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* ==========================================================================
   FEATURED PRODUCTS
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.product-card {
  background-color: var(--white);
  border: 1px solid rgba(201, 149, 46, 0.15);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(8, 42, 32, 0.05);
  transform: translateY(-5px);
}

.product-image-area {
  position: relative;
  background-color: var(--cream);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-sm);
}

.product-image-area img {
  height: 90%;
  width: 90%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--green-900);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.75rem;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  font-weight: 500;
  border: 1px solid var(--gold);
}

.product-details {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid rgba(201, 149, 46, 0.1);
}

.product-category {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.product-name-title {
  font-size: 1.6rem;
  color: var(--green-900);
  margin-bottom: 10px;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-xs);
  border-top: 1px dotted rgba(201, 149, 46, 0.2);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-900);
}

.product-size-label {
  font-size: 0.85rem;
  color: var(--muted);
  background-color: var(--cream);
  padding: 2px 8px;
  border-radius: 2px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 15px;
}

.product-actions .btn {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   PARALLAX LIFESTYLE SECTION
   ========================================================================== */
.parallax-section {
  height: 60vh;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green-900);
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: var(--space-md);
  border: 1px solid rgba(201, 149, 46, 0.25);
  background-color: rgba(8, 42, 32, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.parallax-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.parallax-content p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--cream-dark);
}

/* ==========================================================================
   WHY CHOOSE NOOR
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.why-card {
  padding: var(--space-md);
  background-color: var(--white);
  border: 1px solid rgba(201, 149, 46, 0.15);
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: var(--gold);
  background-color: var(--cream);
}

.why-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  color: var(--gold);
  border: 1px solid rgba(201, 149, 46, 0.25);
  margin-bottom: var(--space-sm);
  transition: var(--transition-fast);
}

.why-card:hover .why-icon {
  background-color: var(--green-900);
  color: var(--gold);
}

.why-card h3 {
  font-size: 1.25rem;
  color: var(--green-900);
  margin-bottom: var(--space-xs);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ==========================================================================
   PRODUCT CATEGORY / GALLERY
   ========================================================================== */
.categories-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.category-block {
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 149, 46, 0.2);
}

.category-block-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}

.category-block:hover .category-block-bg {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 42, 32, 0.9) 0%, rgba(8, 42, 32, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  z-index: 2;
}

.category-title {
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 5px;
}

.category-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream-dark);
  font-style: italic;
}

/* ==========================================================================
   INSTAGRAM REELS SECTION
   ========================================================================== */
.instagram-section {
  background-color: var(--green-900);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  overflow: hidden;
}

.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

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

.carousel-nav-btn {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
  background-color: var(--gold);
  color: var(--green-900);
}

.reels-carousel-container {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.reels-carousel-container:active {
  cursor: grabbing;
}

.reels-rail {
  display: flex;
  gap: var(--space-sm);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Fallback for browsers that support scroll snap */
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none; /* Hide standard Firefox scrollbars */
}

.reels-rail::-webkit-scrollbar {
  display: none; /* Hide Chrome/Safari scrollbars */
}

.reel-card {
  flex: 0 0 calc(25% - 15px); /* Default 4 cards per row on desktop */
  aspect-ratio: 9/16;
  min-width: 250px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 149, 46, 0.3);
  scroll-snap-align: start;
}

.reel-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.reel-card:hover .reel-poster-img {
  transform: scale(1.05);
}

.reel-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 42, 32, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  z-index: 2;
  color: var(--white);
}

.reel-card:hover .reel-play-overlay {
  background-color: rgba(8, 42, 32, 0.4);
}

.play-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(201, 149, 46, 0.8);
  border: 1px solid var(--gold);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.reel-card:hover .play-icon-circle {
  transform: scale(1.1);
  background-color: var(--gold);
}

.reel-handle {
  position: absolute;
  bottom: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  z-index: 3;
}

/* Video Modal Viewer */
.modal-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(8, 42, 32, 0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-viewer.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-container {
  position: relative;
  width: 90%;
  max-width: 450px;
  aspect-ratio: 9/16;
  border: 1px solid var(--gold);
  background-color: var(--charcoal);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.modal-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: -45px;
  right: -5px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--gold);
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(8, 42, 32, 0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-nav-btn:hover {
  background-color: var(--gold);
  color: var(--green-900);
}

.modal-btn-prev {
  left: -60px;
}

.modal-btn-next {
  right: -60px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
/* Reviews Infinite Marquee CSS */
.reviews-marquee-container {
  overflow: hidden;
  width: 100%;
  padding: var(--space-sm) 0;
  position: relative;
  margin-top: var(--space-md);
}

.reviews-marquee-container::before,
.reviews-marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

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

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

.bg-cream .reviews-marquee-container::before {
  background: linear-gradient(to right, var(--cream) 0%, rgba(245,239,227,0) 100%);
}

.bg-cream .reviews-marquee-container::after {
  background: linear-gradient(to left, var(--cream) 0%, rgba(245,239,227,0) 100%);
}

.reviews-marquee-rail {
  display: flex;
  gap: var(--space-md);
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.reviews-marquee-rail:hover {
  animation-play-state: paused;
}

.reviews-marquee-rail .testimonial-card {
  width: 380px;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.reviews-marquee-rail .testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

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

@media (max-width: 768px) {
  .reviews-marquee-rail .testimonial-card {
    width: 290px;
    padding: var(--space-sm);
  }
  .reviews-marquee-container::before,
  .reviews-marquee-container::after {
    width: 60px;
  }
}


.testimonial-card {
  background-color: var(--white);
  border: 1px solid rgba(201, 149, 46, 0.15);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 15px;
  right: 25px;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: rgba(201, 149, 46, 0.1);
}

.stars-row {
  color: var(--gold);
  margin-bottom: var(--space-xs);
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(201, 149, 46, 0.1);
}

.author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--green-900);
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.verified-badge {
  font-size: 0.75rem;
  background-color: rgba(30, 102, 59, 0.1);
  color: var(--success);
  padding: 2px 6px;
  font-weight: 600;
  border-radius: 2px;
}

.author-location {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
  max-width: 800px;
  margin: var(--space-md) auto 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 149, 46, 0.2);
  padding: var(--space-sm) 0;
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--green-900);
  margin: 0;
  font-weight: 600;
}

.bg-dark .faq-question {
  color: var(--white);
}

.faq-icon-arrow {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer {
  padding: var(--space-xs) 0 var(--space-sm) 0;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.6;
}

.bg-dark .faq-answer {
  color: var(--cream-dark);
}

/* ==========================================================================
   PREMIUM CTA BAR
   ========================================================================== */
.premium-cta-section {
  background-color: var(--green-900);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: var(--space-lg) 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.cta-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--cream-dark);
  margin-bottom: var(--space-md);
}

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

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
  background-color: var(--charcoal);
  color: var(--cream-dark);
  padding: var(--space-xl) 0 var(--space-sm) 0;
  border-top: 1px solid rgba(201, 149, 46, 0.25);
  font-size: 0.95rem;
}

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

.footer-brand h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.footer-brand h2 span {
  color: var(--gold);
}

.footer-brand p {
  color: var(--cream-dark);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(201, 149, 46, 0.3);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

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

.footer-column h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: 8px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

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

.footer-links a {
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-item p {
  color: var(--cream-dark);
  font-size: 0.95rem;
}

/* Footer bottom / credits */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.developer-credit {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.developer-credit a {
  color: var(--gold);
  font-weight: 600;
}

.developer-credit a:hover {
  color: var(--gold-light);
}

/* Disclaimer strip */
.disclaimer-strip {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 998;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  background-color: #20BA5A;
}

/* Pulsing effect */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ==========================================================================
   SCROLL REVEALS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* staggered cards helpers */
.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.3s; }
.reveal-stagger-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  .floating-whatsapp::before {
    animation: none !important;
  }
}

/* ==========================================================================
   DEVELOPER CREDIT BANNER
   ========================================================================== */
.developer-banner {
  background: #0a0c0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin: var(--space-md) auto;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.dev-banner-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.dev-logo-box {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7A28FF, #4F14E2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(122, 40, 255, 0.4);
  flex-shrink: 0;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  font-family: monospace;
}

.dev-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dev-built-by {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

.dev-title {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.dev-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

.dev-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dev-link-item:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.dev-link-item.email {
  color: #3b9cff;
}

.dev-link-item.whatsapp {
  color: #25d366;
}

.dev-link-item.website {
  color: var(--gold);
}

.dev-link-item.instagram {
  color: #e1306c;
}

.dev-link-item svg {
  flex-shrink: 0;
}

.dev-banner-right {
  flex-shrink: 0;
}

.dev-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.dev-chat-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

