/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #E84B3A;
  --red-dark: #C0392B;
  --red-light: #FEE2E2;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --white: #ffffff;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,75,58,.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 10px 20px; font-size: .875rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__img { height: 44px; width: auto; object-fit: contain; display: block; }
.logo__img--footer { height: 40px; filter: brightness(0) invert(1); }
.logo__brand { display: block; font-size: 1.1rem; font-weight: 800; color: var(--gray-900); line-height: 1.2; }
.logo__sub { display: block; font-size: .7rem; color: var(--gray-400); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.logo--light .logo__brand { color: var(--white); }
.logo--light .logo__sub { color: rgba(255,255,255,.6); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav__link:hover { color: var(--gray-900); background: var(--gray-100); }
.nav__link--cta {
  background: var(--red);
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__link--cta:hover { background: var(--red-dark); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all .3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  overflow: hidden;
  padding-top: 70px;
}
.hero::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.03'%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");
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(232,75,58,.15) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 24px;
}
.hero__label {
  display: inline-block;
  background: rgba(232,75,58,.2);
  color: #fca5a5;
  border: 1px solid rgba(232,75,58,.3);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero__title span { color: var(--red); }
.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.badge svg { color: #4ade80; }

/* ===== STATS ===== */
.stats {
  background: var(--gray-900);
  padding: 28px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label {
  font-size: .8rem;
  color: var(--gray-400);
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ===== SECTION COMMON ===== */
.section { padding: 96px 0; }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section__label {
  display: inline-block;
  color: var(--red);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section__desc { color: var(--gray-600); font-size: 1.05rem; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { background: var(--gray-50); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.service-card__icon svg { width: 56px; height: 56px; }
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-card__desc {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-card__list li {
  font-size: .875rem;
  color: var(--gray-600);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* ===== WHY US ===== */
.why-us { background: var(--white); }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__content .section__title,
.why-us__content .section__desc,
.why-us__content .section__label { text-align: left; }
.why-us__content > p { color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-item__icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}
.why-item h4 { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.why-item p { font-size: .875rem; color: var(--gray-600); line-height: 1.6; }

.why-us__photo-wrap { position: relative; }
.why-us__photo-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-us__photo-placeholder svg { width: 100%; height: 100%; }
.why-us__review {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  border: 1px solid var(--gray-200);
}
.why-us__review .stars { color: #FBBF24; font-size: 1rem; margin-bottom: 8px; }
.why-us__review p { font-size: .85rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 8px; font-style: italic; }
.why-us__review span { font-size: .8rem; font-weight: 600; color: var(--gray-900); }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--gray-50); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
}
.stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial p { font-size: .92rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: .9rem; color: var(--gray-900); }
.testimonial__author span { font-size: .8rem; color: var(--gray-400); }

/* ===== AREAS ===== */
.areas { background: var(--white); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.area-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.area-card:hover {
  border-color: var(--red);
  background: var(--red-light);
  transform: translateY(-2px);
}
.area-card__pin { width: 20px; height: 20px; color: var(--red); }
.area-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gray-900); }
.area-card p { font-size: .875rem; color: var(--gray-600); line-height: 1.5; }
.areas__note { text-align: center; color: var(--gray-600); font-size: .95rem; }
.areas__note a { color: var(--red); font-weight: 600; }
.areas__note a:hover { text-decoration: underline; }

/* ===== CONTACT ===== */
.contact { background: var(--gray-900); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact .section__label { color: #fca5a5; }
.contact .section__title { color: var(--white); }
.contact > .container > .contact__info > p { color: rgba(255,255,255,.7); margin-bottom: 32px; line-height: 1.7; }
.contact__info > p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  transition: color var(--transition);
}
a.contact__detail:hover { color: var(--white); }
.contact__detail svg { color: var(--red); flex-shrink: 0; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--gray-800); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,75,58,.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #dc2626;
}
.form-error { font-size: .8rem; color: #dc2626; min-height: 16px; }
.form-note { text-align: center; font-size: .8rem; color: var(--gray-400); margin-top: 12px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.form-success.visible { display: flex; }
.form-success h3 { font-size: 1.4rem; color: var(--gray-900); }
.form-success p { color: var(--gray-600); }

/* ===== FOOTER ===== */
.footer { background: #0a0a0f; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.7; margin-bottom: 12px; }
.footer__license { color: rgba(255,255,255,.35); font-size: .78rem; }
.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer__links ul li { margin-bottom: 8px; }
.footer__links a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact a,
.footer__contact p {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }
.footer__contact .btn { margin-top: 8px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p { color: rgba(255,255,255,.3); font-size: .8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why-us__inner { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(3), .stat:last-child { border-bottom: none; }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us__review { position: static; max-width: 100%; margin-top: 16px; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link { text-align: center; padding: 12px; }
  .nav__link--cta { margin-left: 0; }
  .burger { display: flex; }
  .section { padding: 64px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 28px 20px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== GALLERY (CMS) ===== */
.gallery-section { background: var(--gray-50); }
.gallery-cms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-cms-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-200);
}
.gallery-cms-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.gallery-cms-item:hover img { transform: scale(1.04); }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 120px 0 80px;
  background: var(--white);
  min-height: 70vh;
}
.legal-container { max-width: 800px; }
.legal-back {
  display: inline-block;
  color: var(--red);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.legal-back:hover { text-decoration: underline; }
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.legal-updated {
  color: var(--gray-400);
  font-size: .9rem;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 36px 0 12px;
}
.legal-page p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page li {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal-page a { color: var(--red); font-weight: 500; }
.legal-page a:hover { text-decoration: underline; }
.legal-contact {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  line-height: 1.9 !important;
}

/* Footer legal row */
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  transition: color var(--transition);
}
.footer__legal a:hover { color: #fff; }
@media (max-width: 560px) {
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 200;
  max-width: 920px;
  margin: 0 auto;
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  transform: translateY(150%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s ease;
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.cookie-banner__text svg { color: var(--red); flex-shrink: 0; }
.cookie-banner__text p { font-size: .875rem; line-height: 1.55; color: rgba(255,255,255,.8); margin: 0; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

@media (max-width: 640px) {
  .cookie-banner { bottom: 12px; left: 12px; right: 12px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 16px; padding: 18px; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* ===== ANIMATIONS ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; }
.fade-up.visible { animation: fadeUp .55s ease forwards; }
