/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1e293b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  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 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
.accent { color: #f97583; }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f97583;
  margin-bottom: 12px;
}
.section-tag--light { color: rgba(255,255,255,0.7); }
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1e293b;
  margin-bottom: 16px;
}
.section-title--light { color: #f1f5f9; }
.section-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
}
.section-header--light .section-desc { color: rgba(241,245,249,0.7); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn--primary {
  background: #f97583;
  color: #ffffff;
  border-color: #f97583;
}
.btn--primary:hover { background: #e85d6b; border-color: #e85d6b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,117,131,0.35); }
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }
.btn--dark-ghost {
  background: transparent;
  color: #1e293b;
  border-color: #1e293b;
}
.btn--dark-ghost:hover { background: #1e293b; color: #ffffff; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(30, 41, 59, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f1f5f9;
}
.nav__logo-accent { color: #f97583; font-size: 1.6rem; }
.nav__logo-sub { font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; display: block; margin-top: -2px; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__menu a:not(.nav__cta) {
  font-size: 0.9rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.2s;
}
.nav__menu a:not(.nav__cta):hover { color: #f97583; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f97583;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: #e85d6b; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f1f5f9;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(30,41,59,0.75) 50%, rgba(15,23,42,0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero__badge {
  display: inline-block;
  background: rgba(249,117,131,0.15);
  border: 1px solid rgba(249,117,131,0.4);
  color: #f97583;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: #f1f5f9;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero__title-accent { color: #f97583; }
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(241,245,249,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__trust-item { display: flex; flex-direction: column; gap: 4px; }
.hero__trust-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: #f97583; }
.hero__trust-label { font-size: 0.8rem; color: rgba(241,245,249,0.6); text-transform: uppercase; letter-spacing: 0.06em; }
.hero__trust-divider { width: 1px; height: 40px; background: rgba(241,245,249,0.2); }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(241,245,249,0.5);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ─── SERVICES ─── */
.services {
  padding: 100px 0;
  background: #f8fafc;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.card__img { overflow: hidden; }
.card__img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 28px; }
.card__icon { margin-bottom: 16px; }
.card__title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #1e293b;
}
.card__desc { font-size: 0.95rem; color: #64748b; line-height: 1.7; }

/* ─── ABOUT ─── */
.about { padding: 100px 0; background: #ffffff; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__images { position: relative; }
.about__img-main img { width: 100%; height: 520px; object-fit: cover; border-radius: 20px; }
.about__img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  border: 4px solid #ffffff;
}
.about__img-float img { width: 100%; height: 200px; object-fit: cover; }
.about__stat {
  position: absolute;
  top: -24px;
  left: -24px;
  background: #1e293b;
  color: #ffffff;
  padding: 20px 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 12px 32px rgba(30,41,59,0.3);
}
.about__stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: #f97583; line-height: 1; }
.about__stat-text { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: #94a3b8; margin-top: 4px; }
.about__content { max-width: 480px; }
.about__content .section-header { text-align: left; margin-bottom: 28px; }
.about__text { color: #64748b; margin-bottom: 16px; line-height: 1.75; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 36px; }
.about__feature { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: #334155; }
.about__feature svg { flex-shrink: 0; }

/* ─── GALLERY ─── */
.gallery { padding: 100px 0; background: #f8fafc; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.gallery__item { overflow: hidden; border-radius: 12px; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--wide { grid-column: span 6; }
.gallery__item:not(.gallery__item--wide) { grid-column: span 3; }

/* ─── REVIEWS ─── */
.reviews {
  padding: 100px 0;
  background: #1e293b;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: background 0.3s, transform 0.3s;
}
.review-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.review-card__stars { display: flex; gap: 4px; margin-bottom: 20px; }
.review-card__text { font-size: 0.95rem; color: rgba(241,245,249,0.8); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f97583;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card__name { font-size: 0.9rem; font-weight: 600; color: #f1f5f9; }

/* ─── CTA ─── */
.cta { position: relative; padding: 80px 0; overflow: hidden; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,41,59,0.88) 100%); }
.cta__content { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta__title { font-size: clamp(2rem, 4vw, 2.8rem); color: #f1f5f9; margin-bottom: 16px; }
.cta__text { font-size: 1.1rem; color: rgba(241,245,249,0.75); margin-bottom: 36px; line-height: 1.7; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ─── CONTACT ─── */
.contact { padding: 100px 0; background: #ffffff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__text { color: #64748b; margin-bottom: 32px; line-height: 1.75; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; gap: 16px; }
.contact__detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(249,117,131,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: #1e293b; margin-bottom: 4px; }
.contact__detail span, .contact__detail a { font-size: 0.95rem; color: #64748b; line-height: 1.6; }
.contact__detail a:hover { color: #f97583; }
.contact__form-wrap {
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e2e8f0;
}
.contact__form-title { font-size: 1.5rem; margin-bottom: 24px; color: #1e293b; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #334155; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1e293b;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #f97583;
  box-shadow: 0 0 0 3px rgba(249,117,131,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #059669;
}

/* ─── MAP ─── */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ─── FOOTER ─── */
.footer { background: #0f172a; padding: 64px 0 0; color: #94a3b8; }
.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__brand .nav__logo { margin-bottom: 16px; display: inline-block; }
.footer__tagline { font-size: 0.9rem; line-height: 1.7; color: #64748b; max-width: 280px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links strong { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #f1f5f9; margin-bottom: 4px; }
.footer__links a { font-size: 0.9rem; color: #64748b; transition: color 0.2s; }
.footer__links a:hover { color: #f97583; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact strong { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #f1f5f9; margin-bottom: 8px; }
.footer__contact p, .footer__contact a { font-size: 0.9rem; color: #64748b; line-height: 1.7; }
.footer__contact a:hover { color: #f97583; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.82rem;
  color: #475569;
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1e293b;
  color: #f97583;
  border: 1px solid rgba(249,117,131,0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #f97583; color: #fff; }

/* ─── SCROLL REVEAL (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}
/* Fallback: if JS doesn't run, all content is visible by default since .reveal has no default hidden state in CSS */
.reveal { opacity: 1; transform: none; }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15,23,42,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu a:not(.nav__cta) { font-size: 1.1rem; color: #cbd5e1; }
  .nav__cta { padding: 14px 24px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid .review-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .gallery__grid { grid-template-rows: repeat(3, 200px); }
  .gallery__item--wide { grid-column: span 6; }
  .gallery__item:not(.gallery__item--wide) { grid-column: span 3; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .hero__content { padding: 100px 24px 60px; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero__trust-divider { display: none; }
  .services__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-float { right: 16px; bottom: -24px; width: 160px; }
  .about__stat { left: 16px; top: -16px; }
  .about__features { grid-template-columns: 1fr; }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item, .gallery__item--wide { grid-column: span 1; }
  .gallery__item img, .gallery__item--wide img { height: 200px; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__grid .review-card:last-child { grid-column: span 1; max-width: 100%; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-wrap { padding: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .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; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { grid-column: span 1; }
}
