:root {
    /* Primary Brand Gold */
    --gold-100: #FBEACD;
    --gold-200: #F7D9A2;
    --gold-300: #F3C776;
    --gold-500: #EFB54B;
    --gold-700: #EBA320;
    --gold-900: #9F6B0E;

    /* Trust + Contrast Blues */
    --navy-900: #172745;
    --navy-800: #23375C;
    --navy-700: #2D4C86;
    --blue-accent: #4B85EF;

    /* Clean Neutrals */
    --bg-light: #F8F9FA;
    --surface: #FFFFFF;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --white: #ffffff;

    /* Spacing & Shadows */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-xxl: 64px;
    --radius: 16px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--navy-900);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    border: none;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--navy-900);
    color: var(--gold-500);
}

.btn-primary:hover {
    background-color: var(--navy-800);
}

.btn-gold {
    background-color: var(--gold-500);
    color: var(--navy-900);
}

.btn-gold:hover {
    background-color: var(--gold-700);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--navy-900);
    color: var(--navy-900);
}

/* Offer Strip */
.offer-strip {
    background-color: var(--gold-500);
    color: var(--navy-900);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.offer-strip-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.offer-text {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.offer-text span {
    font-weight: 400;
    font-size: 0.8rem;
}

.offer-trust {
    font-size: 0.8rem;
    display: flex;
    gap: var(--spacing-md);
}

/* Header */
header {
    background-color: var(--surface);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 36px;
    /* Below offer strip height */
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

header.sticky {
    padding: var(--spacing-xs) 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.phone-link {
    color: var(--navy-900);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

/* Hero */
.hero {
    background-color: var(--surface);
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.hero-bullets {
    margin-bottom: var(--spacing-lg);
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.bullet-item i {
    color: var(--gold-500);
}

.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: 26px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-form-card:hover {
    transform: translateY(-8px);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-light);
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px var(--gold-100);
    outline: none;
}

/* Trust Badges - Modern Pill Design */
.hero-trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    background: var(--surface);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-500);
}

.trust-badge-item i {
    color: var(--gold-500);
    font-size: 1.1rem;
}

.trust-badge-item p {
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0;
    color: var(--navy-900);
    white-space: nowrap;
}

/* Services Grid - Premium Refinement */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-500);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-200);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-card .btn-outline {
    margin-top: auto;
    border-width: 2px;
}

/* Differentiators */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.diff-card {
    padding: var(--spacing-lg);
    background: var(--surface);
    border-radius: var(--radius);
    text-align: center;
}

.diff-card i {
    font-size: 2.5rem;
    color: var(--gold-500);
    margin-bottom: var(--spacing-md);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.review-card {
    background: var(--surface);
    padding: var(--spacing-lg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: var(--spacing-sm) 0;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: var(--spacing-sm);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-bullets {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Offer Banner - Sophisticated Gold Gradient & Shimmer */
.cta-banner {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
    border-radius: 32px !important;
    padding: 4rem 2rem !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(239, 181, 75, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shimmer 4s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.cta-banner h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.cta-banner p {
    font-size: 1.125rem;
    color: var(--navy-900);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-banner .btn-primary {
    background: var(--navy-900);
    color: var(--white) !important;
    padding: 16px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(23, 39, 69, 0.3);
}

/* Contact Section & Bottom Form */
.contact {
    background: var(--bg-light);
    padding: var(--spacing-xxl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.contact-info h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-900);
    flex-shrink: 0;
}

.booking-form {
    background: var(--surface);
    padding: var(--spacing-xxl);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.booking-form h2.text-booking {
    font-size: 1.25rem;
    color: var(--navy-900);
    border-bottom: 2px solid var(--gold-500);
    padding-bottom: 8px;
    margin-bottom: 24px;
    margin-top: 32px;
}

.booking-form h2.text-booking:first-of-type {
    margin-top: 0;
}

.booking-form .row {
    margin-bottom: 15px;
}

.book-button {
    width: 100%;
    padding: 18px;
    background: var(--navy-900);
    color: var(--gold-500);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.book-button:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg-light);
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mobile-bottom-bar {
        display: grid;
    }

    .offer-trust {
        display: none;
    }

    header {
        top: 60px;
    }

    /* adjusted for wrapped offer strip */
    .hero-trust-badges {
        justify-content: center;
    }

    .cta-banner h3 {
        font-size: 1.75rem;
    }
}

/* Multi-step Form */
.hero-form-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.text-booking {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-xs);
    border-bottom: 2px solid var(--gold-500);
}

.form-step {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-list-btn {
    text-align: center;
}

.panel-list-btn input[type="radio"],
.panel-list-btn input[type="checkbox"] {
    display: none;
}

.panel-list-btn label {
    display: block;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--surface);
    font-weight: 600;
    font-size: 0.9rem;
}

.panel-list-btn label:hover {
    border-color: var(--gold-500);
    background: var(--gold-100);
}

.panel-list-btn input:checked+label {
    background: var(--navy-900);
    color: var(--gold-500);
    border-color: var(--navy-900);
}

/* Footer & Elegant Contact */
.footer {
    background: var(--navy-900);
    color: var(--surface);
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.footer h3 {
    color: var(--gold-500);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-500);
    padding-left: 4px;
}

.elegant-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius);
    margin-bottom: var(--spacing-md);
    border-left: 4px solid var(--gold-500);
}

.contact-icon-wrapper {
    width: 44px;
    height: 44px;
    background: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-300);
}

.contact-value {
    color: var(--surface);
    font-weight: 600;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--surface);
}

.social-link:hover {
    background: var(--gold-500);
    color: var(--navy-900);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
}

@media (max-width: 480px) {
    .hero-form-card {
        padding: var(--spacing-lg);
    }

    .text-booking {
        font-size: 1.1rem;
    }
}