    /* Custom styles beyond Tailwind */

    :root {
        --gold-500: #c9a227;
        --gold-400: #d4af37;
        --navy-900: #0a1128;
        --navy-800: #0f1c3f;
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--navy-900);
    }
    ::-webkit-scrollbar-thumb {
        background: rgba(201, 162, 39, 0.3);
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(201, 162, 39, 0.5);
    }

    /* Selection */
    ::selection {
        background: rgba(201, 162, 39, 0.3);
        color: #faf8f5;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(10, 17, 40, 0.95);
        backdrop-blur-xl;
        border-bottom: 1px solid rgba(201, 162, 39, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Nav links */
    .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 1px;
        background: linear-gradient(90deg, #c9a227, #d4af37);
        transition: width 0.3s ease;
    }
    .nav-link:hover::after {
        width: 100%;
    }
    .nav-link:hover {
        color: #d4af37 !important;
    }

    /* Mobile menu */
    .mobile-link {
        position: relative;
        padding-left: 0;
    }
    .mobile-link::before {
        content: '';
        position: absolute;
        left: -16px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(201,162,39,0.1), transparent);
        transition: width 0.3s ease;
    }
    .mobile-link:hover::before {
        width: 12px;
    }
    .mobile-link:hover {
        color: #d4af37 !important;
    }

    /* Service cards */
    .service-card {
        position: relative;
        overflow: hidden;
    }
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), transparent);
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .service-card:hover::before {
        opacity: 1;
    }

    /* Floating animation for hero cards */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    @keyframes float-slow {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
    }
    @keyframes float-medium {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }

    .floating-card-1 {
        animation: float 6s ease-in-out infinite;
    }
    .floating-card-2 {
        animation: float-slow 7s ease-in-out infinite 1s;
    }
    .floating-card-3 {
        animation: float-medium 5s ease-in-out infinite 0.5s;
    }
    .floating-card-4 {
        animation: float 8s ease-in-out infinite 2s;
    }

    /* Reveal animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .reveal.revealed {
        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; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }

    /* Input focus styles */
    input:focus, select:focus, textarea:focus {
        outline: none;
    }

    /* Select dropdown styling */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    /* Responsive adjustments */
    @media (max-width: 1023px) {
        .hero-float-cards {
            display: none;
        }
    }

    /* Gold shimmer effect on hover for buttons */
    .btn-gold {
        position: relative;
        overflow: hidden;
    }
    .btn-gold::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
        transition: left 0.5s ease;
    }
    .btn-gold:hover::after {
        left: 100%;
    }
