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

/* ===== FONTS ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center;
  padding: 12px 24px;
  max-width: 1200px; margin: 0 auto;
  gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.2rem; color: #2D2D2D;
}
.logo-accent { color: #E86A5B; }
.logo-icon { flex-shrink: 0; }
.nav-links {
  display: flex; align-items: center; gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.9rem; font-weight: 500;
  color: #555; transition: all 0.25s;
}
.nav-links a:hover { color: #E86A5B; background: rgba(232,106,91,0.08); }
.btn--nav {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E86A5B; color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  transition: all 0.25s;
}
.btn--nav:hover { background: #d45648; transform: translateY(-1px); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #2D2D2D; border-radius: 2px;
  transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.btn--primary { background: #E86A5B; color: #fff; }
.btn--primary:hover { background: #d45648; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,106,91,0.35); }
.btn--outline { background: transparent; color: #2D2D2D; border: 2px solid rgba(45,45,45,0.2); }
.btn--outline:hover { border-color: #E86A5B; color: #E86A5B; }
.btn--white { background: #fff; color: #2D2D2D; }
.btn--white:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  padding: 120px 0 0;
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F0ED 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-bottom: 80px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,106,91,0.1); color: #E86A5B;
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #2D2D2D; margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem; color: #666;
  line-height: 1.7; margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-proof {
  display: flex; align-items: center; gap: 24px;
}
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: #2D2D2D; }
.proof-label { font-size: 0.8rem; color: #888; }
.proof-divider { width: 1px; height: 40px; background: rgba(0,0,0,0.1); }

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-accent {
  position: absolute; top: -20px; right: -20px;
  width: 120px; height: 120px;
  background: #E86A5B; border-radius: 20px;
  z-index: -1; opacity: 0.3;
}
.hero-float-card {
  position: absolute; bottom: -20px; left: -30px;
  background: #fff; border-radius: 16px;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  max-width: 280px;
}
.float-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,106,91,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float-card strong { display: block; font-size: 0.95rem; color: #2D2D2D; }
.hero-float-card span { font-size: 0.8rem; color: #888; line-height: 1.4; }
.hero-wave { margin-top: -1px; }
.hero-wave svg { width: 100%; height: 80px; }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #E86A5B; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #2D2D2D; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-desc { color: #666; font-size: 1.05rem; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { padding: 80px 0 100px; background: #2D2D2D; }
.services .section-tag { color: #E86A5B; }
.services .section-title { color: #fff; }
.services .section-desc { color: rgba(255,255,255,0.6); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-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.35s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(232,106,91,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(232,106,91,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #FAFAFA; }
.about-grid { 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 50px rgba(0,0,0,0.1); }
.about-img-main img { width: 100%; height: 320px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -20px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  border: 4px solid #fff;
}
.about-img-secondary img { width: 100%; height: 200px; object-fit: cover; }
.about-experience {
  position: absolute; top: -20px; left: -20px;
  background: #E86A5B; color: #fff;
  border-radius: 20px; padding: 20px 24px;
  text-align: center;
}
.about-experience .exp-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; line-height: 1;
}
.about-experience .exp-label { font-size: 0.75rem; opacity: 0.85; margin-top: 4px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text > p { color: #666; margin-bottom: 16px; line-height: 1.7; }
.about-features { margin: 28px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: #444; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-card {
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px; padding: 40px 32px;
  transition: all 0.35s ease;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: #E86A5B;
  border-radius: 0 4px 4px 0;
  transition: height 0.35s ease;
}
.why-card:hover::before { height: 100%; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700;
  color: rgba(232,106,91,0.15);
  line-height: 1; margin-bottom: 16px;
}
.why-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: #2D2D2D; margin-bottom: 12px;
}
.why-card p { font-size: 0.9rem; color: #666; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #FAFAFA; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.testimonial-quote { margin-bottom: 20px; opacity: 0.9; }
.testimonial-text {
  font-size: 0.95rem; color: #555;
  line-height: 1.8; margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,106,91,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #2D2D2D; }
.testimonial-author span { font-size: 0.8rem; color: #999; }

/* ===== CTA ===== */
.cta { padding: 80px 0; background: #2D2D2D; }
.cta-card {
  background: linear-gradient(135deg, #E86A5B 0%, #d45648 100%);
  border-radius: 28px; padding: 64px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px;
  align-items: center;
}
.cta-content .section-tag { color: rgba(255,255,255,0.7); }
.cta-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 16px; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; }
.btn--white:hover { background: #fff; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-desc { color: #666; font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(232,106,91,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.95rem; color: #2D2D2D; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: #666; }
.contact-item a:hover { color: #E86A5B; }
.contact-map { border-radius: 16px; overflow: hidden; }

/* Form */
.contact-form-wrap { }
.contact-form-card {
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px; padding: 40px;
}
.contact-form-card h3 {
  font-size: 1.4rem; color: #2D2D2D; margin-bottom: 8px;
}
.form-desc { font-size: 0.9rem; color: #888; margin-bottom: 28px; }
.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: 600;
  color: #444; margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: #2D2D2D;
  background: #fff; transition: all 0.25s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #E86A5B;
  box-shadow: 0 0 0 3px rgba(232,106,91,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success h4 { font-size: 1.3rem; color: #2D2D2D; margin: 16px 0 8px; }
.form-success p { color: #888; font-size: 0.9rem; }
.contact-form.hidden { display: none; }

/* ===== FOOTER ===== */
.footer { background: #1a1a1a; color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 20px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer ul a:hover { color: #E86A5B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* ===== MOBILE NAV ===== */
.nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }
.nav-links-mobile {
  position: fixed; top: 0; right: -300px;
  width: 280px; height: 100%; z-index: 1001;
  background: #fff; padding: 80px 32px 32px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
}
.nav-links-mobile.active { right: 0; }
.nav-links-mobile a {
  padding: 14px 16px; border-radius: 12px;
  font-size: 1rem; font-weight: 500; color: #444;
  transition: all 0.25s;
}
.nav-links-mobile a:hover { background: rgba(232,106,91,0.08); color: #E86A5B; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn--nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { padding: 100px 0 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-img-wrap img { height: 360px; }
  .hero-float-card { left: 10px; bottom: -10px; }
  .hero-wave svg { height: 50px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-divider { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
