        /* style.css - premium, dark/gold theme, animations, responsive */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #0a0a0a;
            color: #e5e5e5;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        .gold-text,
        .logo-font {
            font-family: 'Playfair Display', serif;
        }

        .gold {
            color: #d4af37;
        }

        .bg-gold {
            background-color: #d4af37;
            color: #111;
        }

        .btn-gold {
            background: #d4af37;
            color: #0a0a0a;
            border: none;
            padding: 12px 32px;
            font-weight: 700;
            border-radius: 40px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .btn-gold:hover {
            background: #b8942e;
            transform: translateY(-3px);
            box-shadow: 0 12px 20px rgba(212, 175, 55, 0.3);
            color: #000;
        }

        .btn-outline-gold {
            background: transparent;
            border: 1.5px solid #d4af37;
            color: #d4af37;
            border-radius: 40px;
            padding: 12px 32px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-gold:hover {
            background: #d4af37;
            color: #0a0a0a;
            transform: translateY(-2px);
        }

        .section-padding {
            padding: 100px 0;
        }

        .navbar {
            transition: all 0.4s ease;
            backdrop-filter: blur(0px);
            background: transparent;
            padding: 20px 0;
        }

        .navbar.scrolled {
            background: #000000dd;
            backdrop-filter: blur(12px);
            padding: 12px 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #d4af37 !important;
            font-family: 'Playfair Display', serif;
        }

        .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin: 0 12px;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: #d4af37 !important;
            transform: translateY(-2px);
        }

        /* hero fullscreen video overlay */
        .hero-full {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background: url('https://images.pexels.com/photos/3998422/pexels-photo-3998422.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-full::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
        }

        .hero-title {
            font-size: 4.2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
        }

        .hero-sub {
            font-size: 1.3rem;
            margin: 20px 0;
            font-weight: 300;
        }

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

            .section-padding {
                padding: 60px 0;
            }
        }

        /* card & stats */
        .stat-card {
            background: #111;
            border-radius: 20px;
            padding: 25px 15px;
            text-align: center;
            transition: 0.3s;
            border-bottom: 3px solid #d4af37;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            background: #1a1a1a;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #d4af37;
        }

        .service-card {
            background: #111;
            border-radius: 24px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            margin-bottom: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            background: #1a1a1a;
            border-color: #d4af37;
            box-shadow: 0 30px 40px rgba(212, 175, 55, 0.15);
        }

        .service-img {
            height: 230px;
            object-fit: cover;
            width: 100%;
            transition: 0.5s;
        }

        .service-card:hover .service-img {
            transform: scale(1.05);
        }

        .price {
            font-size: 1.6rem;
            font-weight: 700;
            color: #d4af37;
        }

        .feature-icon {
            font-size: 3rem;
            color: #d4af37;
            margin-bottom: 20px;
        }

        .feature-card {
            background: #0f0f0f;
            border-radius: 24px;
            padding: 35px 20px;
            text-align: center;
            transition: 0.3s;
            height: 100%;
        }

        .feature-card:hover {
            background: #1c1c1c;
            transform: translateY(-8px);
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 20px;
            margin-bottom: 25px;
            cursor: pointer;
            transition: 0.4s;
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 20px;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        /* swiper testimonial */
        .testimonial-card {
            background: #111;
            border-radius: 28px;
            padding: 35px;
            text-align: center;
            margin: 20px;
            border: 1px solid #2a2a2a;
        }

        .testimonial-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 3px solid #d4af37;
        }

        .star-rating i {
            color: #d4af37;
            margin: 0 2px;
        }

        /* form */
        .booking-form {
            background: #0c0c0c;
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #2c2c2c;
        }

        .form-control,
        .form-select {
            background-color: #1e1e1e;
            border: 1px solid #333;
            color: white;
            padding: 12px;
            border-radius: 16px;
        }

        .form-control:focus,
        .form-select:focus {
            background-color: #252525;
            color: white;
            border-color: #d4af37;
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
        }

        label {
            font-weight: 500;
            margin-bottom: 8px;
            color: #d4af37;
        }

        .modal-content {
            background: #0f0f0f;
            border-radius: 24px;
            border: 1px solid #d4af37;
            color: white;
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            z-index: 999;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #20b859;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: #d4af37;
            color: black;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .sticky-book-mobile {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #d4af37;
            color: #000;
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: bold;
            z-index: 1000;
            display: none;
            gap: 10px;
            align-items: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .sticky-book-mobile {
                display: flex;
            }

            .whatsapp-float {
                bottom: 90px;
            }

            .scroll-top {
                bottom: 90px;
            }

            .hero-full {
                background-attachment: scroll;
            }
        }

        footer {
            background: #020202;
            padding: 50px 0 30px;
            border-top: 1px solid #222;
        }

        .social-icon {
            font-size: 26px;
            margin-right: 20px;
            color: #ccc;
            transition: 0.3s;
        }

        .social-icon:hover {
            color: #d4af37;
            transform: translateY(-4px);
        }

        .counter {
            font-size: 2.8rem;
            font-weight: 800;
            color: #d4af37;
        }

        .bg-dark-card {
            background: #0a0a0a;
        }

        .conditional-field {
            animation: fadeInUp 0.4s ease-out;
        }

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

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

        .service-badge {
            background: #1a1a1a;
            border-left: 3px solid #d4af37;
            padding: 8px 15px;
            border-radius: 8px;
            margin-top: 5px;
        }


        .service-item {
            background: #0c0c0c !important;
            border: 1px solid #2c2c2c;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            border-color: #d4af37;
        }

        .remove-service-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 4px 12px;
            font-size: 12px;
        }

        .remove-service-btn:hover {
            background: #c82333;
        }

        #addServiceBtn {
            background: transparent;
            border: 1px dashed #d4af37;
            color: #d4af37;
        }

        #addServiceBtn:hover {
            background: #d4af37;
            color: #0a0a0a;
        }

        /* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

        /* Mobile Phones (portrait and landscape) */
        @media (max-width: 576px) {

            /* General spacing */
            .section-padding {
                padding: 40px 0;
            }

            /* Hero Section */
            .hero-full {
                min-height: 100vh;
                background-attachment: scroll;
                background-position: center;
            }

            .hero-title {
                font-size: 1.8rem !important;
                line-height: 1.2;
            }

            .hero-sub {
                font-size: 0.9rem;
                padding: 0 15px;
            }

            .btn-gold,
            .btn-outline-gold {
                padding: 8px 20px;
                font-size: 0.9rem;
            }

            /* Navigation */
            .navbar-brand {
                font-size: 1.3rem;
            }

            .navbar-toggler {
                background-color: rgba(212, 175, 55, 0.2);
                border: 1px solid #d4af37;
            }

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

            .nav-link {
                text-align: center;
                padding: 10px 0;
            }

            /* About Section */
            .display-4,
            .display-5 {
                font-size: 1.8rem;
            }

            .lead {
                font-size: 0.95rem;
            }

            .stat-card {
                padding: 15px 8px;
                margin-bottom: 10px;
            }

            .counter {
                font-size: 1.6rem;
            }

            .stat-card p {
                font-size: 0.7rem;
                margin-bottom: 0;
            }

            /* Services Cards */
            .service-card {
                margin-bottom: 20px;
            }

            .service-img {
                height: 180px;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .price {
                font-size: 1.2rem;
            }

            /* Booking Form */
            .booking-form {
                padding: 20px;
            }

            .booking-form label {
                font-size: 0.85rem;
            }

            .form-control,
            .form-select {
                padding: 8px 12px;
                font-size: 0.9rem;
            }

            .service-item {
                padding: 15px !important;
            }

            .service-item h6 {
                font-size: 0.9rem;
            }

            #addServiceBtn {
                width: 100% !important;
                font-size: 0.85rem;
                padding: 8px;
            }

            /* Gallery */
            .gallery-item img {
                height: 200px;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 20px;
                margin: 10px;
            }

            .testimonial-card img {
                width: 60px;
                height: 60px;
            }

            .testimonial-card h4 {
                font-size: 1rem;
            }

            .testimonial-card p {
                font-size: 0.85rem;
            }

            /* CTA Section */
            .display-3 {
                font-size: 1.8rem;
            }

            .cta-section .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }

            /* Contact Section */
            .col-md-5 h3 {
                font-size: 1.5rem;
            }

            .list-unstyled li {
                font-size: 0.85rem;
                margin-bottom: 12px;
            }

            /* Footer */
            footer {
                text-align: center;
                padding: 30px 0 20px;
            }

            footer .col-md-4 {
                margin-bottom: 15px;
            }

            footer h3 {
                font-size: 1.3rem;
            }

            footer p {
                font-size: 0.75rem;
            }

            .social-icon {
                font-size: 22px;
                margin: 0 12px;
            }

            /* Floating Buttons */
            .whatsapp-float {
                bottom: 80px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 26px;
            }

            .scroll-top {
                bottom: 80px;
                left: 15px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .sticky-book-mobile {
                bottom: 15px;
                padding: 8px 20px;
                font-size: 0.85rem;
                width: auto;
                left: 50%;
                transform: translateX(-50%);
                white-space: nowrap;
            }

            /* Why Choose Us */
            .feature-card {
                padding: 20px 15px;
            }

            .feature-icon {
                font-size: 2rem;
            }

            .feature-card h4 {
                font-size: 1rem;
            }

            .feature-card p {
                font-size: 0.8rem;
            }
        }

        /* Tablets (portrait) */
        @media (min-width: 577px) and (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-sub {
                font-size: 1.1rem;
            }

            .display-4,
            .display-5 {
                font-size: 2rem;
            }

            .booking-form {
                padding: 30px;
            }

            .service-img {
                height: 200px;
            }

            .stat-card {
                padding: 15px 10px;
            }

            .counter {
                font-size: 2rem;
            }

            .feature-card {
                padding: 25px 15px;
            }
        }

        /* Large Tablets and Small Desktops */
        @media (min-width: 769px) and (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }

            .section-padding {
                padding: 80px 0;
            }
        }

        /* Fix for very small devices (below 380px) */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 1.5rem !important;
            }

            .btn-gold,
            .btn-outline-gold {
                padding: 6px 15px;
                font-size: 0.8rem;
            }

            .sticky-book-mobile {
                padding: 6px 15px;
                font-size: 0.75rem;
            }

            .booking-form {
                padding: 15px;
            }

            .service-item h6 {
                font-size: 0.8rem;
            }

            .remove-service-btn {
                padding: 2px 8px;
                font-size: 10px;
            }
        }

        /* Improve touch targets for mobile */
        @media (max-width: 768px) {

            button,
            .btn,
            .nav-link,
            .social-icon,
            .gallery-item,
            .service-card a {
                cursor: pointer;
                min-height: 44px;
                /* Better touch targets */
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav-link {
                min-height: auto;
            }

            /* Improve form inputs on mobile */
            input,
            select,
            textarea {
                font-size: 16px !important;
                /* Prevents zoom on focus in iOS */
            }

            /* Adjust modal for mobile */
            .modal-dialog {
                margin: 10px;
            }

            .modal-content {
                padding: 15px !important;
            }

            .modal-content h3 {
                font-size: 1.3rem;
            }

            .modal-content p {
                font-size: 0.85rem;
            }

            /* Gallery grid for mobile */
            .gallery-item img {
                height: 180px;
            }

            /* Stats row on mobile */
            .row.g-4 {
                --bs-gutter-y: 0.75rem;
            }
        }

        /* Landscape orientation fixes */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-full {
                min-height: 100vh;
            }

            .hero-title {
                font-size: 1.6rem;
            }

            .section-padding {
                padding: 30px 0;
            }
        }

        /* Improve dropdowns on mobile */
        @media (max-width: 576px) {
            select.form-select {
                background-position: right 0.75rem center;
            }

            /* Make service cards stack better */
            .service-card .p-4 {
                padding: 15px !important;
            }
        }

        /* Ensure images are responsive */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Improve container padding on mobile */
        @media (max-width: 576px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        /* Fix for multiple services container on mobile */
        @media (max-width: 576px) {
            .service-item .row>div {
                margin-bottom: 10px;
            }

            .service-item label {
                font-size: 0.75rem;
            }

            #priceDisplay .alert {
                font-size: 0.85rem;
                padding: 10px;
            }
        }

        /* Smooth scrolling for mobile */
        @media (max-width: 768px) {
            html {
                scroll-padding-top: 70px;
            }
        }

        /* Fix navbar collapse on mobile */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 16px;
                margin-top: 15px;
                padding: 10px;
            }

            .navbar-nav {
                padding: 10px;
            }
        }




        /* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

        /* Mobile Phones (portrait and landscape) */
        @media (max-width: 576px) {

            /* General spacing */
            .section-padding {
                padding: 40px 0;
            }

            /* Hero Section */
            .hero-full {
                min-height: 100vh;
                background-attachment: scroll;
                background-position: center;
            }

            .hero-title {
                font-size: 1.8rem !important;
                line-height: 1.2;
            }

            .hero-sub {
                font-size: 0.9rem;
                padding: 0 15px;
            }

            .btn-gold,
            .btn-outline-gold {
                padding: 8px 20px;
                font-size: 0.9rem;
            }

            /* Navigation */
            .navbar-brand {
                font-size: 1.3rem;
            }

            .navbar-toggler {
                background-color: rgba(212, 175, 55, 0.2);
                border: 1px solid #d4af37;
            }

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

            .nav-link {
                text-align: center;
                padding: 10px 0;
            }

            /* About Section */
            .display-4,
            .display-5 {
                font-size: 1.8rem;
            }

            .lead {
                font-size: 0.95rem;
            }

            .stat-card {
                padding: 15px 8px;
                margin-bottom: 10px;
            }

            .counter {
                font-size: 1.6rem;
            }

            .stat-card p {
                font-size: 0.7rem;
                margin-bottom: 0;
            }

            /* Services Cards */
            .service-card {
                margin-bottom: 20px;
            }

            .service-img {
                height: 180px;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .price {
                font-size: 1.2rem;
            }

            /* Booking Form */
            .booking-form {
                padding: 20px;
            }

            .booking-form label {
                font-size: 0.85rem;
            }

            .form-control,
            .form-select {
                padding: 8px 12px;
                font-size: 0.9rem;
            }

            .service-item {
                padding: 15px !important;
            }

            .service-item h6 {
                font-size: 0.9rem;
            }

            #addServiceBtn {
                width: 100% !important;
                font-size: 0.85rem;
                padding: 8px;
            }

            /* Gallery */
            .gallery-item img {
                height: 200px;
            }

            /* Testimonials */
            .testimonial-card {
                padding: 20px;
                margin: 10px;
            }

            .testimonial-card img {
                width: 60px;
                height: 60px;
            }

            .testimonial-card h4 {
                font-size: 1rem;
            }

            .testimonial-card p {
                font-size: 0.85rem;
            }

            /* CTA Section */
            .display-3 {
                font-size: 1.8rem;
            }

            .cta-section .btn {
                display: block;
                width: 80%;
                margin: 10px auto;
            }

            /* Contact Section */
            .col-md-5 h3 {
                font-size: 1.5rem;
            }

            .list-unstyled li {
                font-size: 0.85rem;
                margin-bottom: 12px;
            }

            /* Footer */
            footer {
                text-align: center;
                padding: 30px 0 20px;
            }

            footer .col-md-4 {
                margin-bottom: 15px;
            }

            footer h3 {
                font-size: 1.3rem;
            }

            footer p {
                font-size: 0.75rem;
            }

            .social-icon {
                font-size: 22px;
                margin: 0 12px;
            }

            /* Floating Buttons */
            .whatsapp-float {
                bottom: 80px;
                right: 15px;
                width: 50px;
                height: 50px;
                font-size: 26px;
            }

            .scroll-top {
                bottom: 80px;
                left: 15px;
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .sticky-book-mobile {
                bottom: 15px;
                padding: 8px 20px;
                font-size: 0.85rem;
                width: auto;
                left: 50%;
                transform: translateX(-50%);
                white-space: nowrap;
            }

            /* Why Choose Us */
            .feature-card {
                padding: 20px 15px;
            }

            .feature-icon {
                font-size: 2rem;
            }

            .feature-card h4 {
                font-size: 1rem;
            }

            .feature-card p {
                font-size: 0.8rem;
            }
        }

        /* Tablets (portrait) */
        @media (min-width: 577px) and (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-sub {
                font-size: 1.1rem;
            }

            .display-4,
            .display-5 {
                font-size: 2rem;
            }

            .booking-form {
                padding: 30px;
            }

            .service-img {
                height: 200px;
            }

            .stat-card {
                padding: 15px 10px;
            }

            .counter {
                font-size: 2rem;
            }

            .feature-card {
                padding: 25px 15px;
            }
        }

        /* Large Tablets and Small Desktops */
        @media (min-width: 769px) and (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }

            .section-padding {
                padding: 80px 0;
            }
        }

        /* Fix for very small devices (below 380px) */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 1.5rem !important;
            }

            .btn-gold,
            .btn-outline-gold {
                padding: 6px 15px;
                font-size: 0.8rem;
            }

            .sticky-book-mobile {
                padding: 6px 15px;
                font-size: 0.75rem;
            }

            .booking-form {
                padding: 15px;
            }

            .service-item h6 {
                font-size: 0.8rem;
            }

            .remove-service-btn {
                padding: 2px 8px;
                font-size: 10px;
            }
        }

        /* Improve touch targets for mobile */
        @media (max-width: 768px) {

            button,
            .btn,
            .nav-link,
            .social-icon,
            .gallery-item,
            .service-card a {
                cursor: pointer;
                min-height: 44px;
                /* Better touch targets */
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }

            .nav-link {
                min-height: auto;
            }

            /* Improve form inputs on mobile */
            input,
            select,
            textarea {
                font-size: 16px !important;
                /* Prevents zoom on focus in iOS */
            }

            /* Adjust modal for mobile */
            .modal-dialog {
                margin: 10px;
            }

            .modal-content {
                padding: 15px !important;
            }

            .modal-content h3 {
                font-size: 1.3rem;
            }

            .modal-content p {
                font-size: 0.85rem;
            }

            /* Gallery grid for mobile */
            .gallery-item img {
                height: 180px;
            }

            /* Stats row on mobile */
            .row.g-4 {
                --bs-gutter-y: 0.75rem;
            }
        }

        /* Landscape orientation fixes */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero-full {
                min-height: 100vh;
            }

            .hero-title {
                font-size: 1.6rem;
            }

            .section-padding {
                padding: 30px 0;
            }
        }

        /* Improve dropdowns on mobile */
        @media (max-width: 576px) {
            select.form-select {
                background-position: right 0.75rem center;
            }

            /* Make service cards stack better */
            .service-card .p-4 {
                padding: 15px !important;
            }
        }

        /* Ensure images are responsive */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Improve container padding on mobile */
        @media (max-width: 576px) {
            .container {
                padding-left: 15px;
                padding-right: 15px;
            }
        }

        /* Fix for multiple services container on mobile */
        @media (max-width: 576px) {
            .service-item .row>div {
                margin-bottom: 10px;
            }

            .service-item label {
                font-size: 0.75rem;
            }

            #priceDisplay .alert {
                font-size: 0.85rem;
                padding: 10px;
            }
        }

        /* Smooth scrolling for mobile */
        @media (max-width: 768px) {
            html {
                scroll-padding-top: 70px;
            }
        }

        /* Fix navbar collapse on mobile */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 16px;
                margin-top: 15px;
                padding: 10px;
            }

            .navbar-nav {
                padding: 10px;
            }
        }

        /* video css */
        /* Hero Section - Full Screen Video Background */
.hero-full {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

/* For specific video aspect ratio handling */
.hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-full {
        min-height: 100vh;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-sub {
        font-size: 0.85rem;
    }
}

/* Ensure no white space around hero */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Fix for navbar overlapping hero */
#mainNav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

/* When navbar becomes sticky on scroll */
#mainNav.scrolled {
    position: fixed;
    background: #000000dd;
    backdrop-filter: blur(12px);
}

/* Fix for any margin/padding issues */
section:first-of-type {
    margin-top: 0;
    padding-top: 0;
}


/* service preview css */
/* Service Preview Image Styles */
.service-preview {
    background: #0c0c0c;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    border: 1px solid #2c2c2c;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.service-preview-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.service-preview-image:hover {
    transform: scale(1.02);
}

.service-preview-title {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
}

.service-preview-placeholder {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #666;
}

.service-preview-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #d4af37;
}

@media (max-width: 768px) {
    .service-preview-image {
        max-height: 140px;
    }

    .service-preview-placeholder {
        padding: 25px;
    }
}
