/* 1. VARIABLES & THEME */
:root {
  /* BACKGROUNDS */
  --color-bg: #fffbf7;       /* Warm Cream */
  --color-bg-alt: #f4efe6;   /* Pale Champagne */
  --color-bg-dark: #0e2a22;  /* Royal Emerald Green */
  --color-bg-product: #e6ded3; /* Rich Latte */

  /* TEXT COLORS */
  --color-text-main: #1a1a1a;   
  --color-text-muted: #4a4a4a;  
  --color-text-light: #ffffff;

  /* ACCENTS */
  --color-accent: #d4af37;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  
  --color-whatsapp: #128c7e; 
  
  /* FONTS */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* SHAPES */
  --radius-sm: 8px; 
  --radius-md: 16px; 
  
  /* DEPTH */
  --shadow-soft: 0 10px 40px rgba(14, 42, 34, 0.06); 
  --shadow-hover: 0 25px 60px rgba(14, 42, 34, 0.15);
  
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  font-size: 0.95rem; 
  line-height: 1.6;
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

h1, h2, h3 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-bg-dark); /* Default Green */
}

/* FIX: Section Headers Black */
.section-header h2 {
  color: #1a1a1a !important;
}

/* FIX: Card Titles Black */
.card h3 {
  color: #1a1a1a !important; 
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 3. HEADER */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(255, 251, 247, 0.98);
  backdrop-filter: blur(12px); 
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 12px 0;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo-block { display: flex; align-items: center; gap: 12px; }

.logo-img { height: 60px; width: auto; object-fit: contain; }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;        /* stronger */
  letter-spacing: 0.14em; /* wider = looks bigger */
  font-size: 0.85rem;     /* SAME SIZE */
  text-transform: uppercase;
  color: var(--color-bg-dark);
  line-height: 1.1;       /* prevents header growth */
}

.nav-list { display: flex; gap: 32px; list-style: none; }

.nav-link {
  font-size: 0.9rem; font-weight: 500;
  position: relative; color: var(--color-text-main);
}
.nav-link:hover { color: var(--color-accent); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--color-bg-dark); }

.site-header .btn--outline {
  border-color: #d4af37; color: #b8860b; font-weight: 600;
  letter-spacing: 0.05em; font-size: 0.8rem; padding: 10px 24px;
  border-radius: 50px;
}
.site-header .btn--outline:hover { background: #d4af37; color: #fff; }

/* 4. HERO SECTION */
.hero {
  padding: 130px 0 80px; 
  background-color: var(--color-bg-dark);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
  color: var(--color-text-light);
  position: relative;
}

.hero-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; }

.hero h1 { font-size: 3.2rem; color: var(--color-text-light); margin-bottom: 20px; }

.hero__subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.9);
  margin-bottom: 30px; max-width: 500px; font-weight: 300;
}

.hero__actions { display: flex; gap: 16px; margin-bottom: 30px; }
.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; }

.badge {
  font-size: 0.75rem; padding: 6px 16px;
  background: rgba(212, 175, 55, 0.15); border: 1px solid var(--color-accent);
  border-radius: 50px; text-transform: uppercase; color: #fff; font-weight: 600;
}

.hero-card-glass {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(16px);
  padding: 30px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.hero-card-title {
  font-family: var(--font-heading); font-size: 1.35rem;
  margin-bottom: 16px; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 10px;
}

/* LIST STYLE FIX */
.check-list {
  list-style: none !important; 
  margin: 0; padding: 0;
}

.check-list li {
  margin-bottom: 10px; padding-left: 30px; font-size: 1rem;
  color: var(--color-text-main); position: relative;
}
.hero .check-list li { color: rgba(255, 255, 255, 0.95); }

.check-list li::before {
  content: "✦"; position: absolute; left: 0; top: 1px;
  color: var(--color-accent); font-size: 1rem; line-height: 1.6;
}

/* 5. BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; 
  border-radius: 50px;
  font-weight: 600; cursor: pointer; transition: var(--transition);
  font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--gradient-gold);
  color: #fff; border: none;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}
.btn--primary:hover { 
  background: linear-gradient(135deg, #fce3a0 0%, #d4a950 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(191, 149, 63, 0.4);
}

.btn--outline {
  background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff;
}
.btn--outline:hover { background: #fff; color: var(--color-bg-dark); border-color: #fff; }

.btn--whatsapp {
  background: var(--gradient-gold); 
  color: #fff; text-transform: none; padding: 12px 28px;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #fce3a0 0%, #d4a950 100%);
}

/* 6. LAYOUT UTILS */
/* FIX: Reduced Padding to 50px */
.section { padding: 50px 0; } 
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: #fff; }

.section-header { text-align: center; margin-bottom: 30px; }
.section-header h2 { font-size: 2.8rem; margin-bottom: 12px; }

/* FIX: Green Section Headers = White */
.section--dark .section-header h1,
.section--dark .section-header h2 { 
  color: #fff !important; 
}

.section-header p { color: var(--color-text-muted); font-size: 1.15rem; margin: 0 auto;}
.section--dark .section-header p { color: rgba(255,255,255,0.7); }

/* GRID FIXED FOR 4 COLUMNS */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 30px; 
}

/* 7. CARDS */
.card {
  background: #ffffff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(255,255,255,0.5);
  border-bottom: 4px solid rgba(212, 175, 55, 0.3);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--color-accent);
}

.card__image-wrapper {
  width: 100%;
  height: 260px; 
  background: #fdfdfd; 
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding: 10px; 
  overflow: hidden; 
}

.card__img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; 
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
  transition: transform 0.6s ease;
}
/* Default subtle zoom */
.card:hover .card__img { transform: scale(1.08); }

.card__content { 
  padding: 28px; 
  flex-grow: 1; display: flex; flex-direction: column; text-align: center; 
}
.card__content h3 { font-size: 1.4rem; margin-bottom: 8px; }
.card__content p { 
  color: var(--color-text-muted); font-size: 1rem; margin-bottom: 24px; flex-grow: 1; 
}

.card .btn { width: 100%; padding: 12px 0; font-size: 0.85rem; border-radius: 50px; }

.link-arrow {
  color: var(--color-accent); font-weight: 700; font-size: 0.9rem; 
  text-transform: uppercase; margin-top: auto; display: block; letter-spacing: 1px;
}

/* BIG ZOOM EFFECT */
.card--zoom:hover .card__img {
  transform: scale(1.35) !important; 
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 8. CLIENTS */
.clients-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px;
}
.client-logo {
  background: rgba(255,255,255,0.4); 
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: #888; 
  border: 1px solid rgba(212, 175, 55, 0.2); 
  font-size: 0.8rem; font-weight: 600;
}

.testimonial {
  text-align: center; max-width: 800px; margin: 0 auto;
  padding: 50px; 
  border: 2px solid rgba(212, 175, 55, 0.3); 
  border-radius: var(--radius-md); 
  background: #fff;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.08);
  position: relative;
}
.testimonial::before {
    content: "“";
    font-family: var(--font-heading); font-size: 5rem;
    color: rgba(212, 175, 55, 0.2);
    position: absolute; top: -20px; left: 20px; line-height: 1;
}

.testimonial blockquote {
  font-family: var(--font-heading); font-size: 1.6rem; font-style: italic; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.testimonial cite {
  font-style: normal; font-weight: 600; color: var(--color-accent); font-size: 0.9rem; letter-spacing: 1px;
}

/* BIGGER TEXT FOR ABOUT SECTION */
.split-content p {
    font-size: 1.1rem; 
    margin-bottom: 1.5em;
    color: var(--color-text-main);
}
.split-content li {
    font-size: 1.1rem; 
    margin-bottom: 15px;
}

/* =========================================
   COMPACT CONTACT SECTION OVERRIDES
   ========================================= */

#contact.section {
  padding: 50px 0 !important; 
}

#contact .split-layout {
  gap: 30px; 
  align-items: center;
}

.contact-form {
  background: rgba(255,255,255,0.05); 
  backdrop-filter: blur(10px);
  padding: 30px !important; 
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.contact-form label { color: #fff; display: block; margin-bottom: 4px; font-size: 0.85rem; font-weight: 600; }
.form-group { margin-bottom: 15px !important; }

.contact-form .form-group input, 
.contact-form .form-group textarea {
  width: 100%; padding: 10px 14px !important; 
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); 
  color: #fff; 
  border-radius: 8px; font-size: 0.9rem;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--color-accent); background: rgba(255,255,255,0.2);
}

.contact-info h2 {
  font-size: 2.2rem; margin-bottom: 10px;
}
.contact-info p { font-size: 1rem; }
.contact-info div { margin: 25px 0 !important; line-height: 1.6 !important; }

.full-width { width: 100%; }
.split-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}

/* 10. FOOTER (COMPACT) */
.site-footer {
  padding: 30px 0; 
  border-top: 1px solid rgba(255,255,255,0.1);
  background: var(--color-bg-dark); font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.footer-inner { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 10px;
}
.footer-links a { margin: 0 15px; color: rgba(255,255,255,0.8); }

.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  background: #25d366; 
  color: #fff;
  width: 55px; height: 55px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  z-index: 9999;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-layout, .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 140px; }
  .logo-img { height: 50px; } 
  .logo-text { font-size: 0.8rem; max-width: 200px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 1px solid #e0e0e0;
  }
  .nav-list.open { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .logo-text { display: none; }
}
/* ======================================
   MOBILE-ONLY IMPROVEMENTS
   SAFE – DESKTOP UNTOUCHED
====================================== */

/* 1️⃣ Reduce hero height on mobile */
@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }
}

/* 2️⃣ Smaller hero heading on small phones */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }
}

/* 3️⃣ Better spacing in mobile navigation */
@media (max-width: 768px) {
  .nav-list li {
    margin-bottom: 16px;
  }

  .nav-link {
    padding: 8px 0;
    display: block;
  }
}

/* 4️⃣ Prevent WhatsApp button overlap on small screens */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}
/* ======================================
   MOBILE TRUST + CONVERSION IMPROVEMENTS
====================================== */

/* 1️⃣ Make homepage product cards feel more "real" on mobile */
@media (max-width: 768px) {
  .card__image-wrapper svg {
    width: 64px;
    height: 64px;
    opacity: 0.85;
  }

  .card {
    border: 1px solid rgba(0, 0, 0, 0.06);
  }
}

/* 2️⃣ Stronger CTA visibility on mobile */
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* 3️⃣ Sticky mobile CTA (WhatsApp) — conversion boost */
@media (max-width: 768px) {
  .btn--whatsapp {
    font-size: 1rem;
  }
}

/* 4️⃣ Final mobile polish — spacing & tap comfort */
@media (max-width: 768px) {
  .card__content h3 {
    font-size: 1.2rem;
  }

  .card__content p {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }
}

