/* =========================================================
   Lumière Beauty — Full-Width, Responsive, Natural CSS
   Save as: style.css
========================================================= */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Design tokens */
/* Modern Girly Makeup Artist Palette (No Pink) */
:root{
  --brand:#9A7755;        /* warm caramel glam */
  --brand-dark: #87613c;   /* deeper bronze mocha */
  --accent: #E6D5B8;       /* soft champagne highlight */
  --ink: #2B2B2B;          /* soft but strong black */
  --muted: #7A6E63;        /* muted taupe contour */
  --border: #F1EBE4;       /* soft neutral border */
  --bg: #E6D5B8;            /* creamy makeup-vanity background */
  --bg-soft:  #e8dfd0;      /* airy neutral */
  --radius:18px;
  --shadow:0 8px 24px rgba(0,0,0,.06);
  --gutter: clamp(16px, 4vw, 48px);
  --section-py: clamp(2.25rem, 6vw, 4.5rem);
}


/* Base + reset */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ margin:0; }
body{
  font-family:"Spartan", system-ui,-apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji", sans-serif;
  font-size:16px; line-height:1.6;
  color:var(--ink); background:var(--bg);
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--brand) 40%, white);
  outline-offset: 2px;
}

/* Structural wrappers */
header, section, footer{ width:100%; padding-inline: var(--gutter); }
.wrap{ width:min(1160px, 100%); margin-inline:auto; }

/* White background sections */
#services, #gallery {
  background: #fff;
}

/* Typography */
.title{ font-size: clamp(1.6rem, 2vw + 1rem, 2.2rem); margin: 0 0 .6rem; }
.muted{ color:var(--muted); }

/* Buttons */
.btn{
  display:inline-block; background:var(--brand); color:#fff;
  padding:.78rem 1.1rem; border-radius:999px; border:0; cursor:pointer;
  box-shadow:var(--shadow); transition: background .2s ease, transform .1s ease;
  line-height:1;
}
.btn:hover{ background:var(--brand-dark); }
.btn:active{ transform: translateY(1px); }
.btn.outline{ background:transparent; color:var(--brand); border:1px solid var(--brand); box-shadow:none; }

/* Center "Book Now" button inside mobile menu */
.mobile-menu .btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 1rem;
  color: #fff !important;
}

.mobile-menu .btn:hover,
.mobile-menu .btn:active,
.mobile-menu .btn.active {
  color: #fff !important;
}


/* =========================
   MOBILE SIDE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 280px;
  max-width: 85%;
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}



.mobile-menu.open {
  transform: translateX(0);        /* slides in */
}

.mobile-menu a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

/* hide full nav and show burger icon on phones */
@media (max-width: 860px) {
  .nav { display: none; }
  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--ink);
  }

}
/* Close button inside side menu */
#close-btn {
  list-style: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}

#close-btn i {
  font-size: 1.6rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

#close-btn:hover i {
  color: var(--brand);
}

/* =========================
   Header / Navigation
========================= */
header{
  position: sticky; top:0; z-index:50;
  background:#fff; border-bottom:1px solid var(--border);
  padding-block:.6rem;
}
header .container{
  width:100%; margin:0; padding:0;
  display:flex; align-items:center; justify-content:space-between;
  gap:.5rem;
}
.brand{ display:flex; align-items:center; gap:.55rem; font-weight:700; }
.brand .logo{ width:28px; height:28px; border-radius:50%; background:var(--brand); }
.logo-img { opacity: 1; visibility: visible; }

.nav{ display:flex; gap: clamp(.5rem, 2vw, 1rem); align-items:center; flex-wrap:wrap; }
.nav a{ padding:.8rem .5rem; color:#333; } /* bigger tap targets */
.nav .btn{ margin-left:.25rem; }

/* Mobile menu toggle button (default hidden on desktop) */
.mobile-toggle{
  display:none;
  border:1px solid var(--border); border-radius:10px; padding:.6rem .7rem;
  background:#fff; cursor:pointer; line-height:1;
}
.mobile-menu[hidden]{
  display: none !important;
  transform: translateX(100%);
}

@media (max-width: 860px){
  .nav{ display:none; }
  .mobile-toggle{ display:inline-flex; }
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding-block: var(--section-py);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3rem
  );
  margin: 0 0 1rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero .btn.outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero .btn.outline:hover {
  background: #fff;
  color: var(--brand-dark);
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    align-items: flex-end;
    padding-bottom: 3rem;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

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

  .hero .flex-row {
    justify-content: center;
  }
}
.badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;

  /* match normal text size */
  font-size: 1em;
  line-height: 1; /* same line height as text */

  /* tighten padding to text */
  padding: 0.1em 0.5em;
  vertical-align: baseline; /* aligns with text bottom */
}
.image.small {
  max-width: 300px;
  margin-inline: auto; /* centers it */
  text-align: center;
}


.image.medium {
  max-width: 600px;
  margin-inline: auto;
}

/* =========================
   Sections / Grids
========================= */
.section{ padding-block: var(--section-py); }

.grid-2{
  display:grid; gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 900px){ .grid-2{ grid-template-columns:1fr; } }

.grid-3{
  display:grid; gap: clamp(.8rem, 2.5vw, 1.25rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Cards / Services */
.card{ border:1px solid var(--border); border-radius:var(--radius); background:#fff; box-shadow:var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.card.pad{ padding: clamp(.9rem, 2.2vw, 1.2rem); }
.service{ transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service h3{ margin:.5rem 0; }
.pill{
  display:inline-block; background:#fafafa; border:1px solid var(--border);
  padding:.35rem .65rem; border-radius:999px; font-size:.82rem; margin:.2rem .2rem 0 0;
}

/* =========================
   Products Section
========================= */
.products-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.product-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

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

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

.product-info {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.product-info h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  color: var(--brand);
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .product-image {
    height: 250px;
  }

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

/* =========================
   Gallery + Filters + Masonry
========================= */
.filters{ display:flex; flex-wrap:wrap; gap:.5rem; margin:0 0 1rem; }
.filters .btn{ padding:.6rem 1rem; font-size: 1.05rem; }
.filters .btn.active{ background: var(--brand); color: #fff; }

/* ===== Masonry gallery: variable heights, 2+ columns ===== */
/* ===== Responsive Masonry Gallery (smaller photo sizes) ===== */
.masonry {
  columns: 2;                               /* still 2 columns by default */
  column-gap: clamp(0.6rem, 2vw, 1rem);     /* smaller space between */
  max-width: 95%;                         /* prevent it from going too wide on large screens */
  margin-inline: auto;                      /* center the gallery */
}

@media (min-width: 700px) {
  .masonry {
    columns: 3;                             /* 3 columns for tablet */
    max-width: 1100px;
  }
}

@media (min-width: 1100px) {
  .masonry {
    columns: 4;                             /* 4 columns for desktop */
    max-width: 1280px;
  }
}

.masonry .item {
  break-inside: avoid;
  margin: 0 0 clamp(1rem, 2vw, 1rem);
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.masonry img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1px;
  transition: transform 0.3s ease;
}

.masonry .item:hover img {
  transform: scale(1.03);
}

.tag {
  position: absolute;
  top: .4rem;
  left: .4rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .2rem .45rem;
  font-size: .7rem;
  visibility: hidden;
}


/* Lightbox */
.lightbox{
  position:fixed; inset:0; background:rgba(0,0,0,.85);
  display:none; align-items:center; justify-content:center; z-index:100;
}
.lightbox.open{ display:flex; }
.lightbox figure{ max-width:min(92vw,1200px); max-height:86vh; position:relative; }

/* Make the image contain within the box and never stretch */
.lightbox img{
  display: block;
  width: auto;              /* don't force full width on wide monitors */
  max-width: 100%;
  height: auto;
  max-height: 80vh;         /* keep some breathing room under the top/bottom */
  object-fit: contain;      /* no cropping/stretched faces */
  border-radius: 12px;
}.lb-close,.lb-prev,.lb-next{
  position:absolute; top:50%; transform:translateY(-50%);
  background:#fff; border:0; border-radius:999px; padding:.6rem .8rem; cursor:pointer; box-shadow:var(--shadow);
}
.lb-close{ top:-44px; right:0; transform:none; }
.lb-prev{ left:-.5rem; } .lb-next{ right:-.5rem; }
@media(max-width:560px){
  .lb-prev,.lb-next{ top:100%; transform:translateY(-20%); }
  .lb-prev{ left:0; } .lb-next{ right:0; }
}

/* =========================
   About Facts
========================= */
.facts{
  display:grid; gap:.6rem; margin-top:.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.fact{
  background:#fafafa; border:1px solid var(--border); padding:.7rem;
  border-radius:12px; text-align:center; font-size:.95rem;
}

/* =========================
   Certificates
========================= */
.certs{
  display:grid; gap: clamp(.6rem, 2.2vw, 1rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.cert{
  display:flex; gap:.8rem; align-items:center; padding:1rem;
  border:1px solid var(--border); border-radius:14px; background:#fff;
}
.cert img{ width:52px; height:52px; border-radius:10px; object-fit:cover; }
.cert small{ color:var(--muted); }

/* =========================
   Pricing
========================= */
.pricing{
  display:grid; gap: clamp(.6rem, 2.2vw, 1rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.price{ padding: clamp(1rem, 2.4vw, 1.2rem); }
.price h3{ margin:.2rem 0; }
.price .amount{ font-size: clamp(1.2rem, 1.6vw + .8rem, 1.6rem); font-weight:700; color:var(--brand); }
.price ul{ margin:.6rem 0 0; padding-left:1rem; }
.price li{ margin:.3rem 0; }

/* =========================
   Reviews Carousel — responsive version
========================= */
.carousel {
  position: relative;
  overflow: hidden;
  padding-block: 1rem;
}

.track {
  display: flex;
  gap: clamp(.6rem, 2vw, 1rem);
  transition: transform .4s ease;
  scroll-behavior: smooth;
  touch-action: pan-y;
}

.review {
  flex: 0 0 85%;
  max-width: 560px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: clamp(1rem, 3vw, 1.4rem);
  margin-inline: auto;
  line-height: 1.55;
  font-size: 0.95rem;
}
@media (min-width: 700px) {
  .review {
    flex: 0 0 48%; /* two reviews per row on tablets */
  }
}
@media (min-width: 1100px) {
  .review {
    flex: 0 0 32%; /* three per row on desktop */
  }
}

/* Carousel buttons */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .65rem .9rem;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: background .2s ease;
}
.car-btn:hover { background: color-mix(in srgb, var(--brand) 10%, white); }
.car-prev { left: .5rem; }
.car-next { right: .5rem; }

/* --- 📱 Better mobile layout --- */
@media (max-width: 600px) {
  .carousel {
    padding-block: 0.5rem 2.5rem;
  }

  .track {
    gap: 0.8rem;
    padding-inline: 0.4rem;
  }

  .review {
    flex: 0 0 90%;
    font-size: 0.9rem;
    padding: 1rem;
  }

  /* Move nav buttons below */
  .car-btn {
    position: static;
    transform: none;
    display: inline-flex;
    margin: 0 0.3rem;
  }

  .carousel::after {
    content: "";
    display: block;
    text-align: center;
  }

  .car-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
  }
}

/* =========================
   FAQ
========================= */
.faq details{
  border:1px solid var(--border); border-radius:12px; padding:.8rem 1rem; background:#fff;
}
.faq summary{ cursor:pointer; font-weight:600; }
.faq details + details{ margin-top:.6rem; }

/* =========================
   Contact Form
========================= */
/* Contact form styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

.contact-form button {
  margin-top: 0.5rem;
  align-self: start;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

form.card{ width:100%; }
form .row{ display:grid; gap:.7rem; grid-template-columns:1fr 1fr; }
@media (max-width:720px){ form .row{ grid-template-columns:1fr; } }

input, textarea, select{
  width:100%; border:1px solid #ddd; padding:.9rem 1rem;
  border-radius:12px; font:inherit; color:inherit; background:#fff;
}
textarea{ resize: vertical; }

/* =========================
   Footer
========================= */
/* =========================
   🦶 Footer
========================= */
footer{
  border-top: 1px solid var(--border);
  padding-block: clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

/* Large Logo in Footer */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
  max-width: 100%;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  font-style: italic;
}

/* Footer Navigation */
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--brand);
}

/* Footer Contact */
.footer-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Legacy support (keep for now) */
.foot{
  display:flex; gap:1rem; align-items:center; justify-content:space-between; flex-wrap:wrap;
}
.social{ display:flex; gap:.6rem; }
.chip{
  border:1px solid var(--border); padding:.45rem .7rem; border-radius:999px; font-size:.9rem;
}

/* =========================
   💬 Testimonials
========================= */
.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.testimonial-card .stars {
  font-size: 1rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--ink);
  margin: 0;
  flex: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.testimonial-author strong {
  color: var(--brand);
  font-size: 0.95rem;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 0.85rem;
}

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

/* =========================
   📅 Booking Modal
========================= */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-modal.open {
  opacity: 1;
  pointer-events: all;
}

.booking-content {
  background: white;
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.booking-modal.open .booking-content {
  transform: scale(1);
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.booking-header h3 {
  margin: 0;
  color: var(--brand);
}

.booking-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
}

.booking-close:hover {
  color: var(--ink);
}

.booking-body {
  padding: 1.5rem;
}

/* =========================
   💬 WhatsApp Float Button
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

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

.whatsapp-float:active {
  transform: scale(0.95);
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7);
  }
}

.whatsapp-float {
  animation: pulse 2s ease-in-out infinite;
}

/* =========================
   🎨 Utility Classes (moved from inline styles)
========================= */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 60px;
  width: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lang-toggle {
  margin-left: 0.5rem;
}

.section-light {
  background: #faf7f9;
}

.section-lighter {
  background: #fafafa;
}

.section-testimonials {
  background: #f5f0f2;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-half {
  margin-top: 0.5rem;
}

.flex-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.grid-gap {
  display: grid;
  gap: 0.4rem;
}

.calendly-placeholder {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 8px;
  margin-top: 1rem;
}

.text-center-pad {
  text-align: center;
  padding: 2rem;
}
.footer-contact .chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  font-size: 18px;
  color: #000; /* or brand color */
}

.footer-contact a {
  text-decoration: none;
  color: inherit;
}

/* =========================
   📱 Mobile Enhancements
   (no layout fights / no !important)
========================= */
@media (max-width: 600px){
  body{ font-size: 15.5px; } /* slight downscale for tighter screens */

  /* Space for sticky header */
  header{ padding-block:.5rem; }
  header .container{ gap:.25rem; }
  .brand span{ font-size: 1rem; }

  .badges{ grid-auto-flow: row; width:100%; }
  .badge{ display:inline-block; }

  /* Make filter buttons easier to tap */
  .filters .btn{ padding:.7rem 1rem; }

  /* Footer stacking */
  .foot{ flex-direction:column; gap:.6rem; text-align:center; }

  /* Footer logo smaller on mobile */
  .footer-logo img {
    height: 80px;
  }

  /* Stack footer nav vertically on mobile */
  .footer-nav {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .footer-nav a {
    padding: 0.5rem;
  }

  /* Stack contact info vertically */
  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .footer-contact .chip {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   Enhanced Hover Effects
========================= */
/* Button hover effects */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(78, 29, 14, 0.3);
}

.btn.outline:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Card enhanced hover */
.card:hover, .service:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Nav link hover effect */
.nav a {
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--brand);
  font-weight: 600;
}

.nav .btn.active {
  color: #fff;
  font-weight: 400;
}

/* Footer link hover */
.footer-nav a {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brand);
  transform: translateY(-2px);
}

/* =========================
   Back to Top Button
========================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(78, 29, 14, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(78, 29, 14, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* =========================
   Mobile Menu Backdrop
========================= */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* =========================
   Micro-interactions
========================= */
/* Pill hover */
.pill {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pill:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Chip hover */
.chip {
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  background: #fff;
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* FAQ details animation */
.faq details {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq details[open] {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: scale(1.01);
}

.faq details summary {
  transition: color 0.2s ease;
}

.faq details[open] summary {
  color: var(--brand);
}

/* Input focus effects */
input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(78, 29, 14, 0.1);
  outline: none;
}


/* Certificate card hover */
.cert {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Price card hover enhancement */
.price {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Logo subtle hover */
.logo-img {
  transition: transform 0.3s ease;
}

.brand-link:hover .logo-img {
  transform: scale(1.05);
}

/* Mobile menu link hover */
.mobile-menu a {
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--brand);
  padding-left: 0.5rem;
}

/* Motion-reduction */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
  .section { opacity: 1; transform: none; }
  .card, .product-card, .testimonial-card { opacity: 1; transform: none; }
}
