/* ===== Reset & Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #1c2333;
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; }
ul { margin: 0; }

:root {
  --navy: #14235a;
  --navy-dark: #0e1a45;
  --navy-light: #24356f;
  --sky: #6b8fd4;
  --sky-soft: #dbe6f7;
  --cream: #faf7f1;
  --cream-warm: #f3ece1;
  --ink: #1c2333;
  --muted: #5b6478;
}

h1, h2, h3, .font-display { font-family: "Playfair Display", serif; }

svg { display: inline-block; vertical-align: middle; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== Section helpers ===== */
.section-pad { padding: 6rem 1.5rem; }
@media (max-width: 768px) { .section-pad { padding: 4rem 1.25rem; } }
.container-x { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 24px -10px rgba(20, 35, 90, 0.6); }
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(20, 35, 90, 0.7); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--cream-warm); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy); transform: translateY(-2px); }

/* ===== Navbar ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  padding: 1.1rem 1.5rem;
}
.nav-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px -14px rgba(20, 35, 90, 0.35);
  padding: 0.6rem 1.5rem;
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-brand img { height: 52px; width: 52px; border-radius: 50%; object-fit: cover; }
.nav-brand-text { line-height: 1.1; }
.nav-brand-text .b1 { font-family: "Playfair Display", serif; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.nav-brand-text .b2 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { position: relative; font-weight: 500; color: var(--ink); text-decoration: none; font-size: 0.95rem; padding: 0.25rem 0; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--sky); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--navy); }
.nav-toggle { display: none; background: none; border: none; color: var(--navy); cursor: pointer; padding: 0.25rem; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: #fff;
  border-radius: 16px;
  margin-top: 0.75rem;
  padding: 0.75rem;
  box-shadow: 0 20px 40px -20px rgba(20, 35, 90, 0.4);
}
.mobile-menu a { padding: 0.75rem 1rem; border-radius: 10px; color: var(--ink); text-decoration: none; font-weight: 500; }
.mobile-menu a:hover { background: var(--cream-warm); color: var(--navy); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu.open { display: flex; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14, 26, 69, 0.9) 0%, rgba(20, 35, 90, 0.72) 40%, rgba(20, 35, 90, 0.35) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; padding: 8rem 1.5rem 4rem; color: #fff; }
.hero-inner { max-width: 640px; }
.hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); line-height: 1.08; font-weight: 700; margin: 1rem 0 1.25rem; }
.hero p.lead { font-size: 1.15rem; line-height: 1.6; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; max-width: 520px; }
.hero-eyebrow { color: var(--sky-soft); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-contact { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; font-size: 0.95rem; }
.hero-contact a { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: color 0.25s ease; }
.hero-contact a:hover { color: var(--sky-soft); }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.6rem; z-index: 3; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; cursor: pointer; transition: background 0.3s ease, width 0.3s ease; }
.hero-dot.active { background: #fff; width: 26px; border-radius: 6px; }

/* ===== Section heads ===== */
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--navy); margin: 0.8rem 0 1rem; line-height: 1.15; }
.section-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.section-head .eyebrow { justify-content: center; }
.section-head-light h2 { color: #fff; }

/* ===== About ===== */
.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; height: 480px; object-fit: cover; border-radius: 24px; box-shadow: 0 30px 60px -30px rgba(20, 35, 90, 0.45); }
.about-badge {
  position: absolute; bottom: -22px; right: -12px;
  background: #fff; border-radius: 16px; padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 20px 40px -18px rgba(20, 35, 90, 0.4); color: var(--navy);
}
.about-badge div { display: flex; flex-direction: column; line-height: 1.1; }
.about-badge strong { font-size: 1rem; }
.about-badge span { font-size: 0.8rem; color: var(--muted); }
.about-text .eyebrow { justify-content: flex-start; }
.about-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); color: var(--navy); margin: 0.8rem 0 1.2rem; line-height: 1.15; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.about-text .lead-p { color: var(--ink); font-size: 1.15rem; font-weight: 500; }
.about-checks { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.about-checks li { display: flex; align-items: center; gap: 0.6rem; color: var(--navy); font-weight: 500; }
.about-checks li svg { color: var(--sky); }

.why-wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 5rem; }
.why-card { background: #fff; border-radius: 20px; padding: 2rem 1.5rem; border: 1px solid #eee5d8; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px -26px rgba(20, 35, 90, 0.4); }
.why-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--sky-soft); color: var(--navy); margin-bottom: 1.1rem; }
.why-card h3 { color: var(--navy); font-size: 1.2rem; margin: 0 0 0.5rem; }
.why-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ===== Services ===== */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card { background: var(--cream); border-radius: 20px; padding: 2.25rem 1.75rem; border: 1px solid #efe7da; transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.service-card:hover { transform: translateY(-8px); background: #fff; box-shadow: 0 28px 50px -28px rgba(20, 35, 90, 0.4); }
.service-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--navy); color: #fff; margin-bottom: 1.25rem; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }
.service-card h3 { color: var(--navy); font-size: 1.3rem; margin: 0 0 0.6rem; }
.service-card p { color: var(--muted); line-height: 1.65; margin: 0; }
.services-note { text-align: center; margin-top: 3.5rem; display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.services-note p { color: var(--muted); font-size: 1.1rem; margin: 0; }

/* ===== Gallery ===== */
.gallery { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item { position: relative; margin: 0; border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.gallery-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(14, 26, 69, 0.45); color: #fff; opacity: 0; transition: opacity 0.35s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== Reviews ===== */
.reviews { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.review-card { position: relative; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px; padding: 2.25rem 1.75rem; color: #fff; transition: transform 0.3s ease, background 0.3s ease; }
.review-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, 0.1); }
.review-quote { color: var(--sky); opacity: 0.5; margin-bottom: 0.5rem; }
.review-stars { display: flex; gap: 0.2rem; color: #f6c453; margin-bottom: 1rem; }
.review-card p { line-height: 1.7; color: rgba(255,255,255,0.92); margin: 0 0 1.5rem; }
.review-author { display: flex; flex-direction: column; }
.review-author strong { font-size: 1.05rem; }
.review-author span { color: var(--sky-soft); font-size: 0.9rem; }

/* ===== Contact ===== */
.contact { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info .eyebrow { justify-content: flex-start; }
.contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--navy); margin: 0.8rem 0 1rem; line-height: 1.15; }
.contact-info > p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--sky-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.contact-list div { display: flex; flex-direction: column; }
.contact-list strong { color: var(--navy); font-size: 0.9rem; }
.contact-list a { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.contact-list a:hover { color: var(--sky); }
.contact-map { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 44px -30px rgba(20, 35, 90, 0.4); border: 1px solid #eee; }
.contact-map iframe { width: 100%; height: 260px; border: 0; display: block; }

.contact-form-wrap { background: var(--cream); border-radius: 24px; padding: 2.5rem; border: 1px solid #efe7da; }
.contact-form h3 { color: var(--navy); font-size: 1.5rem; margin: 0 0 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%; box-sizing: border-box; padding: 0.85rem 1rem;
  border: 1.5px solid #e2d9ca; border-radius: 12px;
  font-family: "Poppins", sans-serif; font-size: 0.95rem;
  background: #fff; color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 4px rgba(107, 143, 212, 0.15); }
.field textarea { resize: vertical; }
.form-success { display: flex; align-items: center; gap: 0.5rem; background: #e7f4ea; color: #216e39; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ===== Footer ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.3fr; gap: 3rem; padding: 4.5rem 1.5rem 3rem; }
.footer-brand-top { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.25rem; }
.footer-brand-top img { width: 56px; height: 56px; border-radius: 50%; background: #fff; }
.footer-brand-top div { display: flex; flex-direction: column; line-height: 1.15; }
.footer-brand-top strong { font-family: "Playfair Display", serif; color: #fff; font-size: 1.2rem; }
.footer-brand-top span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sky-soft); }
.footer-brand p { line-height: 1.7; max-width: 340px; margin-bottom: 1.25rem; }
.footer-social { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1); color: #fff; transition: background 0.25s ease, transform 0.25s ease; }
.footer-social:hover { background: var(--sky); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: "Poppins", sans-serif; font-size: 1rem; margin: 0 0 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--sky-soft); }
.footer-contact li { display: flex; align-items: center; gap: 0.6rem; }
.footer-contact svg { color: var(--sky); flex-shrink: 0; }
.footer-keywords { padding: 1.5rem; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.45); border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.5rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-bottom-inner span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { order: -1; }
  .why-wrap { grid-template-columns: 1fr 1fr; margin-top: 3.5rem; }
  .services-grid, .gallery-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .why-wrap, .services-grid, .gallery-grid, .reviews-grid, .about-checks, .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-badge { right: 12px; }
}
