/* ── Service Single Page Styles ──────────────────────────────────────────────
   Loaded on page-service-single.php via is_page_template() conditional.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Shared inner-page utilities ───────────────────────────────────────────── */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ── Page Hero ─────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, var(--navy-mid) 100%);
    padding: 72px 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .pill-label { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.25); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 20px;
}
.page-hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.7);
    font-style: italic;
    margin: 0 0 28px;
}
.page-hero-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto 36px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* Hero CTA buttons */
.svc-hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.svc-btn-gold {
    padding: 15px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.svc-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.35);
}
.svc-btn-outline {
    padding: 14px 28px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: border-color 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.svc-btn-outline:hover {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.08);
}

/* ══ OVERVIEW ════════════════════════════════════════════════════════════ */
.svc-overview {
    padding: 96px 0 80px;
    background: var(--white);
}
.svc-overview-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 72px;
    align-items: start;
}
.svc-overview-text .pill-label { margin-bottom: 16px; }
.svc-overview-para {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
    margin: 0 0 18px;
}
.svc-overview-audience {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 2px;
    padding: 18px 20px;
    margin-top: 28px;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
}
.svc-overview-audience strong {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* Inclusions grid */
.svc-inclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.svc-inc-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 22px 20px;
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.svc-inc-card:hover {
    border-color: rgba(212,175,55,0.35);
    transform: translateY(-2px);
}
.svc-inc-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 14px;
}
.svc-inc-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
}
.svc-inc-desc {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-body);
    margin: 0;
}

/* ══ PRICING ════════════════════════════════════════════════════════════ */
.svc-pricing {
    padding: 80px 0 96px;
    background: var(--off-white);
}
.svc-pricing-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}
.svc-pricing-subtitle {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.pricing-table-wrap { margin-bottom: 40px; }
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.pricing-table thead tr {
    background: var(--navy-dark);
    color: var(--white);
}
.pricing-table th {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-align: left;
}
.pricing-table td {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-body);
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: var(--off-white); }
.pricing-table tbody tr:hover { background: rgba(212,175,55,0.05); }
.pricing-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}
.pt-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
}

/* Add-ons */
.pricing-addons {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 32px;
    margin-bottom: 28px;
}
.pricing-addons-title {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 16px;
}
.pricing-addons-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pricing-addons-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-body);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.pricing-addons-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.pricing-addons-list .addon-price {
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}

.pricing-note {
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 4px;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-note svg { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ══ HOW IT WORKS ═══════════════════════════════════════════════════════ */
.svc-how-works {
    padding: 80px 0;
    background: var(--navy-dark);
}
.svc-how-works-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
}
.svc-how-works-header .section-heading { color: var(--white); }
.svc-how-works-header .section-sub { color: rgba(255,255,255,0.55); }
.svc-how-works-header .pill-label {
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.25);
}
.svc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}
.svc-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.666% + 20px);
    right: calc(16.666% + 20px);
    height: 1px;
    background: rgba(212,175,55,0.25);
    pointer-events: none;
}
.svc-step {
    text-align: center;
    padding: 0 32px;
    position: relative;
}
.svc-step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212,175,55,0.1);
    border: 2px solid rgba(212,175,55,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}
.svc-step-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px;
}
.svc-step-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

/* ══ FLEET ══════════════════════════════════════════════════════════════ */
.svc-fleet {
    padding: 80px 0 96px;
    background: var(--white);
}
.svc-fleet-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.svc-fleet-link {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.svc-fleet-link:hover { color: var(--gold); }
.svc-fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* fleet card — mirrors fleet page fp-card */
.fp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.fp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.35);
}
.fp-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--navy);
}
.fp-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.fp-card:hover .fp-img img { transform: scale(1.04); }
.fp-img-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    color: rgba(255,255,255,0.25);
    font-family: var(--font-body);
    font-size: 13px;
}
.fp-img-placeholder svg { opacity: 0.3; }
.fp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(26,58,82,0.9);
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
    border: 1px solid rgba(212,175,55,0.3);
    backdrop-filter: blur(4px);
}
.fp-info {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.fp-name {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px;
}
.fp-excerpt {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0 0 16px;
    flex: 1;
}
.fp-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: var(--off-white);
    border-radius: 2px;
    border: 1px solid var(--border);
    margin-bottom: 18px;
}
.fp-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
}
.fp-spec svg { color: var(--gold); flex-shrink: 0; }
.fp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
}
.fp-rate-from {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.fp-rate-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.fp-rate-price span {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    color: var(--text-muted);
}
.fp-book {
    padding: 9px 16px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
}
.fp-book:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ══ WHY SWAN ═══════════════════════════════════════════════════════════ */
.svc-why {
    padding: 80px 0;
    background: var(--off-white);
}
.svc-why-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
}
.svc-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.svc-usp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}
.svc-usp-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.3);
}
.svc-usp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin: 0 auto 20px;
}
.svc-usp-title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px;
}
.svc-usp-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0;
}

/* ══ TESTIMONIALS ═══════════════════════════════════════════════════════ */
.svc-testimonials {
    padding: 80px 0;
    background: var(--white);
}
.svc-testi-header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 48px;
}
.svc-testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.svc-testi-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 36px 32px;
    position: relative;
}
.svc-testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}
.svc-testi-stars svg { color: var(--gold); }
.svc-testi-quote {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    font-style: italic;
    margin: 0 0 24px;
}
.svc-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.svc-testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.svc-testi-name {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.svc-testi-meta {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ══ FAQ ════════════════════════════════════════════════════════════════ */
.svc-faq {
    padding: 80px 0 96px;
    background: var(--off-white);
}
.svc-faq-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
}
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
    border-radius: 4px 4px 0 0;
}
.faq-item:last-child { border-radius: 0 0 4px 4px; }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    list-style: none;
    user-select: none;
    transition: color 0.2s, background 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { display: none; }
.faq-q:hover { color: var(--navy); background: var(--off-white); }
.faq-item[open] > .faq-q { color: var(--navy); border-bottom: 1px solid var(--border); }
.faq-chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
    margin-top: -4px;
}
.faq-item[open] > .faq-q .faq-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}
.faq-a {
    padding: 20px 28px 24px;
}
.faq-a p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-body);
    margin: 0;
}

/* ══ BOTTOM CTA ═════════════════════════════════════════════════════════ */
.svc-bottom-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.svc-bottom-cta::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.svc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    position: relative;
}
.svc-cta-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 1.15;
}
.svc-cta-sub {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
    margin: 0;
}
.svc-cta-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.svc-cta-wa {
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.svc-cta-wa:hover { background: #1ebe5c; }
.svc-cta-call {
    padding: 13px 22px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
}
.svc-cta-call:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.06);
}

/* ══ RESPONSIVE ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .svc-fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .svc-overview-inner { grid-template-columns: 1fr; gap: 48px; }
    .svc-inclusions-col { max-width: 520px; }
    .svc-usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
    .svc-steps::before { display: none; }
    .svc-steps { grid-template-columns: 1fr; gap: 32px; }
    .svc-step { padding: 0; text-align: left; display: flex; align-items: flex-start; gap: 20px; }
    .svc-step-num { flex-shrink: 0; width: 56px; height: 56px; font-size: 22px; margin: 0; }
    .svc-testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .svc-overview, .svc-pricing, .svc-how-works, .svc-fleet,
    .svc-why, .svc-testimonials, .svc-faq, .svc-bottom-cta { padding: 60px 0; }
    .svc-fleet-grid { grid-template-columns: 1fr; }
    .svc-usp-grid { grid-template-columns: 1fr; }
    .svc-fleet-header { flex-direction: column; align-items: flex-start; }
    .svc-cta-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
    .svc-cta-btns { width: 100%; flex-direction: column; }
    .svc-btn-gold, .svc-cta-wa, .svc-cta-call { width: 100%; justify-content: center; }
    .pricing-table th, .pricing-table td { padding: 12px 14px; font-size: 13px; }
    .page-hero { padding: 48px 0 48px; }
    .svc-hero-btns { flex-direction: column; align-items: stretch; }
    .svc-btn-outline { justify-content: center; }
    .faq-q { padding: 18px 20px; font-size: 15px; }
    .faq-a { padding: 16px 20px 20px; }
}
@media (max-width: 480px) {
    .svc-inclusions { grid-template-columns: 1fr; }
    .pricing-table { font-size: 12px; }
    .pricing-table th, .pricing-table td { padding: 10px 12px; }
}
