:root {
    --primary: #6d28d9;
    --primary-hover: #5b21b6;
    --secondary: #a855f7;
    --accent: #e9d5ff;
    --accent-strong: #c084fc;
    --bg-page: #f6f1ff;
    --bg-surface: #ffffff;
    --bg-surface-soft: rgba(255, 255, 255, 0.72);
    --text-main: #1f1633;
    --text-muted: #675a81;
    --border-color: rgba(138, 92, 246, 0.16);
    --shadow-sm: 0 14px 30px rgba(76, 29, 149, 0.08);
    --shadow-md: 0 24px 50px rgba(76, 29, 149, 0.12);
    --shadow-lg: 0 30px 80px rgba(76, 29, 149, 0.18);
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --max-width: 1280px;
    --header-height: 78px;
    --content-width: 820px;
    --sidebar-width: 320px;
    --gutter: clamp(22px, 4vw, 40px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(216, 180, 254, 0.42), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(168, 85, 247, 0.18), transparent 20%),
        linear-gradient(180deg, #fcfaff 0%, #f6f1ff 38%, #fff8fe 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(18px);
    opacity: 0.34;
}

body::before {
    top: -110px;
    left: -80px;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.62), transparent 68%);
}

body::after {
    right: -120px;
    bottom: 10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.34), transparent 70%);
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

a:hover {
    color: var(--primary-hover);
}

button,
.btn-primary,
.btn-secondary,
.btn-highlight {
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    text-align: center;
    border: none;
}

.btn-primary,
.btn-secondary {
    min-height: 52px;
    padding: 12px 22px;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 18px 30px rgba(109, 40, 217, 0.28);
}

.btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(109, 40, 217, 0.34);
}

.btn-secondary {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(139, 92, 246, 0.18);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(139, 92, 246, 0.35);
}

.btn-full {
    width: 100%;
}

.btn-icon {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: min(var(--max-width), calc(100% - (var(--gutter) * 2)));
    margin: 0 auto;
}

.text-highlight {
    color: var(--accent);
}

.bg-light {
    background: rgba(255, 255, 255, 0.64);
}

.bg-secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(245, 238, 255, 0.94));
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #f3e8ff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-centered {
    color: var(--primary);
    background: rgba(233, 213, 255, 0.7);
    border-color: rgba(168, 85, 247, 0.15);
}

.glass-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 60px rgba(17, 24, 39, 0.16);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(76, 29, 149, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 18px;
    padding: 0 4px;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--primary);
    flex-shrink: 0;
}

.site-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    padding: 10px 14px;
    color: var(--text-main);
    font-weight: 600;
    border-radius: 999px;
}

.site-nav a:hover {
    color: var(--primary);
    background: rgba(233, 213, 255, 0.56);
}

.site-nav .btn-highlight {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 12px 24px rgba(109, 40, 217, 0.24);
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(139, 92, 246, 0.14);
    color: var(--text-main);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.2rem;
}

.layout-grid {
    display: grid;
    grid-template-columns: minmax(0, var(--content-width)) minmax(280px, var(--sidebar-width));
    gap: 28px;
    align-items: start;
    padding: 34px 0 70px;
}

.content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section {
    position: relative;
    padding: 38px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(233, 213, 255, 0.48), transparent 72%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 34px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    color: var(--text-main);
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 640px;
    margin: 0 auto;
}

.hero-panel {
    padding: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(232, 121, 249, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(49, 20, 101, 0.94), rgba(109, 40, 217, 0.88)),
        url('IMAGES/House Cleaning.png') center/cover;
    overflow: hidden;
    min-height: 620px;
}

.hero-panel::before {
    display: none;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: stretch;
    padding: 52px;
    min-height: 620px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    color: #fff;
    max-width: 620px;
}

.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.hero-tagline {
    max-width: 560px;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.hero-btn {
    min-width: 200px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-spotlight {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.spotlight-card {
    width: 100%;
    padding: 28px;
    border-radius: 30px;
    color: #fff;
    transform: translateY(24px);
}

.spotlight-label {
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.spotlight-stat {
    display: grid;
    gap: 4px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spotlight-stat strong {
    font-size: 3rem;
    line-height: 0.9;
}

.spotlight-stat span {
    color: rgba(255, 255, 255, 0.78);
}

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

.spotlight-grid div {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-grid strong {
    font-size: 1rem;
}

.spotlight-grid span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.76);
}

.trust-band {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.trust-band::before {
    display: none;
}

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

.trust-item {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: var(--shadow-sm);
}

.trust-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 800;
}

.trust-item strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.trust-item p {
    color: var(--text-muted);
}

.feature-steps,
.service-cards,
.testimonials-grid {
    position: relative;
    z-index: 1;
}

.feature-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 30px;
}

.step-card {
    position: relative;
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 245, 255, 0.94));
    border: 1px solid rgba(139, 92, 246, 0.14);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.step-card::after {
    content: '';
    position: absolute;
    inset: auto -30px -50px auto;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.18), transparent 70%);
}

.step-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.12), rgba(168, 85, 247, 0.3));
    color: var(--primary);
    font-weight: 800;
}

.step-card h3,
.card-content h3 {
    font-size: 1.18rem;
    margin-bottom: 8px;
}

.step-card p,
.card-content p {
    color: var(--text-muted);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: var(--shadow-md);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(76, 29, 149, 0.16);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 22px;
}

.ba-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #ede9fe;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ba-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-after {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
    margin: 0;
}

.ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: rgba(255, 255, 255, 0.92);
    transform: translateX(-50%);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.18);
    z-index: 4;
}

.ba-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff, #f5ebff);
    color: var(--primary);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    z-index: 5;
    pointer-events: none;
}

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

.testimonial-item {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 245, 255, 0.98));
    border: 1px solid rgba(139, 92, 246, 0.14);
    box-shadow: var(--shadow-sm);
    color: var(--text-muted);
    font-style: normal;
}

.testimonial-item p {
    font-size: 1rem;
}

.testimonial-item footer {
    margin-top: 18px;
    color: var(--text-main);
    font-weight: 700;
}

.form-holder {
    position: relative;
    z-index: 1;
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 245, 255, 0.96));
    border: 1px solid rgba(139, 92, 246, 0.16);
    box-shadow: var(--shadow-lg);
}

.booking-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.booking-highlight-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border-radius: 22px;
    background: rgba(245, 238, 255, 0.92);
    border: 1px solid rgba(139, 92, 246, 0.12);
}

.booking-highlight-card i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.16), rgba(168, 85, 247, 0.28));
    color: var(--primary);
}

.booking-highlight-card strong {
    display: block;
    margin-bottom: 4px;
}

.booking-highlight-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.standard-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(139, 92, 246, 0.16);
    background: #fff;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.faq-input-group input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
    transform: translateY(-1px);
}

.form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.sidebar-sticky {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.widget {
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

.widget h3 {
    font-size: 1.18rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.widget p {
    color: var(--text-muted);
}

.toc-widget ul,
.footer-contact-info ul {
    list-style: none;
}

.toc-widget li + li {
    margin-top: 10px;
}

.toc-widget a {
    display: block;
    padding: 10px 12px;
    border-radius: 16px;
    color: var(--text-muted);
    font-weight: 600;
}

.toc-widget a:hover,
.toc-widget a.text-highlight {
    color: var(--primary);
    background: rgba(233, 213, 255, 0.62);
}

.cta-widget .btn-secondary,
.cta-widget .btn-primary {
    margin-top: 14px;
}

.sidebar-social-link {
    margin-top: 12px;
}

.site-footer {
    margin-top: 10px;
    background:
        radial-gradient(circle at top, rgba(168, 85, 247, 0.2), transparent 28%),
        linear-gradient(180deg, #1f1232, #11091d);
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-bottom: 38px;
}

.footer-brand .logo {
    color: #fff;
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.66);
}

.footer-contact-info h4 {
    font-size: 1.16rem;
    margin-bottom: 18px;
}

.footer-contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.86);
}

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

.footer-bottom {
    padding: 18px 0 24px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.92rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.floating-help {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 1000;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    box-shadow: 0 20px 36px rgba(109, 40, 217, 0.32);
}

.floating-help:hover {
    transform: translateY(-3px) scale(1.02);
}

.faq-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: none;
    opacity: 0;
    background: rgba(20, 12, 35, 0.54);
    backdrop-filter: blur(6px);
    transition: opacity 0.3s ease;
}

.faq-overlay.active {
    display: block;
    opacity: 1;
}

.faq-panel {
    position: fixed;
    right: 24px;
    bottom: 88px;
    z-index: 1002;
    width: 380px;
    max-width: calc(100% - 30px);
    height: 560px;
    max-height: 80vh;
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(139, 92, 246, 0.14);
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

.faq-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

#faq-clear,
.faq-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.faq-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 16px;
    background: linear-gradient(180deg, #fbf8ff, #f5eeff);
    overflow: hidden;
}

.faq-chat {
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-chat::-webkit-scrollbar {
    width: 6px;
}

.faq-chat::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.3);
    border-radius: 999px;
}

.faq-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 8px 0 4px;
    list-style: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.faq-list::-webkit-scrollbar {
    display: none;
}

.faq-list li {
    flex: 0 0 auto;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
}

.faq-list li:hover {
    color: var(--primary);
    background: #fff;
}

.faq-input-group {
    display: flex;
    padding: 14px;
    background: #fff;
    border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.faq-input-group input {
    flex: 1;
    min-height: 48px;
    padding: 10px 14px;
    border: 1px solid rgba(139, 92, 246, 0.16);
    border-radius: 16px 0 0 16px;
    font-family: inherit;
    font-size: 0.94rem;
}

.faq-input-group button {
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0 16px 16px 0;
}

.typing i {
    font-size: 0.7rem;
    margin-right: 5px;
}

@keyframes beat {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.12); }
}

.fa-beat-low {
    animation: beat 1s infinite;
}

@media (max-width: 1180px) {
    .layout-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .sidebar-sticky {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .hero-shell,
    .feature-steps,
    .service-cards,
    .testimonials-grid,
    .booking-highlights,
    .footer-grid,
    .trust-band-grid,
    .sidebar-sticky {
        grid-template-columns: 1fr;
    }

    .form-row-group,
    .form-actions,
    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .hero-shell {
        padding: 34px 26px;
        min-height: auto;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 11vw, 4rem);
    }

    .hero-spotlight {
        align-items: stretch;
    }

    .spotlight-card {
        transform: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(var(--max-width), calc(100% - 22px));
    }

    .site-header {
        height: auto;
        min-height: var(--header-height);
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(var(--header-height) - 6px);
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(139, 92, 246, 0.12);
    }

    .site-nav.nav-active {
        display: block;
    }

    .site-nav .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .site-nav .btn-highlight {
        width: 100%;
    }

    .layout-grid {
        padding-top: 20px;
        gap: 20px;
    }

    .section,
    .form-holder,
    .widget {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .hero-panel {
        min-height: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btn {
        min-width: 0;
        width: 100%;
    }

    .floating-help {
        right: 16px;
        bottom: 16px;
    }

    .faq-panel {
        right: 14px;
        bottom: 76px;
        width: calc(100% - 28px);
    }
}

@media (min-width: 769px) and (max-width: 1080px) {
    .logo {
        font-size: 1.25rem;
    }

    .site-nav a {
        padding: 9px 11px;
        font-size: 0.95rem;
    }

    .site-nav .nav-links {
        gap: 8px;
    }
}
