/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #3D405B;
  background: #FFF8F5;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
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: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; color: #1A1C2E; }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 12px;
  background: rgba(224, 122, 95, 0.1);
  padding: 6px 16px;
  border-radius: 50px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #5A6572;
  max-width: 560px;
  line-height: 1.7;
}
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn--primary {
  background: #E07A5F;
  color: #fff;
  border-color: #E07A5F;
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.35);
}
.btn--primary:hover {
  background: #D4654A;
  border-color: #D4654A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224, 122, 95, 0.45);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: #E07A5F;
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.btn--white:hover {
  background: #FFF3F0;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61, 64, 91, 0.08);
  padding: 10px 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  transition: color 0.3s;
}
.navbar.scrolled .nav-logo { color: #1A1C2E; }
.nav-logo-text { font-family: 'Playfair Display', serif; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link { color: #3D405B; }
.navbar.scrolled .nav-link:hover { color: #E07A5F; background: rgba(224,122,95,0.08); }
.nav-link--cta {
  background: #E07A5F;
  color: #fff !important;
  margin-left: 8px;
}
.nav-link--cta:hover { background: #D4654A; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
}
.navbar.scrolled .nav-toggle { color: #3D405B; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/33814734/pexels-photo-33814734.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,28,46,0.82) 0%, rgba(61,64,91,0.7) 50%, rgba(224,122,95,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 20px;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: #FFF8F5;
}
.section-header { margin-bottom: 60px; }
.section-header:not(.section-header--center) { max-width: 600px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s ease;
  border: 1px solid rgba(61,64,91,0.06);
  box-shadow: 0 2px 12px rgba(61,64,91,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(224,122,95,0.12);
  border-color: rgba(224,122,95,0.2);
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(224,122,95,0.12), rgba(224,122,95,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E07A5F;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1A1C2E;
}
.service-desc {
  color: #5A6572;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,64,91,0.12);
}
.about-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -32px;
  right: -24px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(61,64,91,0.15);
  border: 4px solid #fff;
}
.about-image-accent img {
  width: 300px;
  height: 250px;
  object-fit: cover;
}
.about-experience {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #E07A5F;
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(224,122,95,0.4);
}
.about-exp-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.about-exp-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-content { max-width: 520px; }
.about-body {
  color: #5A6572;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(224,122,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.value-item span {
  color: #3D405B;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Why Us ─── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1C2E 0%, #2D3047 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,122,95,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us .section-tag { background: rgba(224,122,95,0.2); }
.why-us .section-title { color: #fff; }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.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.35s ease;
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(224,122,95,0.3);
  transform: translateY(-4px);
}
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(224,122,95,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #E07A5F 0%, #D4654A 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: #FFF8F5;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(224,122,95,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #E07A5F;
  margin-bottom: 4px;
}
.contact-detail p {
  color: #3D405B;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-detail a {
  color: #3D405B;
  transition: color 0.3s;
}
.contact-detail a:hover { color: #E07A5F; }
.contact-map { margin-top: 8px; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(61,64,91,0.08); }
.contact-desc {
  color: #5A6572;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ─── Form ─── */
.contact-form-wrap { max-width: 520px; }
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(61,64,91,0.08);
  border: 1px solid rgba(61,64,91,0.06);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.form-subtitle {
  color: #5A6572;
  font-size: 0.95rem;
  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: #3D405B;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8EAED;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #3D405B;
  background: #F5F6F8;
  transition: all 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #E07A5F;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(224,122,95,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon { margin-bottom: 16px; }
.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #1A1C2E;
}
.form-success p { color: #5A6572; font-size: 0.95rem; line-height: 1.7; }
.form-hidden { display: none; }

/* ─── Footer ─── */
.footer {
  background: #1A1C2E;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo-text { font-family: 'Playfair Display', serif; }
.footer-desc { font-size: 0.9rem; line-height: 1.7; }
.footer-links h4,
.footer-contact 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-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: #E07A5F; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { transition: color 0.3s; }
.footer-contact a:hover { color: #E07A5F; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { transition: color 0.3s; }
.footer-bottom a:hover { color: #E07A5F; }

/* ─── 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);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-accent { right: 16px; bottom: -24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26,28,46,0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 40px;
    transition: right 0.4s ease;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: rgba(255,255,255,0.8) !important; font-size: 1.1rem; padding: 12px 20px; }
  .nav-link:hover { background: rgba(255,255,255,0.08); color: #fff !important; }
  .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-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-card { padding: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-image-main img { height: 350px; }
  .about-image-accent { display: none; }
  .about-experience { top: 16px; left: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .services, .about, .why-us, .contact { padding: 72px 0; }
  .service-card { padding: 28px 24px; }
}
