   /* Lazy load styles */
    img[loading="lazy"] {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }
    
    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }
 
 .services-hero {
        padding: 120px 0 100px 0;
        text-align: center;
        margin-bottom: 60px;
        background: #000000;
        position: relative;
        overflow: hidden;
    }

    .services-hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
        pointer-events: none;
    }

    .services-hero .container {
        position: relative;
        z-index: 2;
    }

    .hero-badge-wrapper {
        margin-bottom: 24px;
    }

    .hero-badge {
        display: inline-block;
        padding: 10px 24px;
        background: rgba(10, 10, 10, 0.8);
        border: 2px solid;
        border-image: linear-gradient(135deg, #d4af37, #f4d03f) 1;
        border-radius: 50px;
        color: #f4d03f;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    }

    .services-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        letter-spacing: -1px;
        background: white;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .services-hero p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        max-width: 650px;
        margin: 0 auto;
        line-height: 1.8;
        font-weight: 300;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 32px;
        margin: 60px 0;
    }

    .service-card {
        background: rgba(10, 10, 10, 0.9);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
        border: 2px solid rgba(212, 175, 55, 0.3);
        backdrop-filter: blur(6px);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
        border-color: #d4af37;
    }

    .service-image-wrapper {
        position: relative;
        overflow: hidden;
        height: 280px;
        background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    }

    .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .service-card:hover .service-image-wrapper img {
        transform: scale(1.08);
    }

    .service-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
        color: #000000;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 700;
        border: 1px solid rgba(212, 175, 55, 0.5);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }

    .service-content {
        padding: 32px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .service-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .service-description {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 24px;
        flex-grow: 1;
        font-size: 0.95rem;
    }

    .service-link {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-top: auto;
        opacity: 0.95;
    }

    .service-link:hover {
        color: #ffffff;
        gap: 12px;
        opacity: 1;
    }

    .service-link i {
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-link i {
        transform: translateX(4px);
    }

    .cta-section {
        padding: 80px 0;
        text-align: center;
        border-radius: 12px;
        margin: 80px 0;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        color: #fff;
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .cta-section p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
        color: #000000;
        padding: 16px 56px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        letter-spacing: 1.5px;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
        text-transform: uppercase;
        cursor: pointer;
    }

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    }

    /* Book button */
    .book-button {
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
        color: #000000;
        border: none;
        padding: 12px 28px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 700;
        margin-top: auto;
        transition: all 0.3s ease;
        box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .book-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 24px rgba(212, 175, 55, 0.5);
    }

    .cart-sidebar {
        position: fixed;
        right: -400px;
        top: 0;
        width: 400px;
        height: 100vh;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: -10px 0 40px rgba(0,0,0,0.5);
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cart-sidebar.open {
        right: 0;
    }

    .cart-header {
        padding: 20px;
        background: rgba(255,255,255,0.03);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .cart-header h3 {
        margin: 0;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .cart-close {
        cursor: pointer;
        font-size: 24px;
        font-weight: bold;
        color: white;
        transition: 0.3s;
    }

    .cart-close:hover {
        color: rgba(255,255,255,0.85);
    }

    .cart-items {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
    }

    .cart-item {
        padding: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-bottom: 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.05);
    }

    .cart-item-name {
        font-weight: 600;
        color: #fff;
        flex: 1;
    }

    .cart-item-remove {
        background: #ff6b6b;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12px;
        transition: 0.3s;
    }

    .cart-item-remove:hover {
        background: #ff5252;
    }

    .cart-footer {
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }

    .cart-checkout {
        width: 100%;
        background: #ffffff;
        color: #0f0f0f;
        border: none;
        padding: 12px;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        font-size: 1rem;
        transition: 0.15s;
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }

    .cart-checkout:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.45);
    }

    .cart-empty {
        text-align: center;
        color: rgba(255, 255, 255, 0.5);
        padding: 40px 20px;
    }

    .cart-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: #ff6b6b;
        color: white;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 12px;
    }

    .cart-toggle {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #ffffff;
        color: #0f0f0f;
        border: none;
        padding: 12px 18px;
        border-radius: 50px;
        cursor: pointer;
        font-weight: 600;
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        z-index: 9999;
    }

    .cart-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(0,0,0,0.3);
    }

    /* Service Modal Styles */
    .service-modal {
        position: fixed;
        inset: 0;
        z-index: 12000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
    }

    .service-modal-content {
        position: relative;
        width: 92%;
        max-width: 940px;
        background: rgba(12, 12, 12, 0.98);
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
        color: #fff;
        overflow: hidden;
        z-index: 2;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .service-modal-header {
        padding: 24px 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        background: rgba(0, 0, 0, 0.3);
    }

    .service-modal-header h3 {
        margin: 0;
        font-size: 1.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .service-modal-close {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .service-modal-close:hover {
        color: #f4d03f;
        background: rgba(212, 175, 55, 0.1);
    }

    .service-modal-body {
        display: flex;
        gap: 28px;
        padding: 28px;
    }

    .service-modal-image-wrap {
        flex: 0 0 360px;
        max-width: 360px;
        height: 260px;
        overflow: hidden;
        border-radius: 12px;
        border: 2px solid rgba(212, 175, 55, 0.2);
        box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
    }

    .service-modal-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .service-modal-desc {
        flex: 1;
        color: rgba(255, 255, 255, 0.9);
        max-height: 60vh;
        overflow: auto;
    }

    .service-modal-desc p {
        margin: 0;
        line-height: 1.9;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .service-modal-details {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        display: flex;
        gap: 32px;
        font-size: 0.95rem;
    }

    .service-modal-details span {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .service-modal-details strong {
        color: #f4d03f;
        font-size: 1.1rem;
    }

    .service-modal-footer {
        padding: 20px 28px;
        border-top: 1px solid rgba(212, 175, 55, 0.15);
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        background: rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 900px) {
        .service-modal-body {
            flex-direction: column;
        }

        .service-modal-image-wrap {
            flex: 1;
            max-width: 100%;
            height: 220px;
        }
    }

    @media (max-width: 768px) {
        .services-hero h1 {
            font-size: 2.5rem;
        }

        .services-hero p {
            font-size: 1rem;
        }

        .service-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .cta-section h2 {
            font-size: 1.8rem;
        }

        .cart-sidebar {
            width: 100%;
            right: -100%;
        }

        .service-modal-content {
            width: 95%;
        }

        .service-modal-header {
            padding: 18px 20px;
        }

        .service-modal-body {
            padding: 20px;
        }

        .service-modal-footer {
            padding: 16px 20px;
        }
    }