:root {
  --primary: #0f7f8f;
  --primary-dark: #0a5f6d;
  --secondary: #dff3fb;
  --bg: #f8fcff;
  --text: #12313a;
  --gold: #c4a56a;
  --card: rgba(255, 255, 255, 0.72);
  --border: rgba(15, 127, 143, 0.16);
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #ebf9ff 0%, #f7fbff 40%, #ffffff 100%);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.premium-nav {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--border);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff;
  font-weight: 800;
}

.btn-premium {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border: none;
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 127, 143, 0.22);
  transition: transform 0.25s ease;
}

.btn-premium:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-premium {
  border-radius: 999px;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline-premium:hover {
  background: var(--primary);
  color: #fff;
}

.hero-section {
  padding: 5rem 0 4rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--primary-dark);
  font-weight: 600;
}

.glass-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(16, 56, 67, 0.08);
  backdrop-filter: blur(10px);
}

.card-service {
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(15, 127, 143, 0.14);
}

.bg-soft {
  background: linear-gradient(90deg, #f2fbff, #f8fdff);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.stat-number {
  font-size: clamp(2rem, 6vw, 3rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  color: var(--primary-dark);
}

.emergency-banner {
  border-radius: 26px;
  background: linear-gradient(135deg, #0f7f8f, #0b5360);
  color: #fff;
}

.timeline {
  border-left: 2px solid var(--primary);
  padding-left: 1.4rem;
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
}

.timeline-item::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: -1.75rem;
  top: 0.4rem;
}

.site-footer {
  background: #06232a;
  color: #fff;
}

.floating-wa,
.floating-call {
  position: fixed;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  z-index: 1080;
}

.floating-wa {
  bottom: 22px;
  background: #20b358;
}

.floating-call {
  bottom: 84px;
  background: #0f7f8f;
}

.page-hero {
  background: linear-gradient(120deg, #edf9ff, #f8fcff);
}

.text-accent {
  color: var(--primary);
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 2.8rem;
  }
}
