:root {
  --primary: #f3d5da; 
  --primary-hover: #7b5f64; 
  --secondary: #fef8f4; 
  --text-dark: #7b5f64; 
  --text-body: #7b5f64; 
  --bg-light: #fef8f4; 
}

* { box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
  background-color: var(--bg-light);
}
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  margin-top: 0;
}
a { text-decoration: none; transition: 0.3s ease; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

/* Global Entrance Animation */
.hero-copy, .hero-visual {
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideUp {
  0% { transform: translateY(30px); }
  100% { transform: translateY(0); }
}

/* Continuous Float Animation for Hero Image */
.float-anim {
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Constrained Hero Slideshow */
.hero-visual {
  position: relative;
  max-width: 420px; 
  width: 100%;
  margin: 0 auto;
}
.hero-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(123, 95, 100, 0.15);
}
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide-active { opacity: 1; }

/* Image Showcase Gallery */
.image-showcase { padding: 20px 0 60px; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; }
.showcase-img { width: 100%; height: 230px; object-fit: cover; border-radius: 12px; box-shadow: 0 10px 20px rgba(123, 95, 100, 0.15); transition: transform 0.3s; }
.showcase-img:hover { transform: scale(1.04); }
.img-down { transform: translateY(20px); }
.img-down:hover { transform: translateY(20px) scale(1.04); }

/* Buttons & Social Icons */
.btn { display: inline-block; padding: 12px 24px; border-radius: 8px; font-weight: 600; text-align: center; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: var(--text-dark); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-hover); color: #fff; border-color: var(--primary-hover); }
.btn-secondary { background: var(--bg-light); color: var(--text-dark); border-color: var(--bg-light); }
.btn-secondary:hover { background: var(--primary); color: var(--text-dark); border-color: var(--primary); }
.btn-block { display: block; width: 100%; margin-top: 20px; }
.social-icon { display: flex; align-items: center; justify-content: center; padding: 10px; border-radius: 50%; transition: 0.3s; margin-right: 15px; }
.social-icon:hover { background: var(--primary); color: #fff; }

/* Seamless Header */
.site-header { background: transparent; padding: 10px 0; box-shadow: none; position: absolute; top: 0; left: 0; width: 100%; z-index: 100; }
.header-container { display: flex; justify-content: space-between; align-items: center; }
.brand { display: inline-block; cursor: pointer; z-index: 101; }
.main-nav a { margin: 0 15px; color: var(--text-dark); font-weight: 600; }
.main-nav a:hover, .main-nav a.active { color: var(--primary-hover); opacity: 0.8; }
.header-cta { display: flex; align-items: center; }
.nav-toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 25px; height: 3px; background: var(--text-dark); transition: 0.3s; }

/* Mobile Menu */
.mobile-nav { display: none; flex-direction: column; background: var(--bg-light); padding: 20px; box-shadow: 0 10px 20px rgba(123, 95, 100, 0.1); position: absolute; top: 110px; width: 100%; z-index: 99; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; border-bottom: 1px solid rgba(123, 95, 100, 0.1); color: var(--text-dark); font-weight: 600; }

/* Hero */
.hero { padding: 220px 0 20px 0; background: var(--bg-light); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero-copy h1 { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; }
.hero-copy h1 em { color: var(--primary-hover); font-style: normal; }
.hero-copy .lead { font-size: 1.15rem; margin-bottom: 30px; }
.hero-slogan { font-size: 0.95rem; font-style: italic; margin-top: 20px; color: var(--text-dark); opacity: 0.8; }
.hero-price-chip { position: absolute; bottom: -15px; right: -15px; background: var(--primary); color: var(--text-dark); padding: 12px 20px; border-radius: 8px; box-shadow: 0 4px 15px rgba(123, 95, 100, 0.2); }
.hero-price-chip .amount { display: block; font-size: 1.3rem; font-weight: 700; font-family: 'Poppins', sans-serif; }
.hero-price-chip .txt { font-size: 0.8rem; line-height: 1.2; }

/* Hero Facts Desktop */
.hero-facts-wrap { margin-top: 60px; }
.hero-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.hero-fact { background: #fff; padding: 20px; border-radius: 12px; font-weight: 600; color: var(--text-dark); display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 4px 15px rgba(123, 95, 100, 0.08); border: 1px solid rgba(123, 95, 100, 0.1); transition: transform 0.3s ease; }
.hero-fact:hover { transform: translateY(-3px); }
.hero-fact svg { flex-shrink: 0; }

/* Section Headers */
.section-head { text-align: center; margin-bottom: 50px; }
.eyebrow { display: inline-block; background: var(--primary); color: var(--text-dark); padding: 5px 15px; border-radius: 20px; font-weight: 600; font-size: 0.85rem; margin-bottom: 15px; }

/* Cards Grid & Menu Accordion */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #fff; padding: 40px 30px; border-radius: 12px; box-shadow: 0 5px 20px rgba(123, 95, 100, 0.05); position: relative; border: 1px solid rgba(123, 95, 100, 0.1); transition: 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(123, 95, 100, 0.1); }
.service-card.featured { border-color: var(--primary-hover); box-shadow: 0 10px 30px rgba(123, 95, 100, 0.15); }
.ribbon { position: absolute; top: 0; right: 20px; background: var(--primary); color: var(--text-dark); padding: 5px 15px; font-size: 0.8rem; font-weight: 600; border-radius: 0 0 5px 5px; }
.price-tag { margin: 20px 0; }
.price-tag .from { font-size: 0.9rem; color: var(--text-dark); opacity: 0.7; display: block; }
.price-tag .amount { font-size: 2rem; font-weight: 700; color: var(--text-dark); }
.check-list { list-style: none; padding: 0; margin-bottom: 30px; }
.check-list li { margin-bottom: 12px; padding-left: 15px; position: relative; font-size: 0.95rem; }
.check-list li::before { content: "•"; color: var(--primary); position: absolute; left: 0; font-size: 1.2rem; line-height: 1; }

.toggle-icon { display: none; }
.mobile-only { display: none; }

/* Trust Band */
.trust-band { background: var(--primary); padding: 80px 0; color: var(--text-dark); }
.trust-band .section-head h2 { color: var(--text-dark); }
.trust-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 40px; }
.trust-card { background: rgba(255,255,255,0.4); padding: 30px; border-radius: 12px; border: 1px solid rgba(123, 95, 100, 0.1); }
.trust-card h3 { color: var(--text-dark); font-size: 1.2rem; margin-bottom: 10px; }
.trust-card p { font-size: 0.9rem; margin-bottom: 0; color: var(--text-dark); }

/* Form & Modal Styling */
.custom-form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.custom-form input, .custom-form textarea { width: 100%; padding: 14px; border: 1px solid rgba(123, 95, 100, 0.2); border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 1rem; background: #fff; color: var(--text-dark); transition: border-color 0.3s; }
.custom-form input:focus, .custom-form textarea:focus { outline: none; border-color: var(--primary-hover); }
.custom-form textarea { min-height: 150px; resize: vertical; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(123, 95, 100, 0.6); display: flex; justify-content: center; align-items: center; z-index: 1000; opacity: 0; visibility: hidden; transition: 0.3s; padding: 20px; }
.modal-overlay.show { opacity: 1; visibility: visible; }
.modal-content { background: #fff; padding: 40px; border-radius: 12px; text-align: center; max-width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transform: translateY(20px); transition: 0.3s; }
.modal-overlay.show .modal-content { transform: translateY(0); }
.modal-content h3 { color: var(--text-dark); margin-bottom: 10px; font-size: 1.5rem; }
.modal-content p { color: var(--text-body); margin-bottom: 25px; }

/* Footer */
.site-footer { background: var(--bg-light); padding: 60px 0 20px; border-top: 1px solid rgba(123, 95, 100, 0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

/* =========================================
   MOBILE RESPONSIVENESS OVERHAUL
   ========================================= */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-price-chip { right: 20px; }
  .hero-actions { display: flex; flex-direction: column; gap: 15px; }
  .desktop-only { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  
  /* Reduced Top Padding for proper logo spacing */
  .hero { padding: 150px 0 30px 0; }
  .hero-copy h1 { font-size: 2.3rem; margin-bottom: 15px; }
  .hero-copy .lead { font-size: 1rem; margin-bottom: 25px; }
  .hero-grid { gap: 20px; }
  
  /* Restored Vertical Stack for Icon Boxes & Images */
  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero-fact {
    padding: 15px 20px;
    justify-content: flex-start;
  }
  
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .img-down { transform: translateY(0); }
  .img-down:hover { transform: translateY(0) scale(1.04); }
  
  /* Smooth CSS Grid Menu Accordion */
  .service-card { 
    padding: 20px; 
    cursor: pointer; 
    -webkit-tap-highlight-color: transparent; 
  }
  .menu-subtitle { font-size: 0.9rem; color: var(--text-body); margin-top: 5px; opacity: 0.8; pointer-events: none; }
  
  .service-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out, margin 0.4s ease-out;
    margin-top: 0;
  }
  .service-content-inner {
    overflow: hidden;
    padding-top: 0;
    border-top: 1px solid transparent;
    transition: padding 0.4s ease-out, border-color 0.4s;
  }
  .service-card.open .service-content {
    grid-template-rows: 1fr;
    margin-top: 15px;
  }
  .service-card.open .service-content-inner {
    padding-top: 15px;
    border-top-color: rgba(123, 95, 100, 0.1);
  }
  
  .toggle-icon { display: inline; float: right; font-weight: bold; color: var(--primary-hover); transition: transform 0.3s; pointer-events: none; }
  .service-card.open .toggle-icon { transform: rotate(45deg); }
  .accordion-toggle { margin-bottom: 0; font-size: 1.2rem; pointer-events: none; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
}