/* =============================================
   pages.css — Styles for About, Services,
   Blog, Resources & Contact pages
   ============================================= */

/* ══════════════ ABOUT PAGE ══════════════ */
body{
  background: rgba(245, 245, 245, 0.526);
  color: var(--text-dark);
  overflow-x: hidden;
  margin-top: 20px;
}
.about-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; padding: 5rem 5rem 5rem 6rem; align-items: center;
}
.about-img-wrap {
  width: 100%; aspect-ratio: 4/5;
  background: var(--green-mist);
  border-radius: 24px; overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-pale);
}
.about-content .section-sub { max-width: 100%; margin-bottom: 1.5rem; }
.qual-list { margin: 1.5rem 0; }
.qual-item {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.8rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-mid); line-height: 1.5;
}
.qual-dot {
  width: 8px; height: 8px; background: var(--green-soft);
  border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}
.credentials-row { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.cred-badge {
  background: var(--green-mist); border: 1px solid var(--green-pale);
  border-radius: 8px; padding: 0.5rem 1rem;
  font-size: 0.78rem; color: var(--green-mid); font-weight: 500;
}
.values-section {
  position: relative;
  padding: 5rem 6rem;
  background-image: linear-gradient(rgba(10,20,15,0.12), rgba(10,20,15,0.12)), url('../Pictures/aboutBg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
}

.values-section > *,
.values-section .values-grid {
  position: relative;
  z-index: 1;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.value-card {
  padding: 2rem; border-radius: 20px;
  background: white; border: 1px solid var(--border);
}
.value-card .val-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--green-deep); margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; }

/* ══════════════ SERVICES PAGE ══════════════ */
.services-page-hero {
  background: var(--green-deep); padding: 5rem 5rem 4rem;
  text-align: center;
  margin-top: 0;
}
.services-page-hero .section-tag { color: var(--green-light); }
.services-page-hero .section-title { color: var(--cream); margin: 0 auto 1rem; }
.services-page-hero .section-sub { color: rgba(248,244,238,0.65); margin: 0 auto; text-align: center; }

.services-full { padding: 5rem 5rem 4rem;
width: 100%;
background-image: linear-gradient(rgba(90, 90, 90, 0.716), rgba(0, 0, 0, 0.525)), url('../Pictures/ServiceBg.png');
  background-size: cover;
background-position: center;}
/* Tighten spacing between service title and description */
.services-full .services-sectionn { max-width: 980px; margin: 0 auto; padding: 1rem 0; }
.services-full .service-row { display: flex; gap: 1rem; align-items: flex-start; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.services-full .service-title h2 { margin: 0; font-size: 1.15rem; line-height: 1.2; }
.services-full .service-desc { margin: 0; color: #ffffff; line-height: 1.4; }
.service-full-card {
  display: grid;
  /* fixed icon column, flexible middle content, fixed price column */
  grid-template-columns: 64px 1fr 160px;
  gap: 1.25rem; align-items: center;
  background: white; border-radius: 20px;
  padding: 2rem 2.5rem; border: 1px solid var(--border);
  margin-bottom: 1.5rem; transition: all 0.3s;
}
.service-full-card:hover {
  box-shadow: 0 8px 32px rgba(26,58,42,0.08);
  transform: translateY(-2px);
}
.sfc-icon {
  width: 64px; height: 64px; background: var(--green-mist);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; padding: 0; box-sizing: border-box;
}
/* Font Awesome icon styling inside service feature icon */
.sfc-icon i {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 20px;
  color: var(--green-deep);
  line-height: 1;
}
/* Ensure identical typography spacing inside cards */
.sfc-content h3, .sfc-content p { margin: 0; }

/* Keep price column consistent and center the book button */
.sfc-price { text-align: right; }
.sfc-price a { display: block; }
.sfc-price a > .btn-primary { display: inline-block; margin: 0.6rem 0 0; } /* Reverted to inline-block for desktop */
.sfc-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--green-deep); margin-bottom: 0.4rem;
}
.sfc-content p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }
.sfc-tags { display: flex; gap: 0.5rem; margin-top: 0.8rem; flex-wrap: wrap; }
.sfc-tag {
  background: var(--green-mist); color: var(--green-mid);
  border-radius: 20px; padding: 0.25rem 0.75rem;
  font-size: 0.75rem; font-weight: 500;
}
.sfc-price { text-align: right; white-space: nowrap; }
.price-from { font-size: 0.75rem; color: var(--text-light); }

/* Center on-page buttons without altering price text alignment */
.page .btn-primary,
.page .btn-secondary,
.page a > .btn-primary,
.page a > .btn-secondary {
  /* default (desktop) - keep original flow */
}
.price-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--green-deep); font-weight: 600;
}
.price-period { font-size: 0.75rem; color: var(--text-light); }

/* ── Pricing Table ── */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.pricing-card {
  background: white; border-radius: 24px;
  padding: 2.5rem; border: 1px solid var(--border);
  position: relative; transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,42,0.1); }
.pricing-card.featured { background: var(--green-deep); border-color: var(--green-deep); }
.featured-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  border-radius: 20px; padding: 0.3rem 1rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.pc-name {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem;
}
.pricing-card.featured .pc-name { color: rgba(248,244,238,0.55); }
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 600; color: var(--green-deep);
  line-height: 1; margin-bottom: 0.4rem;
}
.pricing-card.featured .pc-price { color: var(--cream); }
.pc-period { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-card.featured .pc-period { color: rgba(248,244,238,0.5); }
.pc-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
.pricing-card.featured .pc-divider { background: rgba(255,255,255,0.1); }
.pc-features { list-style: none; margin-bottom: 2rem; }
.pc-features li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.87rem; color: var(--text-mid); padding: 0.4rem 0;
}
.pricing-card.featured .pc-features li { color: rgba(248,244,238,0.75); }
.check { color: var(--green-soft); font-size: 0.9rem; }
.pricing-card.featured .check { color: var(--green-light); }
.pc-btn {
  width: 100%; padding: 0.85rem;
  border-radius: 50px; border: 1.5px solid var(--green-pale);
  background: transparent; color: var(--green-deep);
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  transition: all 0.25s; font-family: 'DM Sans', sans-serif;
}
.pc-btn:hover { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); }
.pricing-card.featured .pc-btn { background: var(--cream); color: var(--green-deep); border-color: var(--cream); }
.pricing-card.featured .pc-btn:hover { background: white; }

/* ══════════════ BLOG PAGE ══════════════ */
.blog-hero { padding: 4rem 5rem 3rem; text-align: center; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; padding: 2rem 5rem 5rem;
}
.blog-card {
  background: white; border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  transition: all 0.3s; cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,58,42,0.08); }
.blog-img {
  height: 200px; background: var(--green-mist);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.blog-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,58,42,0.2));
}
.blog-category {
  position: absolute; top: 12px; left: 12px;
  background: var(--green-deep); color: var(--cream);
  border-radius: 20px; padding: 0.25rem 0.75rem;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
}
.blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.75rem; color: var(--text-light); margin-bottom: 0.6rem; }
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--green-deep);
  margin-bottom: 0.6rem; line-height: 1.35;
}
.blog-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1rem; font-size: 0.82rem; color: var(--green-soft); font-weight: 500;
}

/* Resources page styles removed — resources page was deleted */

/* ══════════════ CONTACT PAGE ══════════════ */
.contact-section {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 4rem; padding: 5rem 5rem;
  min-height: calc(100vh - 80px); align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--green-deep); margin-bottom: 1rem; font-weight: 400;
}
.contact-info p { font-size: 0.95rem; color: var(--text-light); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.cd-icon {
  width: 40px; height: 40px; background: var(--green-mist);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.cd-label { font-size: 0.75rem; color: var(--text-light); }
.cd-val { font-size: 0.9rem; color: var(--green-deep); font-weight: 500; }
.booking-card {
  background: white; border-radius: 24px;
  padding: 2.5rem; border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(26,58,42,0.06);
}
.booking-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--green-deep); margin-bottom: 0.4rem;
}
.booking-card .sub { font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem; }

/* =============================================
   pages.css — RESPONSIVE
   ============================================= */

/* ── Tablet ── */
@media (max-width: 1024px) {
  body { margin-top: 0; }
  
  /* About */
  .about-hero { 
    grid-template-columns: 1fr 1fr; 
    gap: 2.5rem; 
    padding: 3rem 2rem; 
    margin-top: 80px; /* ensure fixed header doesn't overlap */
  }
  .about-img-wrap { max-width: 300px; }
  .about-content .section-sub { margin-bottom: 1rem; }
  .qual-list { margin: 1rem 0; }
  .qual-item { padding: 0.6rem 0; font-size: 0.85rem; }
  .credentials-row { margin-top: 1.5rem; gap: 0.6rem; }
  .cred-badge { padding: 0.4rem 0.8rem; font-size: 0.72rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .value-card { padding: 1.5rem; }
  .value-card h3 { font-size: 1.1rem; }
  .value-card p { font-size: 0.8rem; }
  .map-container {
        text-align: center;
        font-family: Arial, sans-serif;
        width: 200px;
        margin: 0 auto;
        padding: 20px;
        border-radius: 30px;
        background-color: #ffffff;
    }
    #d-link{
        display: inline-block;
        background-color: #1a4a83;
        color: white;
        padding: 10px 25px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s ease;
    }

    .map-container h2 {
        color: #1a4a83; /* Matching the blue in your image */
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .map-card {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* Adds that depth effect */
        margin-bottom: 25px;
        line-height: 0; /* Removes bottom gap */
    }

    .directions-btn {
        display: inline-block;
        background-color: #1a4a83;
        color: white;
        padding: 12px 30px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s ease;
    }

    .directions-btn:hover {
        background-color: #12345d;
    }

  /* Services */
  .services-page-hero { padding: 3.5rem 2rem 2.5rem; }
  .services-page-hero .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .services-page-hero .section-sub { font-size: 0.95rem; }
  .services-full { padding: 3rem 2rem; }
  .service-full-card { 
    grid-template-columns: auto 1fr; 
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .sfc-icon { width: 52px; height: 52px; font-size: 1.5rem; }
  .sfc-content h3 { font-size: 1.2rem; }
  .sfc-content p { font-size: 0.82rem; }
  .sfc-price { grid-column: 2; text-align: left; }
  .price-val { font-size: 1.5rem; }
  .pricing-section { padding: 3rem 2rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .pricing-card { padding: 2rem; }
  .pc-price { font-size: 2.5rem; }

  /* Blog */
  .blog-hero { padding: 3rem 2rem 2rem; }
  .blog-grid { 
    grid-template-columns: repeat(2, 1fr); 
    padding: 1.5rem 2rem 3.5rem; 
    gap: 1.5rem; 
  }
  .blog-img { height: 180px; }
  .blog-body { padding: 1.2rem; }
  .blog-card h3 { font-size: 1.1rem; }
  .blog-card p { font-size: 0.8rem; }

  /* Resources styles removed */

  /* Contact */
  .contact-section { 
    gap: 2rem; 
    padding: 3.5rem 2rem; 
  }
  .contact-info h2 { font-size: 2rem; }
  .contact-info p { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .contact-detail { padding: 0.8rem 0; }
  .cd-icon { width: 36px; height: 36px; }
  .cd-label { font-size: 0.7rem; }
  .cd-val { font-size: 0.85rem; }
  .booking-card { padding: 2rem; }
  .booking-card h3 { font-size: 1.6rem; }
  .booking-card .sub { font-size: 0.85rem; margin-bottom: 1.5rem; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  body { margin-top: 0; }
  
  /* About */
  .about-hero {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 1.5rem;
    text-align: center;
    margin-top: 70px; /* push content below mobile header */
  }
  .about-img-wrap { 
    max-width: 260px; 
    margin: 0 auto;
    aspect-ratio: 3/4;
  }
  /* place image above content on small screens */
  .about-img-wrap { order: -1; }
  .about-content .section-sub { font-size: 0.9rem; }
  .qual-list { text-align: left; }
  .qual-item { font-size: 0.85rem; }
  .credentials-row { 
    flex-direction: row; 
    justify-content: center;
    gap: 0.5rem; 
  }
  .cred-badge { padding: 0.35rem 0.7rem; font-size: 0.68rem; }
  .values-section { padding: 2.5rem 1rem; }
  .values-grid { grid-template-columns: 1fr; gap: 1rem; }
  .value-card { padding: 1.2rem; text-align: left; }
  .value-card .val-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
  .value-card h3 { font-size: 1.05rem; }
  .value-card p { font-size: 0.8rem; }

  /* Services */
  .services-page-hero { padding: 2.5rem 1rem 2rem; }
  .services-page-hero .section-tag { font-size: 0.65rem; }
  .services-page-hero .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .services-page-hero .section-sub { font-size: 0.88rem; }
  .services-full { padding: 2rem 1rem; }
  .service-full-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  /* On small screens, stack promo card content and show price panel first */
  .promo-card { display: flex; flex-direction: column; gap: 1rem; }
  .card-price-panel { order: -1; }
  .sfc-price a > .btn-primary { display: block; margin: 0.6rem auto 0; }
  .sfc-icon { 
    width: 44px; 
    height: 44px; 
    font-size: 1.3rem; 
    margin-bottom: 0.3rem;
  }
  .sfc-content h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
  .sfc-content p { font-size: 0.8rem; }
  .sfc-tags { margin-top: 0.5rem; }
  .sfc-tag { padding: 0.2rem 0.6rem; font-size: 0.68rem; }
  .sfc-price { text-align: left; margin-top: 0.5rem; }
  .price-from { font-size: 0.68rem; }
  .price-val { font-size: 1.3rem; }
    .sfc-price a > .btn-primary {
      margin: 0.6rem auto 0; /* Center on small devices */
    }
  .price-period { font-size: 0.68rem; }
  .pricing-section { padding: 2.5rem 1rem; }
  .pricing-grid { 
    grid-template-columns: 1fr; 
    max-width: 380px; 
    margin-left: auto; 
    margin-right: auto; 
    gap: 1rem;
  }
  .pricing-card { padding: 1.5rem; }
  .pc-name { font-size: 0.75rem; margin-bottom: 0.8rem; }
  .pc-price { font-size: 2rem; }
  .pc-period { font-size: 0.75rem; margin-bottom: 1rem; }
  .pc-divider { margin-bottom: 1rem; }
  .pc-features { margin-bottom: 1.5rem; }
  .pc-features li { font-size: 0.8rem; padding: 0.3rem 0; }
  .pc-btn { padding: 0.7rem; font-size: 0.82rem; }

  /* Blog */
  .blog-hero { padding: 2rem 1rem 1.5rem; }
  .blog-grid { 
    grid-template-columns: 1fr; 
    padding: 1rem 1rem 2.5rem; 
    gap: 1rem; 
  }
  .blog-img { height: 160px; font-size: 2.5rem; }
  .blog-category { padding: 0.2rem 0.6rem; font-size: 0.65rem; }
  .blog-body { padding: 1rem; }
  .blog-meta { font-size: 0.68rem; margin-bottom: 0.4rem; }
  .blog-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
  .blog-card p { font-size: 0.78rem; }
  .blog-read-more { font-size: 0.75rem; margin-top: 0.6rem; }

  /* Resources styles removed */
  .resource-card { padding: 1.2rem; }
  .resource-type { 
    padding: 0.2rem 0.6rem; 
    font-size: 0.65rem; 
    margin-bottom: 0.6rem;
  }
  .resource-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
  .resource-card p { font-size: 0.78rem; }
  .resource-btn { 
    margin-top: 1rem; 
    padding: 0.5rem 0.9rem; 
    font-size: 0.75rem; 
  }

  /* Contact */
  .contact-section {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    min-height: auto;
    gap: 1.5rem;
  }
  .contact-info { text-align: center; }
  .contact-info h2 { font-size: 1.8rem; margin-bottom: 0.8rem; }
  .contact-info p { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .contact-detail { justify-content: center; }
  .cd-icon { width: 32px; height: 32px; font-size: 0.9rem; }
  .cd-label { font-size: 0.65rem; }
  .cd-val { font-size: 0.85rem; }
  .booking-card { padding: 1.5rem 1.2rem; }
  .booking-card h3 { font-size: 1.4rem; margin-bottom: 0.3rem; }
  .booking-card .sub { font-size: 0.82rem; margin-bottom: 1.2rem; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  body { margin-top: 0; }
  
  .about-hero { padding: 1.5rem 0.8rem; }

  /* small devices: ensure header doesn't cover hero image */
  .about-hero { margin-top: 70px; }
  .about-img-wrap { max-width: 200px; }
  .about-content .section-sub { font-size: 0.85rem; }
  .qual-item { font-size: 0.8rem; }
  .cred-badge { padding: 0.3rem 0.6rem; font-size: 0.62rem; }
  .values-section { padding: 1.5rem 0.8rem; }
  .value-card { padding: 1rem; }
  
  .services-page-hero { padding: 2rem 0.8rem 1.5rem; }
  .services-full { padding: 1.5rem 0.8rem; }
  .service-full-card { padding: 1rem 0.8rem; }
  .sfc-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .sfc-content h3 { font-size: 1rem; }
  .sfc-content p { font-size: 0.75rem; }
  .pricing-section { padding: 2rem 0.8rem; }
  .pricing-card { padding: 1.2rem; }
  .pc-price { font-size: 1.8rem; }
  
  .blog-hero { padding: 1.5rem 0.8rem 1rem; }
  .blog-grid { padding: 0.8rem 0.8rem 2rem; }
  .blog-img { height: 140px; font-size: 2rem; }
  .blog-body { padding: 0.8rem; }
  .blog-card h3 { font-size: 0.95rem; }
  
  .resources-section { padding: 1.5rem 0.8rem 2rem; }
  .resource-card { padding: 1rem; }
  .resource-card h3 { font-size: 0.95rem; }
  .resource-card p { font-size: 0.75rem; }
  
  .contact-section { padding: 1.5rem 0.8rem; }
  .contact-info h2 { font-size: 1.5rem; }
  .contact-info p { font-size: 0.82rem; }
  .booking-card { padding: 1.2rem 0.8rem; }
  .booking-card h3 { font-size: 1.2rem; }
  .booking-card .sub { font-size: 0.78rem; }
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.services-sectionn {
  background: linear-gradient(135deg, #0f7a5c6f, #1b9b7272);
  padding: 2rem;
  border-radius: 20px;
  color: white;
  max-width: 900px;
  margin: auto;
  margin-bottom: 50px;;
}

.service-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

.service-title h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
}

.service-title span {
  font-size: 1rem;
  opacity: 0.9;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 600px) {
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-title {
    margin-bottom: 0.5rem;
  }
}

.services-headerr {
  text-align: center;
  margin-bottom: 2rem;
}

.services-headerr h1 {
  font-size: 2rem;
  font-weight: bold;
  background: rgba(0,0,0,0.2);
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
}

/* Social connect card (placed under CTAs) */
.social-connect { padding: 2rem 0 3rem; text-align: center; }
.social-card { max-width: 720px; margin: 0 auto; background: white; border-radius: 16px; padding: 1.2rem; border: 1px solid var(--border); }
.social-card-inner h3 { margin: 0 0 0.25rem; font-family: 'Cormorant Garamond', serif; color: var(--green-deep); }
.social-card-inner p { margin: 0 0 0.8rem; color: var(--text-light); }
.social-actions { display: flex; gap: 0.75rem; justify-content: center; }
.social-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 0.9rem; border-radius: 12px; text-decoration: none; color: white; font-weight: 600; }
.social-btn i { font-size: 1.2rem; }
.social-btn span { font-size: 0.95rem; }
.social-btn.instagram { background: linear-gradient(90deg,#f58529,#de1f7a); }
.social-btn.tiktok { background: linear-gradient(90deg,#00f2ea,#000000); }
.social-btn:focus,.social-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }

/* ── Map Section ── */
.map-section {
  padding: 5rem 6rem;
  background: var(--warm-white);
  text-align: center;
}

.map-container {
  margin-top: 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(26,58,42,0.1);
  height: 450px;
  width: 650px;
  justify-content: center;
  justify-self: center;
  background-color: rgba(0, 56, 36, 0.595);
}
@media (max-width: 768px) {
  .map-section { padding: 3rem 1rem; }
  .map-container { height: 350px; border-radius: 16px; margin-top: 1.5rem; }
}