/* ========== Reset & Base ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #374151;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn-cta {
  background: linear-gradient(135deg, #1e6b87, #2a8fad);
  color: #fff;
  box-shadow: 0 4px 14px rgba(30, 107, 135, 0.35);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #185a72, #238da8);
  box-shadow: 0 6px 20px rgba(30, 107, 135, 0.45);
  transform: translateY(-2px);
}

/* ========== Navigation ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a3e4f;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3a5068;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover {
  color: #1e6b87;
  background: rgba(30, 107, 135, 0.06);
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, #1e6b87, #2a8fad);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 4px;
  box-shadow: 0 2px 10px rgba(30, 107, 135, 0.25);
  transition: all 0.3s ease;
}

.nav-links .nav-cta:hover {
  background: linear-gradient(135deg, #185a72, #238da8);
  box-shadow: 0 4px 14px rgba(30, 107, 135, 0.35);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #1a3e4f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ========== Hero + Services Section ========== */
.hero-services {
  background: linear-gradient(165deg, #e8f4f8 0%, #d0e9f2 40%, #bddce8 100%);
  padding: 96px 0 72px;
  position: relative;
}

.hero-services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15));
  pointer-events: none;
}

.hero-services h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a3e4f;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: #3a6577;
  margin-bottom: 44px;
  letter-spacing: 0.2px;
}

/* Three service columns side by side */
.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.service-col {
  background: #fff;
  border-radius: 16px;
  padding: 0 0 28px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.service-col h6 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a3e4f;
  margin: 0 24px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0f0f6;
  margin-bottom: 12px;
}

.service-col > p {
  color: #52677a;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 24px 6px;
}

.service-body p {
  color: #52677a;
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 6px;
}

.service-body {
  padding: 0 24px;
  max-height: 120px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.4s ease;
}

.service-body::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.service-body.expanded {
  max-height: 600px;
}

.service-body.expanded::after {
  opacity: 0;
}

.service-toggle {
  display: none;
  margin: 10px 24px 0;
  padding: 0;
  background: none;
  border: none;
  color: #1e6b87;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: color 0.2s;
}

.service-toggle:hover {
  color: #155a6f;
}

.service-toggle.visible {
  display: inline-block;
}

.service-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-col:hover .service-img-wrap img {
  transform: scale(1.03);
}

.service-img-wrap {
  overflow: hidden;
}

/* Consultation form — full width */
.consultation-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  margin-top: 8px;
  position: relative;
  z-index: 1;
}

.consultation-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.consultation-header h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a3e4f;
  margin: 0;
}

.consultation-phone {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.phone-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b8293;
}

.phone-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e6b87;
  letter-spacing: 0.5px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #3a5068;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d1dce4;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: #f8fafb;
  color: #374151;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a8fad;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(42, 143, 173, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9cb0be;
}

.form-success {
  margin-top: 20px;
  padding: 16px;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid #a7f3d0;
}

/* ========== About Section ========== */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3e4f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text p {
  margin-bottom: 16px;
  color: #52677a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-photo img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  margin-left: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ========== Schedule A Callback ========== */
.callback {
  padding: 80px 0;
  background: #f5f8fa;
}

.callback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.callback-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3e4f;
  margin-bottom: 14px;
}

.callback-info > p {
  color: #52677a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.callback-info h6 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1e6b87;
  margin-top: 22px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.callback-info h6.address-line {
  font-size: 0.82rem;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
  color: #374151;
  font-weight: 600;
}

.support-numbers {
  display: flex;
  gap: 32px;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
}

.callback-info p {
  color: #52677a;
  font-size: 1rem;
}

.callback-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

/* ========== Reviews Section ========== */
.reviews {
  padding: 80px 0;
  background: #fff;
}

.reviews-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a3e4f;
  text-align: center;
  margin-bottom: 8px;
}

.reviews-subheading {
  text-align: center;
  color: #6b8293;
  font-size: 1.05rem;
  margin-bottom: 44px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: #f8fafb;
  border: 1px solid #e4ecf0;
  border-radius: 16px;
  padding: 28px 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.review-card-new {
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-stars {
  color: #e8a838;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: #3a5068;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e6b87, #2a8fad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.review-author strong {
  display: block;
  color: #1a3e4f;
  font-size: 0.95rem;
}

.review-date {
  color: #8ea5b5;
  font-size: 0.82rem;
}

.reviews-status {
  text-align: center;
  color: #6b8293;
  font-size: 1rem;
  margin-top: 24px;
  font-style: italic;
}

/* ========== Leave a Review Section ========== */
.leave-review {
  padding: 72px 0;
  background: #f0f6f9;
}

.leave-review-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.leave-review-inner h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a3e4f;
  margin-bottom: 8px;
}

.leave-review-inner > p {
  color: #6b8293;
  font-size: 1rem;
  margin-bottom: 32px;
}

.review-form {
  text-align: left;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}

.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.review-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d1dce4;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: #f8fafb;
  color: #374151;
  cursor: pointer;
  transition: all 0.25s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%236b8293'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.review-form select:focus {
  outline: none;
  border-color: #2a8fad;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(42, 143, 173, 0.1);
}

/* ========== Medicare Made Easy Banner ========== */
.medicare-banner {
  background: linear-gradient(135deg, #153a4a 0%, #1e6b87 50%, #2a8fad 100%);
  padding: 72px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.medicare-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.medicare-banner h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}

.medicare-banner p {
  font-size: 1.15rem;
  opacity: 0.85;
  font-weight: 400;
  position: relative;
}

/* ========== Footer ========== */
.site-footer {
  background: linear-gradient(180deg, #1a3342 0%, #142a36 100%);
  color: #fff;
  padding: 56px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-col a {
  color: #8ec7db;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #b8e0ee;
}

.copyright {
  margin-top: 24px;
  font-size: 0.82rem;
  opacity: 0.5;
}

.footer-heading {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #8ec7db;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.newsletter-form input {
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.07);
  color: #fff;
  transition: all 0.25s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(142, 199, 219, 0.5);
  background: rgba(255,255,255,0.1);
}

.newsletter-form .btn-cta {
  margin-top: 4px;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .service-columns {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .consultation-header {
    flex-direction: column;
    gap: 8px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo img {
    margin: 0 auto;
  }

  .callback-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .review-form-row {
    grid-template-columns: 1fr;
  }

  .hero-services h1 {
    font-size: 2rem;
  }

  .medicare-banner h4 {
    font-size: 2rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 16px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 4px;
  }
}
