/*
Theme Name: Heloame Cleaning Services
Theme URI: https://heloamecleaning.com
Description: Custom theme for Heloame Cleaning Services
Version: 1.0
Author: Heloame Cleaning Services
*/

/* =========================================================
   HELOAME — style.css
   ========================================================= */

/* ---------------------------------------------------------
   1. CSS Variables
   --------------------------------------------------------- */
:root {
  --ink: #000000;
  --white: #ffffff;
  --light: #eeeeee;
  --graphite: #404040;
  --muted: #737373;
  --gold: #bda462;
  --gold-dark: #a68f52;
  --border: #e5e5e5;
  --container: 1200px;
  --font: 'Montserrat', sans-serif;
  --radius-btn: 4px;
  --radius-card: 8px;
  --radius-input: 6px;
  --transition: 0.25s ease;
  --shadow-card: 0 8px 24px rgba(0,0,0,0.08);
}

/* ---------------------------------------------------------
   2. Reset & Base
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 89px; /* fallback for fixed header; refined by JS to actual header height */
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: var(--font); }

/* ---------------------------------------------------------
   3. Utilities
   --------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-tag {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-header { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-header--light .section-title,
.section-header--light .section-subtitle { color: var(--white); }

.section-title {
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--graphite);
  max-width: 600px;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }

.btn-submit { width: 100%; background: var(--gold); color: var(--ink); padding: 16px; }
.btn-submit:hover { background: var(--gold-dark); }

/* ---------------------------------------------------------
   4. Header
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 8px;
}

.site-logo img { height: 72px; width: auto; }

.primary-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--light);
}
.primary-nav .nav-list a:hover { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone { font-size: 0.9375rem; font-weight: 600; color: var(--light); display: inline-flex; align-items: center; gap: 8px; }
.header-phone:hover { color: var(--gold); }
.header-actions .btn-primary { padding: 13px 22px; font-size: 0.875rem; }

.social-links { display: flex; align-items: center; gap: 14px; }
.social-links__item { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; color: var(--light); transition: color var(--transition); }
.social-links__item svg { width: 100%; height: 100%; }
.social-links__item:hover { color: var(--gold); }

.header-actions .social-links,
.hero__ctas .social-links { gap: 12px; }
.header-actions .social-links .social-links__item,
.hero__ctas .social-links .social-links__item {
  width: 44px;
  height: 44px;
  padding: 11px;
  color: var(--white);
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--white);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.header-actions .social-links .social-links__item:hover,
.hero__ctas .social-links .social-links__item:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }

.social-links--footer .social-links__item { color: var(--white); }
.social-links--footer .social-links__item:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-close { display: none; }

/* ---------------------------------------------------------
   5. Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }

.hero__content { position: relative; z-index: 1; max-width: 760px; padding-block: 80px; }
.hero__eyebrow { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); text-transform: uppercase; margin-bottom: 22px; }
.hero__title { font-size: 3.875rem; font-weight: 700; line-height: 1.06; color: var(--white); margin-bottom: 22px; }
.hero__subtitle { font-size: 1.1875rem; line-height: 1.5; color: var(--white); max-width: 600px; margin-bottom: 22px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------------------------------------------------------
   6. Services
   --------------------------------------------------------- */
.services { padding-block: 64px; }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.service-card {
  border: 1px solid var(--light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-card__image { height: 190px; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.service-card__title { font-size: 1.1875rem; font-weight: 600; color: var(--ink); }
.service-card__desc { font-size: 0.90625rem; color: var(--graphite); line-height: 1.5; }
.service-card__link { font-size: 0.875rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.service-card__link:hover { color: var(--gold-dark); }

/* ---------------------------------------------------------
   7. About
   --------------------------------------------------------- */
.about { background: var(--light); padding-block: 64px; }
.about__inner { display: flex; align-items: center; gap: 64px; }
.about__image { flex-shrink: 0; width: 540px; max-width: 46%; border-radius: var(--radius-card); overflow: hidden; }
.about__image img { width: 100%; height: 450px; object-fit: cover; }
.about__text { flex: 1; display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.about__title { font-size: 2.125rem; font-weight: 700; line-height: 1.22; color: var(--ink); }
.about__desc { font-size: 1.0625rem; line-height: 1.65; color: var(--graphite); }

.stats { display: flex; gap: 44px; }
.stat__number { font-size: 2rem; font-weight: 700; color: var(--gold); }
.stat__label { font-size: 0.8125rem; color: var(--graphite); max-width: 120px; line-height: 1.35; }

/* ---------------------------------------------------------
   8. Why Choose Us
   --------------------------------------------------------- */
.why-us { background: var(--ink); padding-block: 64px; }
.why-us__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-item__number { font-size: 1.625rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.why-item__title { font-size: 1.125rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.why-item__desc { font-size: 0.875rem; color: var(--white); line-height: 1.5; }

/* ---------------------------------------------------------
   9. Gallery
   --------------------------------------------------------- */
.gallery { padding-block: 64px; }

.gallery__slider { position: relative; }
.gallery__viewport { overflow: hidden; transition: height 0.4s ease; }
.gallery__track { display: flex; align-items: flex-start; transition: transform 0.4s ease; }
.gallery__page { flex: 0 0 100%; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; gap: 20px; }
.gallery__item { border-radius: var(--radius-card); overflow: hidden; height: 250px; cursor: pointer; position: relative; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.gallery__item:hover img { transform: scale(1.05); }

.gallery__nav { display: flex; justify-content: center; gap: 16px; margin-top: 28px; }
.gallery__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background var(--transition), color var(--transition), border-color var(--transition); }
.gallery__arrow:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.gallery__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.gallery__arrow:disabled:hover { background: var(--white); color: var(--ink); border-color: var(--border); }

#gallery-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92); display: none; }
#gallery-lightbox.is-open { display: block; }
.gallery-lightbox__scroller {
  height: 100%;
  width: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-lightbox__scroller::-webkit-scrollbar { display: none; }
.gallery-lightbox__slide { flex: 0 0 100%; scroll-snap-align: center; display: flex; align-items: center; justify-content: center; padding: 90px 70px; box-sizing: border-box; }
.gallery-lightbox__slide img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--radius-card); }
#gallery-lightbox__close { position: fixed; top: 24px; right: 32px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; z-index: 1; }
.gallery-lb__prev, .gallery-lb__next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); color: var(--white); border: none; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.25rem; z-index: 1; }
.gallery-lb__prev { left: 24px; } .gallery-lb__next { right: 24px; }
.gallery-lb__prev:disabled, .gallery-lb__next:disabled { opacity: 0.3; cursor: not-allowed; }

/* ---------------------------------------------------------
   10. Reviews
   --------------------------------------------------------- */
.reviews { background: #f7f7f7; border-top: 1px solid var(--border); padding-block: 72px; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: transform var(--transition), box-shadow var(--transition); }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.review-card__stars { color: var(--gold); font-weight: 700; font-size: 0.875rem; }
.review-card__text { font-size: 0.875rem; line-height: 1.55; color: var(--graphite); }
.review-card__divider { width: 40px; height: 1px; background: var(--border); }
.review-card__name { font-size: 0.8125rem; font-weight: 600; color: var(--ink); }
.review-card__meta { font-size: 0.6875rem; color: var(--muted); }

/* ---------------------------------------------------------
   11. Follow Us
   --------------------------------------------------------- */

   
.follow-section {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background: var(--color-white);
}

.follow-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.follow-label {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
  text-align: center;
}
/* ig-frame */

.ig-iframe iframe{
    display: flex;
    width: 900px; 
    height: 760px;
    margin: auto;
}
@media screen and (max-width:980px) {
    .ig-iframe iframe{
        max-width: 500px; 
        height: 495px;
    }
    .follow-container{
        padding: 0 !important;
    }
}
@media screen and (max-width:580px) {
    .ig-iframe iframe{
        width: 390px !important;
        height: 410px;
    }    
}

/* ---------------------------------------------------------
   12. Contact
   --------------------------------------------------------- */
.contact { background: var(--light); padding-block: 64px; }
.contact__body { display: flex; gap: 56px; align-items: flex-start; }
.contact__info { flex: 1; display: flex; flex-direction: column; gap: 26px; }
.contact__info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; display: block; }
.contact__info-value { font-size: 1.0625rem; font-weight: 500; color: var(--ink); }
.contact__areas-list { font-size: 0.875rem; line-height: 1.7; color: var(--graphite); }

.quote-form { flex: 1; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-card); padding: 34px; display: flex; flex-direction: column; gap: 18px; }
.quote-form__title { font-size: 1.3125rem; font-weight: 600; color: var(--ink); }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.8125rem; font-weight: 500; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: var(--radius-input);
  padding: 13px 14px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input.field-error, .form-field select.field-error, .form-field textarea.field-error { border-color: #c0392b; }
.form-row { display: flex; gap: 18px; }
.form-row .form-field { flex: 1; min-width: 0; }
.form-field__pre-selected { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold); margin-left: 6px; }

/* ---------------------------------------------------------
   13. Areas We Serve
   --------------------------------------------------------- */
.areas { background: var(--ink); padding-block: 64px; }
.areas__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; font-size: 0.9375rem; color: var(--white); margin-bottom: 44px; }
.areas__grid ul { display: flex; flex-direction: column; gap: 11px; }
.areas__map-placeholder {
  border-radius: 10px;
  height: 240px;
  overflow: hidden;
  margin-bottom: 44px;
}
.areas__map-placeholder iframe { display: block; width: 100%; height: 100%; border: none; }
.areas__note { text-align: center; font-size: 0.875rem; font-weight: 600; color: var(--gold); }

/* ---------------------------------------------------------
   14. Footer
   --------------------------------------------------------- */
.site-footer { background: var(--ink); padding: 68px 0 40px; }
.footer__cols { display: flex; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.footer__brand { max-width: 320px; display: flex; flex-direction: column; gap: 16px; }
.footer__brand img { width: 211px; max-width: 100%; height: auto; aspect-ratio: 211 / 184; object-fit: contain; object-position: left; }
.footer__brand p { font-size: 0.875rem; color: var(--white); line-height: 1.6; }
.footer__brand-phone { font-size: 0.9375rem; font-weight: 500; color: var(--white); }
.footer__col { display: flex; flex-direction: column; gap: 13px; }
.footer__col-heading { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); }
.footer__col a, .footer__col span { font-size: 0.875rem; color: var(--white); }
.footer__col a:hover { color: var(--gold); }
.footer__divider { height: 1px; background: var(--white); opacity: 0.15; margin-bottom: 20px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.8125rem; color: var(--white); }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--white); }
.footer__legal a:hover { color: var(--gold); }

/* ---------------------------------------------------------
   15. Legal Pages (Privacy, Cookies, Terms)
   --------------------------------------------------------- */
.legal-page { padding-block: 64px; }
.legal-page .container { max-width: 820px; }
.legal-page__title { font-size: 2.375rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.legal-page__updated { font-size: 0.875rem; color: var(--muted); margin-bottom: 36px; }
.legal-page__content h2 { font-size: 1.5rem; font-weight: 700; color: var(--ink); margin-top: 40px; margin-bottom: 14px; }
.legal-page__content h3 { font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-top: 24px; margin-bottom: 10px; }
.legal-page__content p { font-size: 0.9375rem; line-height: 1.7; color: var(--graphite); margin-bottom: 14px; }
.legal-page__content ul { margin: 0 0 14px 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-page__content li { font-size: 0.9375rem; line-height: 1.7; color: var(--graphite); }
.legal-page__content a { color: var(--gold-dark); text-decoration: underline; word-break: break-word; }
.legal-page__content a:hover { color: var(--gold); }
.legal-page__content strong { color: var(--ink); }

/* ---------------------------------------------------------
   16. Service Pages (shared with template-parts/service-common)
   --------------------------------------------------------- */
.service-breadcrumb { background: var(--light); padding-block: 16px; font-size: 0.8125rem; font-weight: 500; color: var(--graphite); }
.service-breadcrumb a:hover { color: var(--gold); }
.service-breadcrumb__sep { margin-inline: 8px; }
.service-breadcrumb__current { color: var(--gold); }

.service-hero { background: var(--white); padding-block: 56px; }
.service-hero__inner { display: flex; align-items: center; gap: 72px; }
.service-hero__text { flex: 1; }
.service-hero__title { font-size: 2.5rem; font-weight: 700; color: var(--ink); margin-bottom: 18px; line-height: 1.2; }
.service-hero__desc { font-size: 1rem; color: var(--graphite); line-height: 1.6; margin-bottom: 24px; }
.service-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.service-hero__pill { font-size: 0.8125rem; font-weight: 500; color: var(--graphite); background: var(--white); border: 1px solid var(--light); padding: 7px 14px; border-radius: 100px; }
.service-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.service-hero__ctas .btn-outline { color: var(--ink); border-color: var(--ink); }
.service-hero__ctas .btn-outline:hover { background: var(--ink); color: var(--white); }
.service-hero__image { flex: 1; border-radius: var(--radius-card); overflow: hidden; }
.service-hero__image img { width: 100%; height: 100%; object-fit: cover; }

.service-includes { background: var(--light); padding-block: 64px; }
.how-it-works, .service-plans, .other-services { padding-block: 64px; }
.checklist-grid, .other-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.checklist-card { background: var(--white); border: 1px solid var(--light); border-radius: var(--radius-card); padding: 28px; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.checklist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.checklist-card__title { font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.checklist-card__divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.checklist-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--graphite); margin-bottom: 10px; }
.checklist-item__icon { color: var(--gold); font-weight: 700; }

.how-it-works { background: var(--white); }
.how-it-works__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-step__number { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 100px; background: var(--gold); font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.how-step__title { font-size: 1.0625rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.how-step__desc { font-size: 0.875rem; color: var(--graphite); line-height: 1.5; }

.service-plans { background: var(--light); }
.service-plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-plans__grid--four { grid-template-columns: repeat(4, 1fr); }
.plan-card { background: var(--white); border: 1px solid var(--light); border-radius: 10px; padding: 32px 30px; position: relative; transition: transform var(--transition), box-shadow var(--transition); }
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.plan-card--featured { border: 2px solid var(--gold); box-shadow: var(--shadow-card); }
.plan-card--featured:hover { transform: translateY(-4px); }
.plan-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.plan-card__header .plan-card__title { margin-bottom: 0; }
.plan-card__badge { background: var(--gold); color: var(--ink); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.02em; padding: 5px 10px; border-radius: 100px; white-space: nowrap; }
.plan-card__title { font-size: 1.375rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.plan-card__best-for-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.plan-card__best-for { font-size: 0.875rem; color: var(--graphite); margin-bottom: 16px; }
.plan-card__divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.plan-card__list { margin-bottom: 24px; }
.plan-card__item { font-size: 0.875rem; color: var(--graphite); padding-left: 18px; position: relative; margin-bottom: 8px; }
.plan-card__item::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.plan-card__cta { display: flex; align-items: center; justify-content: center; width: 100%; padding: 14px; border-radius: 6px; font-size: 0.9375rem; font-weight: 600; }
.plan-card__cta--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.plan-card__cta--outline:hover { background: var(--ink); color: var(--white); }
.plan-card__cta--solid { background: var(--gold); color: var(--ink); border: none; }
.plan-card__cta--solid:hover { background: var(--gold-dark); }

.other-services { background: var(--white); }
.other-service-card { background: var(--white); border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--light); transition: transform var(--transition), box-shadow var(--transition); }
.other-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.other-service-card__image { height: 180px; overflow: hidden; }
.other-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.other-service-card:hover .other-service-card__image img { transform: scale(1.06); }
.other-service-card__body { padding: 22px; }
.other-service-card__title { font-size: 1.1875rem; font-weight: 600; color: var(--ink); margin-bottom: 9px; }
.other-service-card__desc { font-size: 0.90625rem; color: var(--graphite); margin-bottom: 12px; }
.other-service-card__link { font-size: 0.875rem; font-weight: 600; color: var(--gold); transition: color var(--transition); }
.other-service-card__link:hover { color: var(--gold-dark); }
.other-services__cta { text-align: center; margin-top: 40px; }
.other-services__cta .btn-outline { color: var(--ink); border-color: var(--ink); }
.other-services__cta .btn-outline:hover { background: var(--ink); color: var(--white); }

.contact-service { background: var(--light); padding-block: 64px; }
.contact-service__columns { display: flex; gap: 56px; align-items: flex-start; }
.contact-service__sidebar { flex: 1; display: flex; flex-direction: column; gap: 22px; padding-top: 6px; }
.why-sidebar__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0; color: var(--ink); }
.why-sidebar__item { font-size: 1rem; color: var(--graphite); padding-left: 24px; position: relative; margin-bottom: 13px; }
.why-sidebar__item::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 600; }
.contact-block__label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 5px; }
.contact-block__value { font-size: 1.0625rem; font-weight: 500; color: var(--ink); }
.form-field--selected select { background: var(--white); border: 1.5px solid var(--gold); }

.policies { padding-block: 64px; background: var(--white); }
.policies__accordion { max-width: 920px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.policies__item { background: var(--light); border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--light); transition: border-color var(--transition), box-shadow var(--transition); }
.policies__item:hover { border-color: var(--gold); box-shadow: var(--shadow-card); }
.policies__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; background: none; border: none; font-size: 1rem; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left; transition: color var(--transition); }
.policies__item:hover .policies__trigger { color: var(--gold-dark); }
.policies__icon { color: var(--gold); font-size: 1.375rem; line-height: 1; }
.policies__body { display: none; padding: 0 26px 22px; font-size: 0.9375rem; color: var(--graphite); line-height: 1.62; }
.policies__item.is-open .policies__body { display: block; }

/* ---------------------------------------------------------
   Thank You Page
   --------------------------------------------------------- */
.thank-you { background: var(--light); min-height: calc(100vh - 89px); display: flex; align-items: center; padding-block: 64px; }
.thank-you .container { width: 100%; }
.thank-you__inner { max-width: 560px; margin-inline: auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.thank-you__inner .btn-primary { width: 100%; max-width: 280px; }
.thank-you__icon { display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 100px; background: var(--gold); color: var(--ink); font-size: 1.75rem; font-weight: 700; margin-bottom: 24px; }
.thank-you__title { font-size: 2.375rem; font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 16px; }
.thank-you__desc { font-size: 1.0625rem; color: var(--graphite); line-height: 1.6; margin-bottom: 32px; }
.thank-you__redirect { font-size: 0.875rem; color: var(--muted); margin-top: 20px; }
