/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #1a1a1a;
  color: #f5f0eb;
  line-height: 1.6;
  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; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: #E85D4A; color: #fff; padding: 8px 16px;
  border-radius: 0 0 8px 8px; z-index: 9999; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== TYPOGRAPHY ===== */
.text-coral { color: #E85D4A; }
h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.1; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.3s ease; border: 2px solid transparent;
  cursor: pointer; font-family: 'Inter', sans-serif;
}
.btn--coral { background: #E85D4A; color: #fff; border-color: #E85D4A; }
.btn--coral:hover { background: #d14a38; border-color: #d14a38; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,93,74,0.35); }
.btn--outline { background: transparent; color: #f5f0eb; border-color: rgba(245,240,235,0.3); }
.btn--outline:hover { border-color: #E85D4A; color: #E85D4A; transform: translateY(-2px); }
.btn--white { background: #fff; color: #1a1a1a; border-color: #fff; }
.btn--white:hover { background: #f0ebe6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,26,26,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,240,235,0.06);
  transition: background 0.3s;
}
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo__text { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.04em; }
.logo__accent { color: #E85D4A; }
.nav__menu { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav__menu a { font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav__menu a:hover { color: #E85D4A; }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.nav__bar { display: block; width: 24px; height: 2px; background: #f5f0eb; transition: all 0.3s; border-radius: 2px; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px; position: relative; overflow: hidden;
  background: #1a1a1a;
}
.hero__geo { position: absolute; pointer-events: none; }
.hero__geo--circle {
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,74,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
}
.hero__geo--rect {
  width: 200px; height: 200px; background: rgba(232,93,74,0.06);
  transform: rotate(45deg); bottom: 10%; left: -60px;
}
.hero__geo--dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(232,93,74,0.3) 1px, transparent 1px);
  background-size: 12px 12px; top: 25%; left: 8%;
}
.hero__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,74,0.12); color: #E85D4A;
  padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero__title { font-size: clamp(2.8rem, 5vw, 4.5rem); margin-bottom: 20px; }
.hero__desc { font-size: 1.1rem; color: #b0a89f; max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #b0a89f; }

.hero__image { position: relative; }
.hero__img-wrap { border-radius: 20px; overflow: hidden; position: relative; }
.hero__img-wrap img { width: 100%; height: 700px; object-fit: cover; }
.hero__img-accent {
  position: absolute; width: 120px; height: 120px;
  background: #E85D4A; border-radius: 20px;
  bottom: -30px; left: -30px; z-index: -1;
}
.hero__floating-card {
  position: absolute; bottom: 40px; left: -50px;
  background: #252525; border: 1px solid rgba(245,240,235,0.08);
  border-radius: 16px; padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.hero__floating-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,93,74,0.15); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.hero__floating-label { font-size: 0.75rem; color: #b0a89f; text-transform: uppercase; letter-spacing: 0.08em; }
.hero__floating-value { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.02em; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: #E85D4A;
  margin-bottom: 12px;
}
.section-tag--light { color: rgba(232,93,74,0.7); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-title--light { color: #f5f0eb; }
.section-desc { color: #b0a89f; font-size: 1.05rem; }
.section-desc--light { color: rgba(245,240,235,0.6); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: #1a1a1a; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #222; border: 1px solid rgba(245,240,235,0.06);
  border-radius: 20px; padding: 36px 28px; position: relative;
  overflow: hidden; transition: all 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(232,93,74,0.3); box-shadow: 0 20px 48px rgba(0,0,0,0.3); }
.service-card__geo {
  position: absolute; width: 100px; height: 100px; border-radius: 50%;
  background: rgba(232,93,74,0.05); top: -30px; right: -30px;
  transition: transform 0.35s ease;
}
.service-card:hover .service-card__geo { transform: scale(1.8); }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(232,93,74,0.12); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-card__title { font-size: 1.4rem; margin-bottom: 10px; color: #f5f0eb; }
.service-card__desc { font-size: 0.92rem; color: #b0a89f; line-height: 1.7; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: #1e1e1e; position: relative; overflow: hidden; }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about__image-side { position: relative; }
.about__img-main { border-radius: 20px; overflow: hidden; }
.about__img-main img { width: 100%; height: 620px; object-fit: cover; }
.about__img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: 16px; overflow: hidden;
  border: 4px solid #1e1e1e; box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.about__img-secondary img { width: 260px; height: 300px; object-fit: cover; display: block; }
.about__geo-shape {
  position: absolute; width: 180px; height: 180px;
  background: rgba(232,93,74,0.08); border-radius: 30px;
  transform: rotate(30deg); top: -40px; left: -40px;
}
.about__content { position: relative; z-index: 1; }
.about__body { color: #b0a89f; font-size: 1.02rem; margin-bottom: 20px; line-height: 1.8; }
.about__stats { display: flex; gap: 40px; margin-top: 40px; }
.about__stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  color: #E85D4A; letter-spacing: 0.02em;
}
.about__stat-label { font-size: 0.85rem; color: #b0a89f; }

/* ===== WHY ===== */
.why { padding: 100px 0; background: #1a1a1a; position: relative; overflow: hidden; }
.why__bg-shape {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,74,0.06) 0%, transparent 70%);
  top: -100px; right: -200px; pointer-events: none;
}
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.why-card {
  background: #222; border: 1px solid rgba(245,240,235,0.06);
  border-radius: 20px; padding: 40px 32px; position: relative;
  transition: all 0.35s ease;
}
.why-card:hover { border-color: rgba(232,93,74,0.3); transform: translateY(-4px); }
.why-card__number {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  color: rgba(232,93,74,0.15); position: absolute; top: 16px; right: 24px;
}
.why-card__title { font-size: 1.5rem; margin-bottom: 10px; color: #f5f0eb; }
.why-card__desc { color: #b0a89f; font-size: 0.95rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #1e1e1e; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #252525; border: 1px solid rgba(245,240,235,0.06);
  border-radius: 20px; padding: 32px; transition: all 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(232,93,74,0.2); }
.testimonial-card__stars { display: flex; gap: 4px; margin-bottom: 20px; color: #E85D4A; }
.testimonial-card__quote { color: #d4ccc4; font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(232,93,74,0.2); color: #E85D4A;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem;
}
.testimonial-card__name { font-weight: 600; font-size: 0.95rem; }
.testimonial-card__location { font-size: 0.82rem; color: #b0a89f; }

/* ===== CTA ===== */
.cta { padding: 100px 0; background: #E85D4A; position: relative; overflow: hidden; }
.cta__geo { position: absolute; pointer-events: none; }
.cta__geo--circle {
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.06); top: -150px; left: -100px;
}
.cta__geo--square {
  width: 200px; height: 200px; background: rgba(255,255,255,0.04);
  transform: rotate(45deg); bottom: -60px; right: 10%;
}
.cta__inner { text-align: center; position: relative; z-index: 1; }
.cta__title { font-size: clamp(2rem, 4vw, 3.2rem); color: #fff; margin-bottom: 16px; }
.cta__desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: #1a1a1a; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact__body { color: #b0a89f; font-size: 1.02rem; margin-bottom: 36px; line-height: 1.8; }
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail { display: flex; gap: 16px; align-items: flex-start; }
.contact__detail-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(232,93,74,0.12); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact__detail-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: #E85D4A; font-weight: 600; margin-bottom: 4px; }
.contact__detail div { color: #b0a89f; font-size: 0.95rem; line-height: 1.6; }
.contact__detail a { color: #b0a89f; transition: color 0.2s; }
.contact__detail a:hover { color: #E85D4A; }

/* ===== CONTACT FORM ===== */
.contact-form {
  background: #222; border: 1px solid rgba(245,240,235,0.06);
  border-radius: 20px; padding: 40px;
}
.contact-form__title { font-size: 1.8rem; margin-bottom: 6px; }
.contact-form__subtitle { color: #b0a89f; font-size: 0.9rem; margin-bottom: 28px; }
.contact-form__group { margin-bottom: 20px; }
.contact-form__label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; color: #d4ccc4; }
.contact-form__input {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1px solid rgba(245,240,235,0.1); background: #1a1a1a;
  color: #f5f0eb; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.contact-form__input:focus { outline: none; border-color: #E85D4A; box-shadow: 0 0 0 3px rgba(232,93,74,0.15); }
.contact-form__input::placeholder { color: #6b635b; }
.contact-form__select { cursor: pointer; }
.contact-form__textarea { resize: vertical; min-height: 100px; }
.contact-form__success {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px; padding: 16px; border-radius: 12px;
  background: rgba(22,163,74,0.1); border: 1px solid rgba(22,163,74,0.2);
  color: #22c55e; font-size: 0.9rem; font-weight: 500;
}

/* ===== FOOTER ===== */
.footer { padding: 60px 0 0; background: #151515; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,240,235,0.06); }
.footer__tagline { color: #b0a89f; font-size: 0.9rem; margin-top: 16px; max-width: 280px; line-height: 1.7; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: #b0a89f; font-size: 0.9rem; transition: color 0.2s; }
.footer__links a:hover { color: #E85D4A; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; color: #b0a89f; font-size: 0.9rem; }
.footer__contact a { display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.footer__contact a:hover { color: #E85D4A; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { color: #6b635b; font-size: 0.82rem; }
.footer__bottom a { color: #6b635b; transition: color 0.2s; }
.footer__bottom a:hover { color: #E85D4A; }

/* ===== MOBILE NAV ===== */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 72px; left: 0; right: 0;
    background: rgba(26,26,26,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(245,240,235,0.06);
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__menu a { font-size: 1.1rem; }
  .nav__menu .btn--coral { width: 100%; justify-content: center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { order: -1; }
  .hero__img-wrap img { height: 400px; }
  .hero__floating-card { left: 10px; bottom: 20px; }
  .hero__img-accent { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { grid-template-columns: 1fr; gap: 60px; }
  .about__img-secondary { right: -10px; bottom: -20px; }
  .about__img-secondary img { width: 180px; height: 210px; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .about__stats { flex-direction: column; gap: 20px; }
  .cta__actions { flex-direction: column; align-items: center; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
