/* Modern Living All4You — Summer Campaign */
:root {
  --primary: #0B5FAC;
  --primary-dark: #094a8a;
  --secondary: #25D366;
  --accent: #12284C;
  --bg: #FFFFFF;
  --bg-alt: #F4F8FC;
  --bg-soft: #E8F2FA;
  --text: #12284C;
  --text-muted: #4A6278;
  --border: #D8E3EE;
  --shadow: 0 4px 24px rgba(18, 40, 76, 0.08);
  --shadow-lg: 0 12px 40px rgba(18, 40, 76, 0.12);
  --radius: 11px;
  --radius-lg: 18px;
  --font-body: "Montserrat", sans-serif;
  --font-heading: "Montserrat", sans-serif;
  --transition: 200ms ease;
  --header-h: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary {
  background: #11284C;
  color: #fff;
}

.btn-primary:hover {
  background: #104D9C;
  color: #fff;
}

.btn-secondary {
  background: var(--bg-soft);
  color: var(--accent);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: #dceaf6;
  color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-whatsapp {
  background: var(--secondary);
  color: #fff;
  padding: 0.65rem 1.1rem;
  font-size: 0.875rem;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo-link img {
  width: clamp(130px, 18vw, 180px);
}

.nav-desktop {
  display: none;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--accent);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  padding: 0.85rem 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
  color: var(--secondary);
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(11, 95, 172, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold {
  background: white;
  color: #cda869;
  /* Elegant gold */
  border: 1px solid #cda869;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-cta .btn {
  display: flex;
  align-items: center;
}

.btn-outline-dark {
  border-color: var(--accent);
  color: var(--accent);
}

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

.hero-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.hero-card-label {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.stat-boxes {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.stat-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-head p {
  color: var(--text-muted);
}

/* Compare table */
.compare-table-wrap {
  overflow-x: auto;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.compare-table tbody th {
  font-weight: 600;
  background: var(--bg-alt);
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none;
}

/* Package cards */
.package-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.package-card:hover {
  border-color: rgba(11, 95, 172, 0.35);
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.package-tag {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.75rem;
  background: var(--bg-soft);
  color: var(--primary);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-tag.popular {
  background: var(--primary);
  color: #fff;
}

.package-price {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.package-price strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
}

.package-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.package-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

.package-card .btn {
  width: 100%;
}

/* About */
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
}

.feature-item svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--accent);
}

.feature-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Detail cards */
.detail-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.w-full {
  width: 100%;
  text-align: center;
  display: block;
}

.detail-card {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 14px;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
}

.card-content {
  flex-grow: 1;
}

.card-footer {
  margin-top: 1.5rem;
}

.detail-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Calculator */
.calculator {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(11, 95, 172, 0.35);
  border-color: var(--primary);
}

.field input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}

.field output {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
}

.calculator-result {
  padding: 1.75rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.result-row:last-of-type {
  border-bottom: none;
}

.result-row span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.result-row strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--accent);
}

.result-row.highlight strong {
  font-size: 1.75rem;
  color: var(--primary);
}

.result-note {
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.calculator-result .btn {
  width: 100%;
}

/* Form */
.form-wrapper {
  display: grid;
  gap: 2.5rem;
}

.form-intro h3 {
  color: var(--primary);
  margin-top: 0.5rem;
}

.form-support {
  padding: 1rem 1.1rem;
  background: rgba(11, 95, 172, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
}

.agent-form {
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-grid .field {
  margin-bottom: 0;
}

.agent-form legend {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent);
}

.radio-group,
.checkbox-group {
  display: grid;
  gap: 0.65rem;
}

.radio-group label,
.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.radio-group label:hover,
.checkbox-group label:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
}

.radio-group input,
.checkbox-group input {
  accent-color: var(--primary);
}

.form-actions {
  margin-top: 1.5rem;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.92rem;
  min-height: 1.4rem;
}

.form-status.success {
  color: #0f7a3a;
}

.form-status.error {
  color: #b42318;
}

/* Footer */
.site-footer {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 2rem;
}

.footer-brand p {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.footer-brand a {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), background var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.05);
  background: #1ebe57;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Responsive */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .calculator {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .form-wrapper {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .radio-group,
  .checkbox-group {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}