/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D2C2C;
  background: #FFF8F0;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Lora', serif; font-weight: 600; line-height: 1.3; color: #2E1F1F; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { color: #5A4040; }

/* ===== SECTION TAG ===== */
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0724A;
  margin-bottom: 10px;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header p { font-size: 1.1rem; margin-top: 12px; }
.section-header.light .section-tag { color: #FDEBD3; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.8); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary { background: #C0724A; color: #fff; border-color: #C0724A; }
.btn-primary:hover { background: #A85E3A; border-color: #A85E3A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,114,74,0.35); }
.btn-secondary { background: transparent; color: #C0724A; border-color: #C0724A; }
.btn-secondary:hover { background: #C0724A; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #C0724A; border-color: #fff; }
.btn-white:hover { background: #FFF8F0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,114,74,0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(61,44,44,0.08); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Lora', serif; font-weight: 600; font-size: 1.2rem; color: #2E1F1F; }
.main-nav ul { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; color: #5A4040; transition: all 0.2s ease; }
.main-nav a:hover { color: #C0724A; background: rgba(192,114,74,0.08); }
.nav-cta { background: #C0724A !important; color: #fff !important; font-weight: 700 !important; }
.nav-cta:hover { background: #A85E3A !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #3D2C2C;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF8F0 0%, #FDEBD3 50%, #E8DCC8 100%);
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.4; }
.blob-1 { width: 500px; height: 500px; background: #D4A07A; top: -100px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: #E8C4A0; bottom: -50px; left: -50px; }
.blob-3 { width: 200px; height: 200px; background: #C0724A; top: 40%; left: 30%; opacity: 0.15; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-block;
  background: rgba(192,114,74,0.12);
  color: #C0724A;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-content h1 { margin-bottom: 20px; }
.hero-sub { font-size: 1.15rem; color: #5A4040; margin-bottom: 32px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; color: #5A4040; }
.trust-item svg { color: #C0724A; }
.hero-image { position: relative; }
.hero-img-wrapper { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 64px rgba(61,44,44,0.15); }
.hero-img-wrapper img { width: 100%; height: 420px; object-fit: cover; }
.hero-card {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(61,44,44,0.12);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card--float .hc-icon {
  width: 44px; height: 44px;
  background: #FDEBD3;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #C0724A;
  flex-shrink: 0;
}
.hero-card .hc-body { display: flex; flex-direction: column; }
.hero-card .hc-body strong { font-size: 0.95rem; color: #2E1F1F; }
.hero-card .hc-body span { font-size: 0.8rem; color: #8A6060; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #FFF8F0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  border: 1px solid rgba(192,114,74,0.06);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(61,44,44,0.1); border-color: rgba(192,114,74,0.15); }
.svc-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-card h3 { margin-bottom: 10px; color: #2E1F1F; }
.svc-card p { font-size: 0.95rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: linear-gradient(135deg, #FDEBD3 0%, #FFF8F0 100%); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 48px rgba(61,44,44,0.12); }
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(61,44,44,0.15);
  border: 4px solid #FFF8F0;
}
.about-img-secondary img { width: 240px; height: 180px; object-fit: cover; }
.about-experience {
  position: absolute;
  top: -20px;
  right: 40px;
  background: #C0724A;
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(192,114,74,0.3);
}
.about-experience .ae-number { display: block; font-family: 'Lora', serif; font-size: 1.6rem; font-weight: 600; }
.about-experience .ae-label { font-size: 0.75rem; opacity: 0.9; }
.about-text .section-tag { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; }
.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 36px;
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 32px rgba(61,44,44,0.06);
}
.stat { text-align: center; flex: 1; }
.stat strong { display: block; font-family: 'Lora', serif; font-size: 1.8rem; color: #C0724A; }
.stat span { font-size: 0.85rem; color: #8A6060; }
.stat-divider { width: 1px; background: rgba(192,114,74,0.2); align-self: stretch; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: #2E1F1F; }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; margin: 0 auto; }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-num { font-family: 'Lora', serif; font-size: 2.4rem; font-weight: 600; color: rgba(192,114,74,0.5); margin-bottom: 12px; }
.why-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.why-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #FFF8F0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(192,114,74,0.06);
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(61,44,44,0.08); }
.tc-stars { display: flex; gap: 4px; margin-bottom: 16px; }
.testimonial-card > p { font-size: 0.95rem; font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #C0724A;
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 0.95rem; color: #2E1F1F; }
.tc-author span { font-size: 0.8rem; color: #8A6060; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, #C0724A 0%, #A85E3A 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-text h2 { color: #fff; margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #FFF8F0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-tag { margin-bottom: 10px; }
.contact-info > h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.cd-item { display: flex; align-items: flex-start; gap: 16px; }
.cd-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-item strong { display: block; font-size: 0.85rem; color: #8A6060; margin-bottom: 2px; }
.cd-item span, .cd-item a { font-size: 1rem; color: #2E1F1F; font-weight: 600; }
.cd-item a:hover { color: #C0724A; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(61,44,44,0.08); }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(61,44,44,0.08);
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #5A4040; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8DCC8;
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #3D2C2C;
  background: #FFF8F0;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C0724A;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(192,114,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* Success message */
.form-success { text-align: center; padding: 40px 20px; }
.form-success .fs-icon { width: 72px; height: 72px; margin: 0 auto 20px; background: #FDEBD3; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success h4 { font-size: 1.4rem; margin-bottom: 8px; color: #2E1F1F; }
.form-success p { color: #8A6060; }

/* ===== FOOTER ===== */
.site-footer { background: #2E1F1F; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer-links h4, .footer-contact h4 { color: #fff; font-family: 'Nunito', sans-serif; font-size: 1rem; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #FDEBD3; }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; opacity: 0.6; }
.footer-contact a:hover { color: #FDEBD3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-card { left: 50%; transform: translateX(-50%); bottom: -16px; }
  .hero-card--float { animation: float 3s ease-in-out infinite; }
  @keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    width: 280px;
    height: 100vh;
    background: #FFF8F0;
    padding: 100px 32px 32px;
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav a { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .nav-cta { text-align: center; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-img-wrapper img { height: 280px; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-secondary { right: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; }
}
