    /* Social Icons Hover Effect */
    .social-links a {
        display: inline-block;
        /* Required for transform */
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        color: inherit;
        /* Prevent color change */
    }

    .social-links a:hover {
        transform: translateY(-5px);
        /* Jump effect */
        text-decoration: none;
        /* No underline */
        color: inherit;
        /* No color change */
    }

    :root {
        --bg-dark: #0f1115;
        --bg-card: rgba(30, 35, 45, 0.6);
        --bg-card-hover: rgba(255, 183, 3, 0.08);
        --primary: #FFB703;
        --primary-glow: rgba(255, 183, 3, 0.4);
        --secondary: #FB8500;
        --text-main: #FDFDFD;
        --text-muted: #9CA3AF;
        --font-heading: 'Playfair Display', serif;
        --font-body: 'Manrope', sans-serif;

        /* Enhanced Spacing Variables */
        --radius-lg: 24px;
        --radius-md: 16px;
        --radius-sm: 8px;

        --spacing-xxl: 10rem;
        --spacing-xl: 8rem;
        --spacing-lg: 4rem;
        --spacing-md: 2.5rem;
        --spacing-sm: 1.5rem;
        --spacing-xs: 1rem;

        --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* RESET & BASE */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        /* Halo Effect Fixed */
        background-color: var(--bg-dark);
        color: var(--text-main);
        font-family: var(--font-body);
        line-height: 1.9;
        /* Enhanced line-height for better readability */
        overflow-x: hidden;
        font-size: 16px;
    }

    /* Page Load Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .page-header,
    .hero {
        animation: fadeIn 0.8s ease-out;
    }

    .page-header h1,
    .hero h1,
    .page-header .lead {
        animation: fadeInUp 0.8s ease-out;
    }

    main>section:not(.hero):not(.page-header) {
        animation: fadeInUp 0.6s ease-out 0.2s both;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 80% 10%, rgba(255, 183, 3, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 10% 90%, rgba(251, 133, 0, 0.12) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
        animation: pulseHalo 10s infinite alternate;
    }

    @keyframes pulseHalo {
        0% {
            transform: scale(1);
            opacity: 0.5;
        }

        50% {
            opacity: 0.9;
        }

        100% {
            transform: scale(1.15);
            opacity: 0.5;
        }
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: var(--font-heading);
        color: #fff;
        margin-bottom: 1.75rem;
        /* Increased margin */
        font-weight: 700;
        line-height: 1.3;
    }

    h1 {
        font-size: 4rem;
        line-height: 1.15;
        letter-spacing: -1px;
        margin-bottom: 2rem;
    }

    h2 {
        font-size: 2.5rem;
        background: linear-gradient(to right, var(--primary), #fff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
        margin-bottom: 2rem;
    }

    h3 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    p {
        margin-bottom: 1.25rem;
        line-height: 1.9;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: 0.3s ease;
        position: relative;
    }

    /* Yellow Underline Effect on Hover for non-button links */
    a:not(.btn):not(.logo):hover {
        color: var(--primary);
        text-decoration: underline;
        text-decoration-color: var(--primary);
        text-underline-offset: 6px;
        text-decoration-thickness: 2px;
    }

    ul {
        list-style: none;
    }

    .container {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 2.5rem;
    }

    .section-padding {
        padding: var(--spacing-xl) 0;
        position: relative;
        z-index: 1;
    }

    /* Utility margins and paddings */
    .mt-1 {
        margin-top: 0.5rem;
    }

    .mt-2 {
        margin-top: 0.75rem;
    }

    .mt-3 {
        margin-top: 1rem;
    }

    .mt-4 {
        margin-top: 1.5rem;
    }

    .mt-5 {
        margin-top: 2.5rem;
    }

    .mt-6 {
        margin-top: 4rem;
    }

    .mb-1 {
        margin-bottom: 0.5rem;
    }

    .mb-2 {
        margin-bottom: 0.75rem;
    }

    .mb-3 {
        margin-bottom: 1rem;
    }

    .mb-4 {
        margin-bottom: 1.5rem;
    }

    .mb-5 {
        margin-bottom: 2.5rem;
    }

    .mb-6 {
        margin-bottom: 4rem;
    }

    .py-3 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .py-4 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .py-5 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .px-3 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .px-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .px-5 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .p-3 {
        padding: 1rem;
    }

    .p-4 {
        padding: 1.5rem;
    }

    .p-5 {
        padding: 2.5rem;
    }

    .text-center {
        text-align: center;
    }

    /* COMPONENTS */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1.25rem 3.5rem;
        /* Enhanced button size */
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 1rem;
        letter-spacing: 1px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        border: none;
    }

    .btn-lg {
        padding: 1.5rem 4rem;
        font-size: 1.1rem;
    }

    .btn-sm {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .btn-primary {
        background: var(--primary);
        color: #000;
        box-shadow: 0 4px 15px var(--primary-glow);
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        background: #ffc133;
        box-shadow: 0 6px 20px var(--primary-glow);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: #fff;
    }

    .btn-outline:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .card-glass {
        background: var(--bg-card);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: var(--glass-border);
        border-radius: var(--radius-lg);
        padding: 4rem;
        /* More internal padding */
        transition: 0.4s;
        margin-bottom: 2rem;
        /* Spacing between stacked cards */
    }

    .card-glass:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 183, 3, 0.3);
    }

    /* NAVBAR */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 0;
        z-index: 1000;
        background: rgba(15, 17, 21, 0.85);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* QUOTE WIZARD MOBILE OPTIMIZATIONS */
    @media (max-width: 768px) {

        /* 1. Global Scale Reduction */
        html {
            font-size: 14px;
            /* Slightly smaller base font */
        }

        /* 2. Stepper UI - Circles and Dots */
        .progress-container {
            justify-content: center;
            gap: 0;
            position: relative;
            border-bottom: none;
            margin-bottom: 2.5rem;
        }

        /* The gray line background */
        .progress-container::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 10%;
            right: 10%;
            height: 2px;
            background: #333;
            z-index: 0;
            transform: translateY(-50%);
        }

        .progress-container .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1a1d23;
            /* Same as card bg to cover line */
            border: 2px solid #444;
            border: 2px solid #444;
            color: transparent;
            /* Text handled by span .step-text */
            font-size: 0;
            /* Hide text completely */
            position: relative;
            z-index: 1;
            padding: 0;
            margin: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .progress-container .step::after {
            content: attr(data-step);
            /* Use data attribute for number */
            color: #888;
            font-size: 1.2rem;
            font-weight: 700;
            position: absolute;
        }

        .progress-container .step.active {
            background: var(--primary);
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 183, 3, 0.4);
            transform: scale(1.1);
        }

        .progress-container .step.active::after {
            color: #000;
        }

        /* 3. Action Buttons */
        .buttons-row {
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .buttons-row .btn {
            padding: 0.8rem 1.5rem;
            /* Smaller padding */
            font-size: 0.95rem;
            width: auto;
            min-width: 120px;
            flex: 1 1 auto;
            /* Grow to fill but allow wrapping */
        }

        /* 4. Form Width Optimization */
        .contact-row,
        .grid-2 {
            gap: 1.5rem !important;
            /* Override generic grid gap */
        }

        .card-glass,
        .quote-wizard {
            padding: 1.5rem 1rem !important;
            /* Minimized padding */
        }

        input,
        select,
        textarea {
            padding: 1rem;
            /* Slightly smaller inputs */
            max-width: 100% !important;
            box-sizing: border-box !important;
        }

        .step-text {
            display: none !important;
        }

        /* Force Google Place Autocomplete Width */
        #place-autocomplete-container {
            width: 100%;
            overflow: hidden;
            /* Critical for containing the web component */
            border-radius: var(--radius-sm);
        }

        gmp-place-autocomplete-element {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            display: block;
        }
    }

    /* Buttons */
    .buttons-row {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        margin-top: 2rem;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-img {
        height: 60px;
        transition: transform 0.3s;
    }

    .logo-img:hover {
        transform: rotate(-3deg) scale(1.05);
    }

    .nav-links {
        display: flex;
        gap: 3rem;
        align-items: center;
    }

    /* More gap */
    .nav-links a {
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        color: #ccc;
    }

    .nav-links a:hover {
        color: #fff;
    }

    /* Modern underline hover effect for nav links */
    .nav-links a:not(.nav-cta) {
        position: relative;
        overflow: hidden;
    }

    .nav-links a:not(.nav-cta)::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .nav-links a:not(.nav-cta):hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-links a:not(.nav-cta):hover {
        color: var(--primary);
        text-decoration: none;
    }

    .nav-cta {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary) !important;
        padding: 0.8rem 1.5rem;
        border-radius: 6px;
        font-weight: 700;
    }

    .nav-cta:hover {
        background: var(--primary);
        color: #000 !important;
    }

    /* Burger Menu Animation and Style */
    .burger {
        display: none;
        cursor: pointer;
        z-index: 2000;
        /* Above overlay */
    }

    .burger div {
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 5px;
        transition: all 0.3s ease;
    }

    /* Burger Toggle Animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--primary);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--primary);
    }

    /* Mobile Menu Overlay */
    @media screen and (max-width: 768px) {
        body {
            overflow-x: hidden;
        }

        .nav-links {
            position: fixed;
            right: 0;
            height: 100vh;
            top: 0;
            background: rgba(15, 17, 21, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            transform: translateX(100%);
            transition: transform 0.5s ease-in-out;
            gap: 2rem;
            z-index: 1500;
            /* Below burger */
            padding-bottom: 5rem;
        }

        .nav-links li {
            opacity: 0;
        }

        .burger {
            display: block;
        }
    }

    .nav-active {
        transform: translateX(0%);
    }

    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Modern Mobile Menu Link Styles */
    @media screen and (max-width: 768px) {
        .nav-links a {
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
        }
    }

    /* HERO */
    .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        /* Removed opaque background to fix "break" */
        /* background: url('/assets/images/hero-bg.jpg') center/cover no-repeat; */
        padding-top: 5rem;
        /* account for navbar */
    }

    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        /* Smoother gradient transition - darker center for text, transparent edges for continuity */
        background: radial-gradient(circle at center, rgba(15, 17, 21, 0.7) 0%, rgba(15, 17, 21, 0) 90%);
        z-index: -1;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 800px;
        text-align: center;
        animation: fadeIn 0.8s ease-out;
    }

    .hero-badge {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--primary);
        border: 1px solid rgba(255, 183, 3, 0.3);
    }

    /* FOOTER 3 COLUMNS */
    .footer {
        background: #050608;
        padding: 6rem 0 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .social-links {
        display: flex;
        gap: 1.5rem;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        color: #fff;
        font-size: 1.8rem;
        transition: all 0.3s;
    }

    .social-links a:hover {
        background: rgba(255, 255, 255, 0.15);
        /* Slight brighten */
        color: #fff;
        transform: translateY(-5px);
        text-decoration: none;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4rem;
        align-items: start;
    }

    .small {
        font-size: 1rem;
        line-height: 1.8;
    }

    .x-small {
        font-size: 0.9rem;
        color: #666;
        margin-top: 2rem;
    }

    /* more breathing room */
    .text-muted {
        color: #888;
    }

    .brand-link {
        color: var(--primary);
        font-weight: 700;
    }

    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .hero h1 {
            font-size: 2.5rem;
            /* Slightly smaller for better fit */
        }

        .nav-links {
            /* Handled in mobile menu block above */
        }

        /* Hero Buttons Stacking */
        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            align-items: center;
        }

        .hero-cta .btn {
            width: 100%;
            max-width: 300px;
            margin: 0 !important;
            /* Reset any inline margins */
        }

        .burger {
            display: block;
        }

        .navbar .container {
            position: relative;
        }

        .section-padding {
            padding: 4rem 0;
        }

        /* Reduce side padding on mobile container */
        .container {
            padding: 0 1.5rem;
        }

        /* Form Optimizations for Mobile */
        .card-glass {
            padding: 2rem 1.5rem;
            /* Reduced padding */
        }

        .quote-wizard {
            padding: 1.5rem !important;
        }

        h1 {
            font-size: 2.5rem;
        }
    }

    /* UTILS */
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }

    /* More gap */
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .mb-5 {
        margin-bottom: 5rem;
    }

    /* More margin */

    /* INPUTS */
    input,
    select,
    textarea {
        width: 100%;
        background: #0f1115;
        border: 1px solid #2f333d;
        color: #fff;
        padding: 1.25rem 1.75rem;
        border-radius: var(--radius-sm);
        font-family: var(--font-body);
        font-size: 1rem;
        transition: 0.3s;
        margin-bottom: 1.75rem;
        /* Enhanced space between inputs */
    }

    input::placeholder,
    textarea::placeholder {
        color: #666;
    }

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--primary);
        outline: none;
        background: #121419;
        box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.1);
    }

    label {
        display: block;
        margin-bottom: 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Home Values Special */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .value-card {
        background: var(--bg-card);
        border: var(--glass-border);
        border-radius: var(--radius-lg);
        padding: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: 0.4s;
        height: 100%;
    }

    .value-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary);
    }

    .icon-box {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    @media (max-width: 768px) {

        .values-grid,
        .grid-2,
        .grid-3 {
            grid-template-columns: minmax(0, 1fr);
            /* Prevent content blowout */
        }
    }

    /* TOAST NOTIFICATIONS - Rebuilt */
    .toast-container {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99999;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        pointer-events: none;
    }

    .toast {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 24px;
        background: #1a1d23;
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        min-width: 320px;
        max-width: 500px;
        border-left: 4px solid #888;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        pointer-events: auto;
    }

    .toast.toast-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .toast.toast-hiding {
        opacity: 0;
        transform: translateY(-20px);
    }

    .toast-success,
    .toast.toast-success {
        border-left-color: #22c55e;
        background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, #1a1d23 100%);
    }

    .toast-error,
    .toast.toast-error {
        border-left-color: #ef4444;
        background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, #1a1d23 100%);
    }

    .toast-info,
    .toast.toast-info {
        border-left-color: var(--primary);
        background: linear-gradient(135deg, rgba(255, 183, 3, 0.1) 0%, #1a1d23 100%);
    }

    .toast i {
        font-size: 1.3rem;
    }

    .toast-success i {
        color: #22c55e;
    }

    .toast-error i {
        color: #ef4444;
    }

    .toast-info i {
        color: var(--primary);
    }

    .toast-message {
        font-size: 0.95rem;
        font-weight: 500;
        line-height: 1.4;
    }

    /* Date Picker Icon */
    input[type="date"]::-webkit-calendar-picker-indicator,
    input[type="datetime-local"]::-webkit-calendar-picker-indicator {
        filter: invert(1);
        cursor: pointer;
        width: 25px;
        height: 25px;
        opacity: 1;
    }

    /* Google Places Autocomplete Dropdown */
    .pac-container {
        z-index: 2147483647 !important;
        background-color: #1a1d23 !important;
        border: 1px solid #444 !important;
        border-radius: 4px !important;
        font-family: var(--font-body) !important;
    }

    .pac-item {
        padding: 10px 15px !important;
        color: #fff !important;
        background: #1a1d23 !important;
        border-top: 1px solid #333 !important;
        cursor: pointer !important;
    }

    .pac-item:hover,
    .pac-item-selected {
        background: rgba(255, 183, 3, 0.2) !important;
    }

    .pac-icon {
        filter: invert(1);
    }

    .pac-item-query {
        color: var(--primary) !important;
    }