/*==================================================
  CHEZ MAMA ADJA - LUXURY SPIRITUAL DESIGN SYSTEM
  Refactored for 100% Fluidity & Responsiveness
==================================================*/

/* --------------------------------------------------
   1. VARIABLES & DESIGN TOKENS
-------------------------------------------------- */
:root {
  /* Color Palette */
  --primary: #0B4F3A;
  --primary-dark: #053728;
  --primary-light: #146C51;
  --primary-subtle: rgba(11, 79, 58, 0.08);
  
  --gold: #D4AF37;
  --gold-light: #F4E296;
  --gold-dark: #B58E1D;
  --gold-subtle: rgba(212, 175, 55, 0.12);
  
  --dark: #0F1715;
  --dark-surface: #172421;
  --light: #FAF8F5;
  --white: #FFFFFF;
  --gray: #5A6562;
  --gray-light: #EFECE6;
  --border-color: rgba(11, 79, 58, 0.12);

  /* Elevation & Shadows */
  --shadow-sm: 0 4px 15px rgba(11, 79, 58, 0.05);
  --shadow-md: 0 10px 30px rgba(11, 79, 58, 0.09);
  --shadow-lg: 0 20px 50px rgba(11, 79, 58, 0.14);
  --shadow-gold: 0 10px 25px rgba(212, 175, 55, 0.25);

  /* Geometry & Motion */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --------------------------------------------------
   2. RESET & GLOBAL BASE
-------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* --------------------------------------------------
   3. TYPOGRAPHY (FLUID SCALING)
-------------------------------------------------- */
h1, h2, h3, h4, .font-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--gray);
}

.section-subtitle {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* --------------------------------------------------
   4. BUTTONS & UI COMPONENTS
-------------------------------------------------- */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--gold-subtle);
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* --------------------------------------------------
   5. HEADER & NAVIGATION
-------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 79, 58, 0.08);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  height: 75px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.02em;
}

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

.navbar ul {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.navbar a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  position: relative;
  padding: 0.4rem 0;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.btn-header {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

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

.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary);
  background: var(--primary-subtle);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--primary);
  color: var(--white);
}

/* Mobile Nav Drawer Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 21, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------
   6. HERO SECTION
-------------------------------------------------- */
.hero {
  padding: 160px 0 90px;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(11, 79, 58, 0.05) 0%, transparent 40%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin: 1rem 0 1.5rem;
}

.hero-text {
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.hero-features i {
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: -15px;
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: var(--transition);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero-image:hover img {
  transform: scale(1.02);
}

/* --------------------------------------------------
   7. SECTIONS & LAYOUTS
-------------------------------------------------- */
section {
  padding: 90px 0;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-content p {
  margin-bottom: 1.5rem;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 65px;
  height: 65px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--gold);
  transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  margin-bottom: 1.8rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.service-list i {
  color: var(--gold-dark);
  font-size: 0.85rem;
}

/* VALUES SECTION */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--gold-dark);
  margin-bottom: 1.2rem;
}

.value-card h3 {
  margin-bottom: 0.8rem;
}

/* BOUTIQUE / PRODUCTS SECTION */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--dark);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.product-image-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--gray-light);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 79, 58, 0.9);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.product-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.product-content p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: linear-gradient(180deg, var(--light) 0%, rgba(11, 79, 58, 0.04) 100%);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card i.quote-icon {
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary-subtle);
  color: var(--primary);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ SECTION */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1.2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
}

.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  padding: 0 1.8rem 1.5rem;
  max-height: 500px;
}

/* CTA BANNER */
.cta {
  width: 90%;
  max-width: 1240px;
  margin: 90px auto;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  margin: 0 auto 2.2rem;
  font-size: 1.1rem;
}

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
}

.contact-card i {
  font-size: 1.8rem;
  color: var(--gold-dark);
  background: var(--gold-subtle);
  padding: 0.8rem;
  border-radius: var(--radius-sm);
}

.contact-form {
  background: var(--white);
  padding: 2.8rem 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--light);
  outline: none;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-subtle);
}

/* --------------------------------------------------
   8. FOOTER
-------------------------------------------------- */
footer {
  background: var(--dark-surface);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  font-size: 0.92rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

/* --------------------------------------------------
   9. FLOATING WIDGETS
-------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-ripple {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse-ripple 2.5s infinite;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

/* --------------------------------------------------
   10. RESPONSIVE BREAKPOINTS
-------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-content,
  .about-content {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-image {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 75px;
  }

  .btn-header {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile Nav Drawer */
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 90px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .navbar.active {
    right: 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .navbar a {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .cta {
    padding: 3.5rem 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .btn-primary,
  .btn-outline,
  .btn-gold {
    width: 100%;
  }

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

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