:root {
    --pink: #ff65c3;
    --pink-dark: #e84dab;
    --pink-light: #ffd6ef;
    --pink-pale: #fff0f9;
    --gold: #fad870;
    --gold-dark: #e8c24a;
    --gold-light: #fef6d0;
    --white: #ffffff;
    --dark: #1a0d14;
    --text: #3d1f30;
    --muted: #9b6b85;
    --surface: #fff8fd;
    --border: rgba(255, 101, 195, 0.14);
    --shadow-sm: 0 10px 30px rgba(255, 101, 195, 0.08);
    --shadow-md: 0 18px 44px rgba(255, 101, 195, 0.14);
    --shadow-lg: 0 24px 60px rgba(255, 101, 195, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

main {
    min-height: 60vh;
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--pink-light);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(255, 101, 195, 0.12);
}

.navbar-brand img {
    height: auto;
    width: auto;
    max-height: 59px;
}

.nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 6px 16px !important;
    border-radius: 50px;
    transition: background 0.25s ease, color 0.25s ease;
    font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--pink-pale);
    color: var(--pink) !important;
}

.btn-nav-solid,
.btn-primary-pink,
.btn-gold,
.btn-white-outline {
    text-decoration: none;
}

.btn-nav-solid {
    background: var(--pink);
    color: #fff;
    border-radius: 50px;
    padding: 9px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid var(--pink);
    transition: all 0.25s ease;
}

.btn-nav-solid:hover {
    background: var(--pink-dark);
    border-color: var(--pink-dark);
    color: #fff;
}

.hero,
.page-hero {
    position: relative;
    overflow: hidden;
    background: var(--pink-pale);
}

.hero {
    padding: 96px 0 74px;
}

.page-hero {
    padding: 54px 0 70px;
}

.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 216, 112, 0.32) 0%, transparent 72%);
    top: -160px;
    right: -180px;
    pointer-events: none;
}

.hero::after,
.page-hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 101, 195, 0.18) 0%, transparent 72%);
    bottom: -90px;
    left: -70px;
    pointer-events: none;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pink);
    margin-bottom: 14px;
}

.hero-eyebrow {
    background: var(--gold-light);
    border: 1.5px solid var(--gold);
    border-radius: 50px;
    padding: 6px 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.section-eyebrow-light {
    color: rgba(255, 255, 255, 0.82);
}

.section-eyebrow-light::before,
.section-eyebrow-light::after {
    background: rgba(255, 255, 255, 0.55);
}

.hero h1,
.page-title,
.section-title,
.cta-section h2,
.footer-brand {
    font-family: 'Playfair Display', serif;
}

.hero h1 {
    font-size: clamp(2.45rem, 5.3vw, 4.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--dark);
}

.hero h1 em,
.section-title em {
    font-style: italic;
    color: var(--pink);
}

.hero-sub,
.page-subtitle,
.section-desc,
.info-panel p,
.offer-card p,
.process-card p,
.faq-answer p,
.contact-card p,
.proof-copy p,
.footer-desc,
.footer-service-area {
    color: var(--muted);
}

.hero-sub,
.page-subtitle {
    font-size: 1.05rem;
    max-width: 650px;
    line-height: 1.75;
    margin-top: 16px;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-pink {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 24px rgba(255, 101, 195, 0.35);
}

.btn-primary-pink:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 101, 195, 0.45);
    color: #fff;
}

.btn-outline-text {
    background: transparent;
    color: var(--text);
    border: none;
    padding: 0;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.25s ease;
    text-decoration: none;
}

.btn-outline-text:hover {
    color: var(--pink);
}

.btn-outline-text .play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--pink);
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-text:hover .play-icon {
    background: var(--pink);
    color: #fff;
}

.hero-pills {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 101, 195, 0.12);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.86rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.home-link-cluster {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.home-link-cluster span {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
}

.home-link-cluster a {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 101, 195, 0.14);
    box-shadow: var(--shadow-sm);
    color: var(--pink);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.home-link-cluster a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--pink-dark);
}

.hero-img-wrap,
.page-hero-media {
    position: relative;
}

.hero-img-main {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    height: 460px;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-light) 100%);
    box-shadow: var(--shadow-md);
}

.hero-book-btn {
    position: absolute;
    top: 22px;
    right: -16px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    line-height: 1.2;
    animation: spin 12s linear infinite;
    box-shadow: 0 6px 24px rgba(250, 216, 112, 0.5);
    transition: transform 0.3s ease;
}

.hero-book-btn:hover {
    animation: none;
    transform: scale(1.08);
    color: var(--dark);
}

.hero-book-btn-inner {
    animation: spinReverse 12s linear infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-book-btn-inner i {
    display: block;
    margin-top: 6px;
    font-size: 1rem;
}

.hero-book-btn:hover .hero-book-btn-inner {
    animation: none;
}

.stats-strip {
    background: var(--pink);
    padding: 34px 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 24px 18px;
    height: 100%;
}

.stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: #fff;
    display: block;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: var(--pink-pale);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 620px;
}

.section-desc-wide {
    max-width: none;
}

.service-card,
.offer-card,
.proof-card,
.info-panel,
.process-card,
.contact-card,
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.service-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink-light);
}

.card-media-link {
    display: block;
}

.service-img,
.grid-photo,
.proof-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-img {
    height: 220px;
}

.grid-photo {
    height: 100%;
}

.service-body {
    padding: 24px;
}

.service-tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 12px;
}

.service-card h3,
.offer-card h3,
.proof-card h3,
.info-panel h3,
.process-card h3,
.contact-card h3,
.why-feature-text h3,
.faq-item summary {
    color: var(--dark);
}

.service-card h3,
.offer-card h3,
.proof-card h3,
.process-card h3,
.contact-card h3,
.why-feature-text h3,
.info-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.card-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--pink);
    text-decoration: none;
    transition: gap 0.25s ease;
}

.card-link:hover,
.text-link:hover {
    gap: 12px;
    color: var(--pink-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-img-item {
    border-radius: 20px;
    overflow: hidden;
    min-height: 220px;
    background: var(--surface);
}

.why-img-item.tall {
    grid-row: span 2;
    min-height: 100%;
}

.why-feature {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.why-icon,
.offer-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: var(--pink-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.why-icon i,
.offer-icon i {
    color: var(--pink);
}

.why-feature:hover .why-icon,
.offer-card:hover .offer-icon,
.contact-card:hover .offer-icon {
    background: var(--pink);
    transform: scale(1.06);
}

.why-feature:hover .why-icon i,
.offer-card:hover .offer-icon i,
.contact-card:hover .offer-icon i {
    color: #fff;
}

.why-feature-text p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-strip {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
}

.gallery-strip::-webkit-scrollbar {
    height: 10px;
}

.gallery-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 101, 195, 0.28);
    border-radius: 999px;
}

.gallery-item {
    flex: 0 0 290px;
    scroll-snap-align: start;
}

.gallery-item.feature {
    flex-basis: 360px;
}

.gallery-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.gallery-media {
    border-radius: 24px;
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.gallery-strip-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 16px 8px 0;
}

.gallery-caption span {
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--pink);
}

.gallery-caption strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    line-height: 1.45;
    color: var(--dark);
    transition: color 0.25s ease;
}

.gallery-card-link:hover .gallery-media {
    box-shadow: var(--shadow-lg);
}

.gallery-card-link:hover .gallery-caption strong {
    color: var(--pink-dark);
}

.proof-card {
    border-radius: 26px;
    overflow: hidden;
    height: 100%;
}

.proof-img {
    height: 280px;
}

.proof-copy {
    padding: 24px;
}

.proof-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
}

.proof-copy p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.home-inline-cta {
    margin-top: 34px;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 240, 249, 0.96) 0%, rgba(254, 246, 208, 0.96) 100%);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.home-inline-cta p,
.home-proof-note {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.home-proof-note {
    margin-top: 18px;
    max-width: 720px;
}

.home-support-stack {
    display: grid;
    gap: 18px;
}

.home-mini-panel {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-radius: 24px;
    padding: 24px 26px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.home-mini-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.home-mini-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.home-v1 .hero {
    padding-top: 94px;
    padding-bottom: 82px;
}

.home-v1 .hero-sub {
    max-width: 520px;
}

.home-v1 .section-title,
.home-v1 .section-desc {
    max-width: 640px;
}

.home-v1 .home-gallery .section-desc {
    max-width: 520px;
}

.home-v1 .home-stats-strip {
    box-shadow: inset 0 14px 40px rgba(0, 0, 0, 0.06);
}

.home-v1 .home-why .section-title,
.home-v1 .home-support .section-title,
.home-v1 .home-faq .section-title {
    max-width: none;
}

.home-v1 .home-gallery .section-title,
.home-v1 .home-services .section-title,
.home-v1 .home-process .section-title {
    margin-left: auto;
    margin-right: auto;
}

.home-v1 .process-card,
.home-v1 .info-panel,
.home-v1 .home-mini-panel,
.home-v1 .faq-item {
    border-color: rgba(255, 101, 195, 0.16);
}

.coverage-chips {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.coverage-chips span {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.info-panel,
.contact-card,
.offer-card,
.process-card {
    border-radius: 24px;
    padding: 28px;
    height: 100%;
}

.sticky-panel {
    position: sticky;
    top: 110px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text);
}

.check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--pink);
}

.panel-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.panel-actions-column {
    flex-direction: column;
    align-items: flex-start;
}

.process-grid {
    align-items: stretch;
}

.process-card {
    text-align: left;
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 34px;
    border-radius: 999px;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 0 14px;
}

.breadcrumb-nav {
    margin-bottom: 24px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
}

.breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: rgba(61, 31, 48, 0.4);
}

.breadcrumb-list a {
    color: var(--pink);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--pink-dark);
}

.page-title {
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
}

.content-stack {
    margin-bottom: 10px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--pink);
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    padding: 0 26px 22px;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
}

.contact-grid .card-link {
    margin-top: 18px;
}

.cta-section {
    background: linear-gradient(135deg, var(--pink) 0%, #e84dab 50%, #c73897 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(250, 216, 112, 0.18);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    bottom: -100px;
    left: 60px;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    font-weight: 700;
}

.cta-copy {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.05rem;
    line-height: 1.75;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 8px 28px rgba(250, 216, 112, 0.4);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(250, 216, 112, 0.5);
    color: var(--dark);
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.footer-brand {
    color: var(--pink);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 12px;
    max-width: 320px;
}

.footer-service-area {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.58);
}

.footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-static {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
    color: var(--pink);
    padding-left: 4px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-btn:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
    padding-top: 24px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.46);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom a {
    color: var(--pink);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #eb51af;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    transform: translateY(-3px);
}

.reveal {
    opacity: 1;
    transform: none;
}

.js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media (max-width: 1199px) {
    .proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item.feature {
        flex-basis: 320px;
    }
}

@media (max-width: 991px) {
    .hero,
    .page-hero {
        padding-top: 56px;
        padding-bottom: 54px;
    }

    .hero-img-wrap,
    .page-hero-media {
        margin-top: 18px;
    }

    .hero-book-btn {
        right: 8px;
    }

    .sticky-panel {
        position: static;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-inline-cta {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 74px 0;
    }

    .hero h1,
    .page-title {
        font-size: 2.2rem;
    }

    .hero-img-main {
        height: 360px;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-img-item.tall,
    .why-img-item {
        min-height: 220px;
    }

    .panel-actions-column,
    .panel-actions {
        align-items: stretch;
    }

    .panel-actions .btn-primary-pink,
    .panel-actions .text-link {
        width: 100%;
        justify-content: center;
    }

    .gallery-item,
    .gallery-item.feature {
        flex-basis: 78vw;
    }

    .gallery-strip-img {
        height: 320px;
    }

    .home-inline-cta,
    .home-mini-panel {
        padding: 22px;
    }

    .footer {
        text-align: center;
    }

    .footer-desc,
    .footer-service-area {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .navbar-brand img {
        max-height: 49px;
    }

    .hero-pills {
        gap: 8px;
    }

    .home-link-cluster {
        align-items: stretch;
    }

    .home-link-cluster span {
        width: 100%;
        text-align: center;
    }

    .home-link-cluster a,
    .hero-pill,
    .coverage-chips span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-book-btn {
        width: 82px;
        height: 82px;
        top: 14px;
    }

    .gallery-item,
    .gallery-item.feature {
        flex-basis: 84vw;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
}
