*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --ocean: #0a4f6e;
    --sky: #1a8ab5;
    --foam: #e8f6fc;
    --sand: #f5efe3;
    --coral: #e05c3a;
    --dusk: #0d2d3e;
    --text: #1c2b33;
    --muted: #4f7080;
    --white: #ffffff;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5%;
    background: rgba(10, 45, 62, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.3px;
  }

  .logo span { color: #5ccfff; }

  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
  }

  nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  nav a:hover { color: #fff; }

  .nav-cta {
    background: var(--coral) !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: #c94c2c !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--dusk) 0%, var(--ocean) 60%, #0e7aab 100%);
    display: flex;
    align-items: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 120px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
  }

  .hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    opacity: 0.06;
    pointer-events: none;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(92, 207, 255, 0.15);
    border: 1px solid rgba(92, 207, 255, 0.3);
    color: #5ccfff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }

  .hero-tag::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #5ccfff;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 66px);
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }

  h1 em {
    font-style: italic;
    color: #5ccfff;
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    line-height: 1.65;
    margin-bottom: 40px;
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--coral);
    color: #fff;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .btn-primary:hover { background: #c94c2c; transform: translateY(-1px); }

  .btn-ghost {
    background: transparent;
    color: #fff;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: border-color 0.2s, background 0.2s;
    display: inline-block;
  }

  .btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

  /* HERO CARD */
  .hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
  }

  .hero-card h3 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: padding-left 0.2s;
  }

  .contact-item:last-of-type { border-bottom: none; }
  .contact-item:hover { padding-left: 6px; }

  .contact-icon {
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
  }

  .contact-icon.phone { background: rgba(92, 207, 255, 0.15); }
  .contact-icon.email { background: rgba(224, 92, 58, 0.2); }
  .contact-icon.chat { background: rgba(74, 222, 128, 0.15); }

  .contact-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: block;
    margin-bottom: 2px;
    letter-spacing: 0.3px;
  }

  .contact-value {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
  }

  .chat-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 8px;
  }

  .chat-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
  }

  /* STATS BAR */
  .stats {
    background: var(--sand);
    padding: 50px 5%;
  }

  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .stat {
    text-align: center;
    padding: 24px;
  }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--ocean);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
  }

  /* SECTION COMMON */
  section { padding: 90px 5%; }

  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 12px;
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 50px);
    color: var(--dusk);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .section-desc {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 56px;
  }

  section-desc, a {
    color: var(--sky);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
  }

  /* SERVICES */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid #e4edf2;
    border-radius: 14px;
    padding: 32px 28px;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky), var(--ocean));
    opacity: 0;
    transition: opacity 0.2s;
  }

  .service-card:hover {
    box-shadow: 0 12px 40px rgba(10, 79, 110, 0.1);
    transform: translateY(-3px);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--dusk);
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* PLANS */
  .plans { background: var(--foam); }

  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .plan-card {
    background: var(--white);
    border: 1.5px solid #d4e8f2;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
  }

  .plan-card.featured {
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(10, 79, 110, 0.08);
  }

  .plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ocean);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .plan-name {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 8px;
  }

  .plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--dusk);
    line-height: 1;
    margin-bottom: 4px;
  }

  .plan-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
  .plan-price sub { font-size: 16px; font-family: 'DM Sans', sans-serif; font-weight: 300; color: var(--muted); }

  .plan-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e4edf2;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 32px;
  }

  .plan-features li {
    font-size: 14px;
    color: var(--text);
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .plan-features li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: var(--foam);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--sky);
    font-weight: 700;
    flex-shrink: 0;
  }

  .btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-plan-outline {
    border: 1.5px solid var(--ocean);
    color: var(--ocean);
    background: transparent;
  }

  .btn-plan-outline:hover {
    background: var(--ocean);
    color: #fff;
  }

  .btn-plan-filled {
    background: var(--ocean);
    color: #fff;
  }

  .btn-plan-filled:hover { background: var(--dusk); }

  /* WHY LOCAL */
  .local-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
  }

  .local-visual {
    background: linear-gradient(135deg, var(--ocean), var(--dusk));
    border-radius: 20px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
  }

  .local-visual::after {
    content: '🌴';
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 80px;
    opacity: 0.15;
  }

  .local-visual h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .local-visual p {
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .local-address {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .reasons {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .reason {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .reason-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--foam);
    border: 1.5px solid #cde5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ocean);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .reason h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dusk);
    margin-bottom: 4px;
  }

  .reason p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* CONTACT */
  .contact { background: var(--dusk); }

  .contact h2 { color: var(--white); }
  .contact .section-label { color: #5ccfff; }
  .contact .section-desc { color: rgba(255,255,255,0.55); }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .contact-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: background 0.2s;
  }

  .contact-card:hover { background: rgba(255,255,255,0.09); }

  .contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
  }

  .contact-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 6px;
  }

  .contact-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .contact-link {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: background 0.2s, border-color 0.2s;
  }

  .contact-link:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

  .contact-link.chat-link {
    background: #4ade80;
    border-color: #4ade80;
    color: #0d2d0d;
  }

  .contact-link.chat-link:hover { background: #22c55e; border-color: #22c55e; }

  .hours-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
  }

  /* FOOTER */
  footer {
    background: #060f15;
    padding: 36px 5%;
    text-align: center;
  }

  footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.25);
  }

  footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
  footer a:hover { color: rgba(255,255,255,0.75); }

  @media (max-width: 900px) {
    .hero-grid, .local-grid, .plans-grid, .services-grid, .contact-grid, .stats-inner {
      grid-template-columns: 1fr;
    }
    nav ul { display: none; }
  }

  /* CONTACT FORM */

.contact-form-page {
  padding: 140px 5% 80px;
  min-height: 100vh;
  background: var(--foam);
}

.contact-form-card {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dusk);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d9e5ec;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

button.btn-primary {
  width: 100%;
  border: none;
  cursor: pointer;
}