:root {
  --navy-900: #0A1A2E;
  --navy-800: #0D2B3E;
  --teal-500: #00BCD4;
  --teal-300: #66E0E7;
  --ice-100: #E6F1F5;
  --whatsapp: #25D366;
  --radius: 16px;
  --shadow-glow: 0 0 40px rgba(0, 188, 212, 0.25);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background: var(--navy-900);
  color: var(--ice-100);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--teal-300);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.eyebrow.center { display: block; text-align: center; }

h1, h2 {
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 18px; }
h2.center { text-align: center; }

p { color: rgba(230, 241, 245, 0.85); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-300));
  color: var(--navy-900);
  box-shadow: var(--shadow-glow);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-block { width: 100%; }

/* Top announcement bar */
.topbar {
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 16px;
  text-align: center;
  font-size: 0.9rem;
}
.topbar p { min-width: 0; }
.topbar-cta {
  background: var(--navy-900);
  color: var(--teal-300);
  padding: 6px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 26, 46, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 224, 231, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand-logo {
  height: 42px;
  width: auto;
  border-radius: 6px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--ice-100);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--teal-300); }
.nav-cta {
  background: var(--teal-500);
  color: var(--navy-900) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
}

/* Hero */
.hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0, 188, 212, 0.18), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(13, 43, 62, 0.9), transparent 60%),
    var(--navy-900);
  padding: 72px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-lead {
  font-size: 1.15rem;
  margin: 20px 0 32px;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow), 0 20px 60px rgba(0,0,0,0.4);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Trust row */
.trust-row {
  background: var(--navy-800);
  padding: 32px 0;
  border-top: 1px solid rgba(102, 224, 231, 0.1);
  border-bottom: 1px solid rgba(102, 224, 231, 0.1);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ice-100);
}
.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  background: rgba(0, 188, 212, 0.12);
  border: 1px solid rgba(102, 224, 231, 0.3);
}
.trust-icon svg { width: 26px; height: 26px; }

/* About */
.about { padding: 96px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.about-text .highlight {
  color: var(--teal-300);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 8px;
}
.about-text .signature {
  margin-top: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.about-text p { margin-bottom: 14px; }

/* Services */
.services { padding: 80px 0; background: var(--navy-800); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.service-card {
  background: rgba(230, 241, 245, 0.04);
  border: 1px solid rgba(102, 224, 231, 0.18);
  border-radius: 12px;
  padding: 22px 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-left: 52px;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' d='M4 12l5 5 11-11'/%3E%3C/svg%3E") center/60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3' d='M4 12l5 5 11-11'/%3E%3C/svg%3E") center/60% no-repeat;
}

/* Homecare */
.homecare { padding: 96px 0; }
.homecare-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.homecare-photos {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.homecare-photos img {
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-tall { aspect-ratio: 3/4; }
.homecare-photos-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.homecare-photos-side img { aspect-ratio: 4/3; }
.check-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--ice-100);
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-300);
  font-weight: 800;
}

/* Closing */
.closing {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
}
.closing-quote {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}

/* Booking */
.booking { padding: 96px 0; background: var(--navy-800); position: relative; overflow: hidden; }
.booking-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}
.booking-intro p { margin-bottom: 24px; }
.booking-emblem {
  max-width: 200px;
  opacity: 0.9;
  border-radius: var(--radius);
}
.booking-form {
  background: rgba(10, 26, 46, 0.6);
  border: 1px solid rgba(102, 224, 231, 0.25);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-glow);
}
.booking-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal-300);
  margin-top: 14px;
  margin-bottom: 6px;
}
.booking-form input,
.booking-form textarea {
  background: rgba(230, 241, 245, 0.06);
  border: 1px solid rgba(102, 224, 231, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: rgba(230, 241, 245, 0.4); }
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
}
.booking-form button { margin-top: 22px; }
.booking-footnote {
  text-align: center;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(230, 241, 245, 0.6);
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  padding: 40px 0 24px;
  border-top: 1px solid rgba(102, 224, 231, 0.12);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 34px; border-radius: 6px; opacity: 0.9; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
}
.footer-contact a { color: var(--teal-300); text-decoration: none; font-weight: 700; }
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(230, 241, 245, 0.4);
  margin-top: 24px;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 60;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 860px) {
  .topbar { font-size: 0.78rem; padding: 10px 12px; flex-direction: column; gap: 8px; }
  .topbar p { width: 100%; }
  .site-nav { display: none; }
  .hero-inner, .about-inner, .homecare-inner, .booking-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .homecare-photos { grid-template-columns: 1fr; }
  .homecare-photos-side { grid-template-rows: 1fr 1fr; grid-auto-flow: column; grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
