/* ================================================
   GHEE CROISSANT — DESIGN SYSTEM
   ================================================ */

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

/* --- Custom Properties --- */
:root {
  --clr-primary: #1a3a2a;
  --clr-primary-dark: #0f2419;
  --clr-primary-light: #2d5e3f;
  --clr-accent: #c8a96e;
  --clr-accent-light: #dfc99a;
  --clr-bg: #f5f0e1;
  --clr-bg-alt: #ebe5d3;
  --clr-bg-dark: #1a3a2a;
  --clr-text: #1a1a1a;
  --clr-text-light: #f5f0e1;
  --clr-text-muted: #6b6b6b;
  --clr-white: #ffffff;
  --clr-overlay: rgba(26, 58, 42, 0.85);

  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --fs-xs: clamp(0.7rem, 0.8vw, 0.8rem);
  --fs-sm: clamp(0.85rem, 1vw, 0.95rem);
  --fs-base: clamp(0.95rem, 1.1vw, 1.05rem);
  --fs-md: clamp(1.1rem, 1.3vw, 1.25rem);
  --fs-lg: clamp(1.3rem, 1.8vw, 1.6rem);
  --fs-xl: clamp(1.8rem, 2.5vw, 2.2rem);
  --fs-2xl: clamp(2.2rem, 3.5vw, 3rem);
  --fs-3xl: clamp(2.8rem, 5vw, 4.5rem);
  --fs-hero: clamp(3.5rem, 7vw, 6rem);

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 4rem;
  --spacing-2xl: 6rem;
  --spacing-3xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.2);
  --shadow-glow: 0 0 40px rgba(200, 169, 110, 0.3);

  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-accent) var(--clr-bg);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

/* --- Utility --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--spacing-sm);
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--clr-accent);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

.section-title-light {
  color: var(--clr-text-light);
}

.section-subtitle {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-primary-dark);
}

.btn-primary:hover {
  background: var(--clr-accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

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

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

.btn-white:hover {
  background: var(--clr-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(26, 58, 42, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  height: 68px;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-base);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-brand {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--clr-text-light);
  line-height: 1;
}

.nav-brand span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text-light);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.5px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--clr-accent);
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--clr-accent) !important;
  color: var(--clr-primary-dark) !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: all var(--transition-base) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--clr-accent-light) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: var(--clr-text-light);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-dark) 0%, var(--clr-primary) 50%, var(--clr-primary-light) 100%);
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 58, 42, 0.6) 0%,
    rgba(26, 58, 42, 0.4) 40%,
    rgba(26, 58, 42, 0.8) 100%
  );
  z-index: 2;
}

.hero-doodle {
  position: absolute;
  inset: 0;
  background: url('assets/doodle-pattern.svg') repeat center center;
  background-size: 600px;
  opacity: 0.06;
  z-index: 3;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--clr-accent);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
  50% { opacity: 0.6; transform: translateY(-100px) scale(1); }
}

/* Floating croissant shapes */
.floating-croissant {
  position: absolute;
  color: var(--clr-accent);
  opacity: 0;
  pointer-events: none;
  animation: floatCroissant var(--duration, 16s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  z-index: 2;
}

.floating-croissant svg {
  width: 100%;
  height: 100%;
}

@keyframes floatCroissant {
  0% {
    opacity: 0;
    transform: translateY(20px) translateX(0) rotate(var(--rotate-start, 0deg)) scale(0.6);
  }
  15% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.22;
    transform: translateY(-80px) translateX(var(--drift-x, 15px)) rotate(calc(var(--rotate-start, 0deg) + 45deg)) scale(1);
  }
  85% {
    opacity: 0.12;
  }
  100% {
    opacity: 0;
    transform: translateY(-160px) translateX(calc(var(--drift-x, 15px) * -1)) rotate(calc(var(--rotate-start, 0deg) + 90deg)) scale(0.7);
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-md);
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin: 0 auto var(--spacing-lg);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  animation: fadeInDown 1s ease-out 0.3s backwards;
  border-radius: var(--radius-lg);
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 700;
  color: var(--clr-text-light);
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-title .highlight {
  color: var(--clr-accent);
  font-style: italic;
}

.hero-tagline {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--clr-accent-light);
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 1s ease-out 0.7s backwards;
}

.hero-desc {
  font-size: var(--fs-base);
  color: rgba(245, 240, 225, 0.8);
  max-width: 550px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.9s backwards;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1.1s backwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeInUp 1s ease-out 1.5s backwards;
}

.hero-scroll-indicator span {
  font-size: var(--fs-xs);
  color: rgba(245, 240, 225, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(245, 240, 225, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--clr-accent);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.2; }
}

/* ================================================
   WAVE DIVIDER
   ================================================ */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.wave-top svg { transform: rotate(180deg); }

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
  padding: var(--spacing-3xl) 0;
  background: var(--clr-bg);
  position: relative;
}

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

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

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

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

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--clr-accent);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-content {
  padding: var(--spacing-lg) 0;
}

.about-content .section-title {
  margin-bottom: var(--spacing-md);
}

.about-text {
  color: var(--clr-text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.9;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-text-light);
}

.about-feature-text h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  color: var(--clr-primary);
  margin-bottom: 0.25rem;
}

.about-feature-text p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

/* ================================================
   PRODUCTS SECTION
   ================================================ */
.products {
  padding: var(--spacing-3xl) 0;
  background: var(--clr-primary);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/doodle-pattern.svg') repeat center center;
  background-size: 600px;
  opacity: 0.05;
  pointer-events: none;
}

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

.products-header .section-title {
  color: var(--clr-text-light);
}

.products-header .section-subtitle {
  color: rgba(245, 240, 225, 0.7);
  margin: 0 auto;
}

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

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border-color: var(--clr-accent);
  background: rgba(255,255,255,0.08);
}

.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.product-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--clr-accent);
  color: var(--clr-primary-dark);
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card-content {
  padding: var(--spacing-md);
}

.product-card-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--clr-text-light);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 225, 0.6);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-accent);
  transition: gap var(--transition-fast);
}

.product-card-link:hover {
  gap: 0.8rem;
  color: var(--clr-accent-light);
}

/* ================================================
   FEATURES / WHY US
   ================================================ */
.features {
  padding: var(--spacing-3xl) 0;
  background: var(--clr-bg);
  position: relative;
}

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

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

.feature-card {
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--clr-primary);
  margin-bottom: var(--spacing-sm);
}

.feature-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
}

/* ================================================
   STATS SECTION
   ================================================ */
.stats {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  position: relative;
  overflow: hidden;
}

.stats .doodle-bg {
  position: absolute;
  inset: 0;
  background: url('assets/doodle-pattern.svg') repeat center center;
  background-size: 500px;
  opacity: 0.05;
  pointer-events: none;
}

.stats::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.15), transparent);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: var(--spacing-lg);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  font-size: var(--fs-xl);
}

.stat-label {
  font-size: var(--fs-sm);
  color: rgba(245, 240, 225, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================================================
   CONTACT / FOOTER
   ================================================ */
.contact {
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
  background: var(--clr-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--clr-primary);
  margin-bottom: var(--spacing-md);
}

.contact-info p {
  color: var(--clr-text-muted);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-text-light);
}

.contact-detail-text h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 0.2rem;
}

.contact-detail-text p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-wrapper h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--clr-primary);
  margin-bottom: var(--spacing-md);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--clr-bg-alt);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-accent);
  background: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--clr-primary-dark);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.footer-logo-text {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  color: var(--clr-text-light);
  font-weight: 600;
}

.footer-logo-text span {
  display: block;
  font-size: var(--fs-xs);
  color: var(--clr-accent);
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-center {
  color: rgba(245, 240, 225, 0.4);
  font-size: var(--fs-xs);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 240, 225, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-light);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--clr-primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-base);
    box-shadow: var(--shadow-xl);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: var(--fs-md);
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

  .features-grid .feature-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

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

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

@media (max-width: 640px) {
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-logo {
    width: 150px;
  }

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

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

  .features-grid .feature-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

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

  .stat-item {
    padding: var(--spacing-sm);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}
