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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #000;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  height: 50px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.cta {
  background: #f26522;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('images/hero-placeholder.jpg') center center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 10px 0 20px;
}

.btn {
  padding: 10px 20px;
  background: #f26522;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  border-radius: 4px;
  font-weight: bold;
}

.btn-secondary {
  background: #444;
}

/* Services */
.services {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.services h2 {
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-box img {
  width: 60px;
  margin-bottom: 15px;
}

/* Why Choose Us */
.why {
  padding: 40px 20px;
  background: #f4f4f4;
  text-align: center;
}

.why-list {
  list-style: none;
  margin-top: 20px;
}

.why-list li {
  margin: 10px 0;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonial {
  max-width: 600px;
  margin: 20px auto;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
}

/* Quote Form */
.quote {
  padding: 60px 20px;
  background: #f26522;
  color: #fff;
  text-align: center;
}

.quote form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.quote input,
.quote textarea,
.quote select {
  padding: 10px;
  border: none;
  border-radius: 4px;
  width: 100%;
}

.quote button {
  background: #000;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.socials a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-bar {
    flex-direction: column;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .btn {
    display: block;
    margin: 10px auto;
  }
}

/* ===== Premium Theme Overrides ===== */
:root {
  --ink: #0f172a;
  --ink-soft: #1f2937;
  --brand: #f26a1b;
  --brand-deep: #c84f0b;
  --mist: #f5f4f1;
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --stroke: rgba(15, 23, 42, 0.08);
  --radius-lg: 18px;
}

body.premium {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, rgba(242, 106, 27, 0.08), transparent 45%),
    radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.08), transparent 40%),
    #f8f7f4;
  overflow-x: hidden;
}

body.premium .container {
  max-width: 1180px;
}

body.premium h1,
body.premium h2,
body.premium h3,
body.premium h4 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
}

.premium-nav {
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(8px);
}

.premium-nav .nav-link {
  color: #1f2937 !important;
  font-weight: 500;
}

.premium-nav .nav-link:hover,
.premium-nav .nav-link.active {
  color: var(--brand) !important;
}

body.premium .btn {
  margin-right: 0;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.62rem 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.premium .btn-sm {
  padding: 0.38rem 0.82rem;
}

body.premium .btn-lg {
  padding: 0.78rem 1.35rem;
}

.navbar .btn-accent {
  padding: 6px 14px;
  font-weight: 600;
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  border: none;
  box-shadow: 0 12px 25px rgba(242, 106, 27, 0.35);
}

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

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.hero--premium {
  position: relative;
  min-height: 72vh;
  padding: 48px 0 64px;
  margin-bottom: 24px;
  background: linear-gradient(120deg, rgba(8, 16, 34, 0.85), rgba(8, 16, 34, 0.55)),
    url("images/air2.jpeg") center/cover no-repeat;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(242, 106, 27, 0.3), transparent 40%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.hero-row {
  min-height: 60vh;
}

.hero--premium {
  padding-top: 56px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 16px;
}

.eyebrow.dark {
  background: rgba(15, 23, 42, 0.08);
  color: var(--ink);
}

.hero-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  animation: floatUp 6s ease-in-out infinite;
}
.hero-card-mobile {
  display: none;
}

.hero-card h3 {
  color: #fff;
}

.hero-card p,
.hero-card li {
  color: rgba(255, 255, 255, 0.88);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.section-compact {
  margin: 20px 0;
}

.instagram-section {
  scroll-margin-top: 110px;
  margin: 20px 0 24px;
}

.instagram-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin: 0;
}

.insta-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insta-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.insta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.14);
}

.insta-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Pricing */
.pricing-section .surface-panel {
  background: var(--surface);
}

.pricing-card {
  border-radius: 14px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  height: 100%;
}

.price-tag {
  font-weight: 700;
  color: var(--ink);
  background: #fff5ec;
  border: 1px solid #fcd5b5;
  padding: 6px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

.surface-panel {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.compact-intro {
  padding-top: 10px;
}

.compact-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  height: 100%;
}

.compact-panel-alt {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  position: relative;
}

.compact-panel-alt::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}

.compact-panel-alt h3 {
  color: var(--ink);
}

.compact-points p {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #334155;
}

.compact-points i {
  color: var(--brand);
}

.snapshot-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

.snapshot-grid strong {
  display: block;
  font-size: 1.1rem;
  color: var(--ink);
}

.snapshot-grid span {
  display: block;
  font-size: 0.88rem;
  color: #475569;
}

.premium-services .service-grid {
  gap: 16px;
}

.premium-services {
  padding: 8px 0;
}

.premium-services h2 {
  margin-bottom: 0;
}

.premium-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(242, 106, 27, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon-wrap i {
  font-size: 26px;
  color: var(--brand);
}

.premium-process .process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.process-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.process-card .step {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}

.area-coverage {
  background: transparent;
  padding: 28px 0;
}

.area-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
}

.coverage-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.coverage-card-wide {
  padding: 24px;
}

.coverage-actions {
  display: grid;
  gap: 12px;
}

.btn-plain {
  border: 1px solid var(--stroke);
  color: var(--ink);
  background: var(--surface-soft);
}

.btn-plain:hover {
  background: rgba(15, 23, 42, 0.06);
}

.emergency-compact {
  padding: 8px 0;
  margin-bottom: 28px;
}

.emergency-shell {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--ink);
}

.emergency-shell h2,
.emergency-shell p {
  color: var(--ink);
}

.emergency-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.emergency-meta span {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px solid var(--stroke);
  color: #334155;
}

.emergency-call-box {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--stroke);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  gap: 12px;
  text-align: center;
  align-content: center;
}

.emergency-kicker {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.emergency-note {
  color: #64748b;
}

.contact-compact {
  margin-top: 10px;
  padding-top: 4px;
}

.contact-shell {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.contact-cta-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
  border-color: rgba(242, 106, 27, 0.35);
}

.contact-cta i {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.contact-cta strong {
  display: block;
  font-size: 14px;
  line-height: 1.1;
}

.contact-cta span {
  display: block;
  font-size: 13px;
  color: #64748b;
}

.option1-emergency,
.option1-contact {
  margin-top: 16px;
}

.option1-emergency .o1-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
}

.option1-emergency .o1-card,
.option1-contact .o1-card {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}

.option1-emergency .o1-card h2,
.option1-contact .o1-card h2 {
  margin: 0 0 10px;
}

.option1-emergency .o1-card p,
.option1-contact .o1-card p {
  margin: 0 0 12px;
  color: #4b5563;
}

.option1-emergency .o1-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.option1-emergency .o1-pill {
  font-size: 13px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fdba74;
  border-radius: 999px;
  padding: 6px 10px;
}

.option1-emergency .o1-em-right {
  display: grid;
  align-content: center;
  gap: 10px;
}

.option1-emergency .o1-em-right h3 {
  margin: 0;
  color: var(--ink);
}

.option1-contact .o1-contact-card {
  margin-top: 0;
}

.option1-contact .o1-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.option1-contact .o1-list-item {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.option1-contact .o1-list-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(242, 106, 27, 0.18);
}

.option1-contact .o1-list-item:hover {
  border-color: rgba(242, 106, 27, 0.4);
  box-shadow: 0 8px 16px rgba(17, 24, 39, 0.08);
}

.option1-contact .o1-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f26a1b, #c84f0b);
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(242, 106, 27, 0.28);
}

.option1-contact .o1-icon i {
  line-height: 1;
}

.option1-contact .o1-list-item strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.option1-contact .o1-list-item span {
  color: #6b7280;
  font-size: 13px;
}

.contact-form-card {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.contact-form .form-control:focus {
  border-color: #f26a1b;
  box-shadow: 0 0 0 0.15rem rgba(242, 106, 27, 0.25);
}

.contact-form button {
  border-radius: 10px;
}

.whatsapp-fab {
  position: fixed;
  right: 14px;
  bottom: 16px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f26a1b, #c84f0b) !important;
  color: #fff !important;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  z-index: 1200;
}

@media (min-width: 768px) {
  .whatsapp-fab {
    display: none;
  }
}

/* Contact demo layouts */
.pill-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-strip .pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #f26a1b;
  background: #fff;
  color: #f26a1b;
  font-weight: 600;
  text-decoration: none;
}

.pill-form .form-control-sm {
  font-size: 14px;
  border-radius: 8px;
}

.mini-list {
  display: grid;
  gap: 8px;
}

.mini-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: #fff;
}

.mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f26a1b, #c84f0b);
  color: #fff;
  font-size: 16px;
}

.mini-item strong {
  display: block;
  color: #0f172a;
}

.mini-item span {
  display: block;
  color: #6b7280;
  font-size: 13px;
}

.mini-form {
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
}

.mini-form .form-control-sm {
  font-size: 14px;
  border-radius: 8px;
}

.pdf-tools .contact-shell {
  margin-top: 0;
}

.services {
  background: transparent;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.footer-premium {
  background: #0b1222;
  color: rgba(255, 255, 255, 0.75);
  padding: 16px 0;
}

.footer-premium a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-premium a:hover {
  color: #fff;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.footer-logo {
  height: 42px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-credit {
  font-weight: 600;
  color: #f26a1b;
}

.footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-admin-link:hover {
  background: #f26a1b;
  border-color: #f26a1b;
  color: #fff;
}

/* Responsive refinements */
@media (max-width: 575px) {
  .instagram-shell {
    padding: 12px 14px;
  }
  .instagram-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }
  .footer-top {
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-top,
  .footer-bottom,
  .footer-meta {
    justify-content: center;
    text-align: center;
  }
  .footer-brand {
    flex-direction: column;
  }
}

@media (max-width: 991px) {
  .hero-row {
    min-height: auto;
  }
  .hero--premium {
    padding: 80px 0 56px;
    margin-bottom: 18px;
  }
}

@media (max-width: 767px) {
  .hero--premium h1 {
    font-size: 1.32rem;
    line-height: 1.24;
  }
  .hero--premium .lead {
    font-size: 1rem;
    line-height: 1.4;
  }
  .hero-card {
    display: none;
  }
  .hero-card-mobile {
    display: block;
    animation: none;
    padding: 22px;
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
  }
  .hero-card-mobile h3,
  .hero-card-mobile p,
  .hero-card-mobile li { color: #fff; }
  .premium-section {
    border-radius: 16px;
  }
  .hero--premium {
    min-height: auto;
    padding: 92px 0 44px;
    margin-bottom: 16px;
  }
  .trust-strip {
    gap: 10px;
    margin-top: 12px;
    justify-content: space-between;
  }
  .trust-strip .trust-pill {
    width: calc(50% - 6px);
    justify-content: center;
    text-align: center;
  }
  .hero-row { min-height: auto; flex-direction: column; }
}

@media (max-width: 575px) {
  .hero--premium {
    min-height: auto;
    padding: 96px 0 44px;
    margin-bottom: 14px;
  }
  .hero--premium h1 {
    font-size: 1.24rem;
  }
  .trust-strip {
    justify-content: center;
  }
  .hero-card-mobile { padding: 20px; }
  .compact-panel {
    padding: 18px;
  }
  .snapshot-grid {
    grid-template-columns: 1fr;
  }
  .coverage-card-wide {
    padding: 18px;
  }
  .emergency-shell,
  .contact-shell {
    padding: 18px;
  }
.contact-cta-grid {
  grid-template-columns: 1fr;
}

/* New contact layout */
.contact-section {
  margin-top: 10px;
}

.contact-shell {
  background: #fff;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.contact-grid .contact-action {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #fdf6f1);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.contact-grid .contact-action:link,
.contact-grid .contact-action:visited,
.contact-grid .contact-action:hover {
  text-decoration: none;
}

.contact-action:hover {
  border-color: rgba(242, 106, 27, 0.35);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.contact-action strong {
  display: block;
  font-size: 15px;
  color: #0f172a;
}

.contact-action span {
  display: block;
  color: #6b7280;
  font-size: 13px;
}

.contact-orange strong,
.contact-orange span {
  color: #f26a1b;
}

.contact-orange,
.contact-orange:link,
.contact-orange:visited,
.contact-orange:hover,
.contact-orange:active {
  color: #f26a1b !important;
  text-decoration: none !important;
}

.contact-orange * {
  color: #f26a1b !important;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f26a1b, #c84f0b);
  color: #fff !important;
  font-size: 19px;
  box-shadow: 0 8px 16px rgba(242, 106, 27, 0.25);
  flex-shrink: 0;
}

.contact-action-cta {
  justify-content: flex-start;
}

.contact-form-card {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
}

.contact-form .form-control {
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
}

.contact-form .form-control:focus {
  border-color: #f26a1b;
  box-shadow: 0 0 0 0.15rem rgba(242, 106, 27, 0.25);
}

.contact-form button {
  border-radius: 10px;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1fa553);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  z-index: 1200;
}

@media (min-width: 768px) {
  .whatsapp-fab {
    display: none;
  }
}

  .option1-emergency .o1-grid {
    grid-template-columns: 1fr;
  }
  .option1-emergency .o1-card,
  .option1-contact .o1-card {
    padding: 18px;
  }
}
