/* ================================================================
   BQF LACHHA PARATHA — Premium Food Brand Website Stylesheet
   Aesthetic: Luxurious, warm, layered — like the paratha itself
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (VARIABLES)
---------------------------------------------------------------- */
:root {
  /* Color Palette */
  --gold: #2E7D32;
--gold-light: #66BB6A;
--gold-dark: #1B5E20;
--orange: #43A047;
--brown: #1F2937;
--cream: #F1F8E9;
  --orange:      #D4621A;
  --orange-light:#F08030;
  --brown:       #2C1A0A;
  --brown-mid:   #5C3317;
  --brown-light: #8B5E3C;
  --white:       #FFFFFF;
  --off-white:   #FAF7F2;
  --text-dark:   #1C1008;
  --text-mid:    #4A2E12;
  --text-light:  #7A5A38;
  --shadow-gold: rgba(201, 137, 42, 0.25);
  --shadow-dark: rgba(28, 16, 8, 0.15);
  --glass-bg:    rgba(253, 246, 227, 0.85);
  --glass-border:rgba(201, 137, 42, 0.2);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body:    'Poppins', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container:   1280px;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
}

/* ----------------------------------------------------------------
   2. RESET & BASE STYLES
---------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.text-accent {
  color: var(--gold);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 36px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label {
  padding-left: 0;
}
.section-header .section-label::before {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  box-shadow: 0 8px 32px var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--shadow-gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--brown);
  transform: translateY(-3px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}


/* ----------------------------------------------------------------
   3. NAVIGATION
---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(28, 16, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.logo-accent { color: var(--gold-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(201, 137, 42, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--shadow-gold);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--shadow-gold);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: var(--transition);
}
.mobile-overlay.visible {
  display: block;
  opacity: 1;
}

/* ----------------------------------------------------------------
   4. HERO SECTION
---------------------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 16, 8, 0.88) 0%,
    rgba(92, 51, 23, 0.65) 50%,
    rgba(28, 16, 8, 0.75) 100%
  );
}

/* Floating Decorations */
.hero-deco {
  position: absolute;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.deco-1 { top: 15%; left: 8%;  font-size: 3rem;  animation-delay: 0s; }
.deco-2 { top: 25%; right: 10%; font-size: 2rem; animation-delay: 1.5s; }
.deco-3 { bottom: 30%; left: 5%; font-size: 1.5rem; animation-delay: 3s; }
.deco-4 { bottom: 20%; right: 8%; font-size: 2.5rem; animation-delay: 0.8s; }
.deco-5 { top: 60%; left: 15%; font-size: 1.8rem; animation-delay: 2.2s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: heroFadeUp 1s ease 0.3s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 137, 42, 0.2);
  border: 1px solid rgba(201, 137, 42, 0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.hero-accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0; transform: translateY(8px); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

/* ----------------------------------------------------------------
   5. ABOUT SECTION
---------------------------------------------------------------- */
.about {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.section-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.06;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(28,16,8,0.2);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  transition: var(--transition-slow);
}
.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 16px 48px rgba(28,16,8,0.2);
  z-index: 2;
  transition: var(--transition);
}
.about-img-secondary:hover { transform: scale(1.04); }
.about-img-secondary img {
  width: 100%;
  height: 100%;
}

.about-experience-badge {
  position: absolute;
  top: 40px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 12px 40px var(--shadow-gold);
  z-index: 3;
}
.exp-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.exp-text {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content .section-label {
  display: block;
  margin-bottom: 14px;
}

.about-text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.stat-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.stat-card:hover {
  background: var(--white);
  box-shadow: 0 8px 32px var(--shadow-dark);
  transform: translateY(-4px);
}

.stat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px;
}
.stat-counter {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.stat-unit {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-info p {
  width: 100%;
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 4px 0 0;
}

/* ----------------------------------------------------------------
   6. PRODUCTS SECTION
---------------------------------------------------------------- */
.products {
  background: var(--cream);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow-dark);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(28,16,8,0.15);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 50px;
}
.product-badge.new     { background: linear-gradient(135deg, #27ae60, #2ecc71); }
.product-badge.value   { background: linear-gradient(135deg, #2980b9, #3498db); }
.product-badge.premium { background: linear-gradient(135deg, var(--brown), var(--brown-mid)); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 16, 8, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-quick-btn {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  transform: translateY(10px);
}
.product-card:hover .product-quick-btn {
  transform: translateY(0);
  background: rgba(255,255,255,0.25);
}

.product-info {
  padding: 24px;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--gold);
  font-size: 0.85rem;
}
.product-rating span {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-left: 4px;
}

.product-order-btn {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--shadow-gold);
}
.product-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-gold);
  color: var(--white);
}

.featured-product {
  border: 2px solid var(--gold);
}

/* ----------------------------------------------------------------
   7. WHY CHOOSE US SECTION
---------------------------------------------------------------- */
.why-us {
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,137,42,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(212,98,26,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-us .container {
  position: relative;
  z-index: 1;
}
.why-us .section-title { color: var(--white); }
.why-us .section-desc  { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,137,42,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  transform: rotate(-5deg) scale(1.1);
  box-shadow: 0 12px 32px var(--shadow-gold);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   8. PRODUCTION PROCESS SECTION
---------------------------------------------------------------- */
.process {
  background: var(--off-white);
  overflow: hidden;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--orange), var(--gold));
  border-radius: 2px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 48px;
  gap: 24px;
}
.process-step.reverse {
  direction: rtl;
}
.process-step.reverse > * {
  direction: ltr;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  text-align: center;
  z-index: 2;
  background: var(--off-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border: 3px solid var(--gold);
  color: var(--gold);
  opacity: 1;
  box-shadow: 0 0 0 6px var(--off-white);
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 24px var(--shadow-dark);
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: 0 12px 48px rgba(28,16,8,0.12);
  transform: translateY(-4px);
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.process-step .step-number { grid-column: 2; grid-row: 1; }
.process-step .step-card   { grid-column: 1; grid-row: 1; text-align: right; }
.process-step.reverse .step-card { grid-column: 3; grid-row: 1; text-align: left; }

/* Simplified for mobile: handled in media query */

/* ----------------------------------------------------------------
   9. GALLERY SECTION
---------------------------------------------------------------- */
.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.large  { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall   { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 16, 8, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ----------------------------------------------------------------
   10. TESTIMONIALS SECTION
---------------------------------------------------------------- */
.testimonials {
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 100%);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 30rem;
  color: var(--gold);
  opacity: 0.03;
  pointer-events: none;
  line-height: 1;
}

.testimonial-carousel {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 32px var(--shadow-dark);
  min-width: 100%;
  flex-shrink: 0;
  border-bottom: 4px solid var(--gold);
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testi-quote {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.95rem;
  display: flex;
  gap: 3px;
}

.testi-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  font-size: 2.8rem;
  color: var(--cream-dark);
  line-height: 1;
}
.testi-author strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--brown);
}
.testi-author span {
  font-size: 0.82rem;
  color: var(--text-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ----------------------------------------------------------------
   11. CTA SECTION
---------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,16,8,0.92), rgba(92,51,23,0.85));
}
.cta-section .container { position: relative; z-index: 1; }

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------------
   12. CONTACT SECTION
---------------------------------------------------------------- */
.contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: 0 2px 16px var(--shadow-dark);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: 0 8px 32px rgba(28,16,8,0.1);
  transform: translateY(-3px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--brown);
  margin-bottom: 6px;
}
.contact-card a, .contact-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
  line-height: 1.6;
  transition: var(--transition);
}
.contact-card a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-mid);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 32px var(--shadow-dark);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--brown);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,137,42,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%237A5A38' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #e8f8f0;
  border: 1px solid #27ae60;
  color: #1a7a42;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.2rem; color: #27ae60; }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 32px var(--shadow-dark);
}
.map-header {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ----------------------------------------------------------------
   13. FOOTER
---------------------------------------------------------------- */
.footer {
  background: var(--brown);
}

.footer-top {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-col ul a i {
  font-size: 0.7rem;
  color: var(--gold);
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact li i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li a,
.footer-contact li span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact li a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ----------------------------------------------------------------
   14. SCROLL TO TOP BUTTON
---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-gold);
}

/* ----------------------------------------------------------------
   15. RESPONSIVE DESIGN
---------------------------------------------------------------- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  :root { --section-pad: 72px; }

  /* Nav */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--brown);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 6px;
    z-index: 999;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-link {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    width: 100%;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: 0; bottom: -20px; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why Us */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-timeline::before { left: 24px; }
  .process-step,
  .process-step.reverse {
    grid-template-columns: 60px 1fr;
    direction: ltr;
  }
  .process-step .step-number { grid-column: 1; }
  .process-step .step-card,
  .process-step.reverse .step-card {
    grid-column: 2;
    text-align: left;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px; }

  /* Hero */
  .hero-stats { gap: 16px; padding: 16px 24px; }
  .hero-stat-divider { display: none; }

  /* About */
  .stats-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-experience-badge { left: 10px; top: 10px; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.large { grid-column: span 2; }
  .gallery-item.tall  { grid-row: span 1; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Contact form wrap */
  .contact-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  /* Process */
  .step-card { padding: 20px; }

  /* Lightbox arrows */
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}