/* ── RESET & ROOT VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sky:       #EAF4FB;
  --sky-mid:   #C2DFF2;
  --blue:      #2A7CB8;
  --blue-dark: #1A5484;
  --blue-deep: #0E3557;
  --gold:      #C9973A;
  --gold-light:#FDF3E3;
  --white:     #FFFFFF;
  --off-white: #F7FAFD;
  --text:      #1C2B3A;
  --muted:     #5A7089;
  --border:    #D4E6F1;
  --success:   #1B6B3A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  text-align: center;
  padding: .45rem 1rem;
}
.topbar a { color: var(--gold); text-decoration: none; }
.topbar strong { color: #fff; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  box-shadow: 0 2px 12px rgba(42,124,184,.08);
}
.nav-logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--blue-dark);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: .01em;
}
.nav-links { display: flex; gap: 1.8rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .88rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: .45rem 1.2rem;
  border-radius: 7px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-phone {
  display: flex; align-items: center; gap: .4rem;
  color: var(--blue-dark) !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 55%, var(--blue) 100%);
  color: #fff;
  padding: 80px 5% 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.3rem;
}
.hero-eyebrow span { color: var(--gold); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 1.8rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-gold {
  background: var(--gold);
  color: var(--blue-deep);
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-gold:hover { background: #b8862e; transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  padding: .75rem 1.6rem;
  border-radius: 8px;
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.hero-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  padding: .3rem .75rem;
  border-radius: 20px;
}
.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 1rem;
}
.hero-photo-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px 16px 0 0;
  padding: 2rem 2rem 0;
  text-align: center;
  max-width: 320px; width: 100%;
}
.hero-stars { color: var(--gold); font-size: .9rem; margin-bottom: .5rem; }

/* ── WAVE DIVIDER ── */
.wave { display: block; width: 100%; background: var(--blue-deep); line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ── TRUST STRIP ── */
.trust { background: var(--sky); border-bottom: 1px solid var(--border); }
.trust-inner {
  display: flex; justify-content: center; flex-wrap: wrap;
  max-width: 1100px; margin: 0 auto;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
  font-size: .83rem; font-weight: 600;
  color: var(--blue-dark);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.2rem; }

/* ── SECTION COMMONS ── */
section { padding: 70px 5%; }
.section-eyebrow {
  font-size: .73rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--blue-deep); margin-bottom: .9rem;
}
.section-sub { color: var(--muted); max-width: 580px; margin-bottom: 2.5rem; font-size: .97rem; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem;
  background: var(--white);
  transition: box-shadow .2s, border-color .2s, transform .2s;
  cursor: default;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(42,124,184,.12);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.svc-icon {
  width: 44px; height: 44px;
  background: var(--sky);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.service-card h3 { font-size: .97rem; font-weight: 600; color: var(--blue-dark); margin-bottom: .4rem; }
.service-card p { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing { background: var(--off-white); }
.pricing-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.price-note-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.3rem;
  font-size: .88rem; color: var(--blue-deep);
  margin-bottom: 1.5rem;
}
.price-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.price-table thead tr { background: var(--blue-deep); color: #fff; }
.price-table th { padding: .75rem 1rem; text-align: left; font-weight: 600; }
.price-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.price-table tr:nth-child(even) td { background: var(--sky); }
.price-table tr:hover td { background: var(--sky-mid); }
.price-amount { font-weight: 700; color: var(--blue-dark); }
.guarantee {
  background: var(--blue-deep); color: #fff;
  border-radius: 12px; padding: 1.5rem; margin-top: 1.5rem;
}
.guarantee h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: .5rem; color: var(--gold); }
.guarantee p { font-size: .87rem; color: rgba(255,255,255,.8); line-height: 1.7; }

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-photo {
  background: var(--sky); border-radius: 16px; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; overflow: hidden;
  border: 2px solid var(--border);
}
.about-photo-inner { text-align: center; padding: 2rem; }
/* ── PHOTO IMAGE ── */
.hero-photo-placeholder {
  width: 200px; height: 240px;
  border-radius: 12px;
  margin: 0 auto 1.2rem;
  overflow: hidden;
  position: relative;
}
.hero-photo-placeholder::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  background: radial-gradient(ellipse at center,
    transparent 55%,
    rgba(14,53,87,.55) 80%,
    rgba(14,53,87,.95) 100%);
  pointer-events: none;
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.about-photo-initials {
  width: 100%; height: 380px;
  border-radius: 12px;
  margin: 0 auto 1rem;
  overflow: hidden;
  position: relative;
}
.about-photo-initials::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  background: radial-gradient(ellipse at center,
    transparent 50%,
    rgba(234,244,251,.45) 75%,
    rgba(234,244,251,.98) 100%);
  pointer-events: none;
}
.about-photo-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.about-photo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--blue-dark); margin-bottom: .3rem; }
.about-photo-title { font-size: .85rem; color: var(--muted); }
.about-text p { color: var(--muted); margin-bottom: 1rem; font-size: .95rem; line-height: 1.75; }
.about-text strong { color: var(--blue-dark); }
.ciol-link {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--blue); font-size: .88rem; font-weight: 600;
  text-decoration: none; margin-top: .5rem;
}
.ciol-link:hover { color: var(--blue-dark); text-decoration: underline; }
.stats-row { display: flex; gap: 1.5rem; margin: 2rem 0; flex-wrap: wrap; }
.stat-box {
  background: var(--sky); border: 1px solid var(--border);
  border-radius: 10px; padding: 1rem 1.4rem; text-align: center;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--blue); display: block; }
.stat-label { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.cred-list { display: flex; flex-direction: column; gap: .85rem; margin-top: 1.5rem; }
.cred-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem; background: var(--sky);
  border-radius: 10px; border-left: 3px solid var(--blue);
}
.cred-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }
.cred-title { font-weight: 600; color: var(--blue-dark); font-size: .92rem; }
.cred-desc { font-size: .82rem; color: var(--muted); margin-top: .15rem; line-height: 1.5; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blue-deep); color: #fff; }
.testimonials .section-eyebrow { color: var(--gold); }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,.65); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 1.6rem;
  transition: background .2s;
}
.testi-card:hover { background: rgba(255,255,255,.11); }
.testi-stars { color: var(--gold); font-size: .95rem; margin-bottom: .8rem; }
.testi-text { font-size: .9rem; color: rgba(255,255,255,.85); font-style: italic; line-height: 1.75; margin-bottom: 1rem; }
.testi-author { font-weight: 600; font-size: .83rem; color: var(--gold); }
.google-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: .6rem 1.1rem;
  font-size: .83rem; color: rgba(255,255,255,.85);
  text-decoration: none; margin-bottom: 2rem;
  transition: background .2s;
}
.google-badge:hover { background: rgba(255,255,255,.17); color: #fff; }

/* ── FAQ ── */
.faq { background: var(--off-white); }
.faq-list { max-width: 700px; display: flex; flex-direction: column; gap: .7rem; }
.faq-item { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left;
  padding: 1.05rem 1.3rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: .93rem; font-weight: 600; color: var(--blue-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .arr { font-size: 1rem; transition: transform .25s; flex-shrink: 0; color: var(--blue); }
.faq-item.open .arr { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .88rem; color: var(--muted); line-height: 1.7;
  padding: 0 1.3rem;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.3rem 1.1rem; }
.faq-a a { color: var(--blue); }

/* ── CONTACT ── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: start; }
.contact-info-card { background: var(--blue-deep); border-radius: 16px; padding: 2rem; color: #fff; }
.contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 1.4rem; }
.contact-row { display: flex; gap: .9rem; align-items: flex-start; margin-bottom: 1.2rem; }
.contact-row-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-row strong { display: block; color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.contact-row a, .contact-row span { color: #fff; font-size: .9rem; text-decoration: none; }
.contact-row a:hover { color: var(--gold); }
.contact-whatsapp {
  display: block; background: var(--gold);
  color: var(--blue-deep) !important;
  text-align: center; padding: .8rem; border-radius: 8px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  margin-top: 1.5rem; transition: background .2s;
}
.contact-whatsapp:hover { background: #b8862e; }
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: .88rem;
  color: var(--text); background: var(--white);
  transition: border-color .2s; outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button {
  background: var(--blue); color: #fff;
  border: none; padding: .85rem; border-radius: 8px;
  font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.contact-form button:hover { background: var(--blue-dark); }

/* ── USEFUL LINKS ── */
.links-bar { background: var(--sky); border-top: 1px solid var(--border); padding: 30px 5%; }
.links-bar h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
.links-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.links-row a {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 7px; padding: .4rem .9rem;
  font-size: .82rem; color: var(--blue-dark); text-decoration: none;
  transition: border-color .2s, color .2s;
}
.links-row a:hover { border-color: var(--blue); color: var(--blue); }

/* ── FOOTER ── */
footer { background: var(--blue-deep); color: rgba(255,255,255,.55); text-align: center; padding: 1.8rem 5%; font-size: .82rem; }
footer a { color: var(--gold); text-decoration: none; }
footer .footer-inner { max-width: 900px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero, .about-grid, .contact-grid, .pricing-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 50px 5% 0; }
  .hero-photo-wrap { display: none; }
  .nav-links li:not(:last-child):not(.nav-phone-li) { display: none; }
}
@media (max-width: 600px) {
  .trust-item { padding: .8rem 1.2rem; font-size: .78rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { gap: 1rem; }
}
