
        :root {
            --primary-dark: #121212;
            --primary-gold: #C9A227;
            --primary-light: #F1F1F1;
            --primary-gray: #3D3D3D;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: var(--primary-dark);
            scroll-behavior: smooth;
            background-color: #fff;
        }
        
        /* Navbar Styles */
        .navbar {
            background: transparent !important;
            padding: 22px 0;
            transition: all 0.35s ease;
            position: relative;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: rgba(18, 18, 18, 0.97) !important;
            backdrop-filter: blur(12px);
            padding: 15px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.75rem;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.5px;
        }
        
        .navbar-brand i {
            color: var(--primary-gold);
            font-size: 2.1rem;
            text-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
        }
        
        .nav-link {
            color: var(--primary-dark) !important;
            font-weight: 500;
            margin: 0 12px;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .nav-link:hover {
            color: var(--primary-gold) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-gold), #b89020);
            color: var(--primary-dark) !important;
            padding: 13px 32px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
            font-size: 0.95rem;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
            color: var(--primary-dark) !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.94), rgba(61, 61, 61, 0.88)), url('https://images.pexels.com/photos/271816/pexels-photo-271816.jpeg?auto=compress&cs=tinysrgb&w=1920');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.06) 0%, transparent 50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }
        
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 28px;
            line-height: 1.12;
            animation: fadeInUp 1s ease;
            letter-spacing: -1px;
        }
        
        .hero-content h1 span {
            background: linear-gradient(135deg, var(--primary-gold), #e6c35c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content p {
            font-size: 1.35rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 680px;
            animation: fadeInUp 1s ease 0.2s backwards;
            line-height: 1.6;
        }
        
        .hero-btn {
            animation: fadeInUp 1s ease 0.4s backwards;
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(35px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Section Styles */
        section {
            padding: 110px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 65px;
        }
        
        .section-title h2 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 18px;
            position: relative;
            display: inline-block;
            letter-spacing: -0.5px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 75px;
            height: 4px;
            background: var(--primary-gold);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--primary-gray);
            font-size: 1.15rem;
            max-width: 620px;
            margin: 25px auto 0;
            line-height: 1.7;
        }
        
        /* About Section */
        .about-section {
            background: var(--primary-light);
        }
        
        .about-img {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }
        
        .about-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 3px solid var(--primary-gold);
            border-radius: 24px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }
        
        .about-img:hover::before {
            opacity: 1;
        }
        
        .about-img img {
            width: 100%;
            height: auto;
            transition: transform 0.6s ease;
            display: block;
        }
        
        .about-img:hover img {
            transform: scale(1.06);
        }
        
        .about-content h3 {
            font-size: 2.1rem;
            color: var(--primary-dark);
            margin-bottom: 24px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .about-content p {
            color: var(--primary-gray);
            line-height: 1.88;
            margin-bottom: 16px;
            text-align: justify;
            font-size: 0.97rem;
        }
        
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-gold), #b89020);
            color: var(--primary-dark);
            padding: 16px 42px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: all 0.35s ease;
            display: inline-block;
            text-decoration: none;
            margin-top: 12px;
            font-size: 1rem;
            box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(201, 162, 39, 0.45);
            color: var(--primary-dark);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-gray));
            color: white;
            padding: 85px 0;
        }
        
        .counter-item {
            text-align: center;
            padding: 35px 25px;
        }
        
        .counter-item i {
            font-size: 3.2rem;
            margin-bottom: 22px;
            color: var(--primary-gold);
            display: block;
        }
        
        .counter-item h3 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #fff, var(--primary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .counter-item p {
            font-size: 1.15rem;
            opacity: 0.92;
            font-weight: 400;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            background: white;
        }
        
        .vm-card {
            background: linear-gradient(135deg, rgba(201, 162, 39, 0.06), rgba(241, 241, 241, 0.7));
            border-radius: 24px;
            padding: 55px 42px;
            text-align: center;
            height: 100%;
            transition: all 0.35s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #e6c35c);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        
        .vm-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(201, 162, 39, 0.18);
            border-color: rgba(201, 162, 39, 0.3);
        }
        
        .vm-card:hover::before {
            transform: scaleX(1);
        }
        
        .vm-card i {
            font-size: 4.2rem;
            background: linear-gradient(135deg, var(--primary-gold), #e6c35c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 28px;
            display: block;
        }
        
        .vm-card h3 {
            font-size: 1.9rem;
            color: var(--primary-dark);
            margin-bottom: 22px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        
        .vm-card p {
            color: var(--primary-gray);
            line-height: 1.85;
            font-size: 0.98rem;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            background: var(--primary-light);
        }
        
        .feature-item {
            background: white;
            padding: 42px 32px;
            border-radius: 20px;
            margin-bottom: 32px;
            transition: all 0.35s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            background: var(--primary-gold);
            transform: scaleY(0);
            transition: transform 0.35s ease;
            transform-origin: bottom;
        }
        
        .feature-item:hover {
            transform: translateY(-7px);
            box-shadow: 0 18px 50px rgba(0,0,0,0.12);
            border-color: rgba(201, 162, 39, 0.25);
        }
        
        .feature-item:hover::before {
            transform: scaleY(1);
        }
        
        .feature-item i {
            font-size: 2.7rem;
            color: var(--primary-gold);
            margin-bottom: 22px;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .feature-item:hover i {
            transform: scale(1.1);
        }
        
        .feature-item h4 {
            font-size: 1.35rem;
            color: var(--primary-dark);
            margin-bottom: 18px;
            font-weight: 600;
            letter-spacing: -0.3px;
        }
        
        .feature-item p {
            color: var(--primary-gray);
            line-height: 1.68;
            margin: 0;
            font-size: 0.96rem;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 45px 32px;
            position: relative;
        }
        
        .process-step::after {
            content: '\f061';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -22px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.6rem;
            color: var(--primary-gold);
            opacity: 0.4;
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-number {
            width: 85px;
            height: 85px;
            background: linear-gradient(135deg, var(--primary-gold), #b89020);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 800;
            margin: 0 auto 28px;
            box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
            position: relative;
            z-index: 2;
        }
        
        .process-number::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border: 2px solid var(--primary-gold);
            border-radius: 50%;
            opacity: 0.3;
            z-index: -1;
        }
        
        .process-step h4 {
            font-size: 1.4rem;
            color: var(--primary-dark);
            margin-bottom: 18px;
            font-weight: 600;
            letter-spacing: -0.3px;
        }
        
        .process-step p {
            color: var(--primary-gray);
            line-height: 1.68;
            font-size: 0.96rem;
        }
        
        /* Services Section */
        .services-section {
            background: white;
        }
        
        .service-card {
            background: var(--primary-light);
            border-radius: 24px;
            overflow: hidden;
            height: 100%;
            transition: all 0.35s ease;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #e6c35c);
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 70px rgba(201, 162, 39, 0.18);
            border-color: rgba(201, 162, 39, 0.3);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(18,18,18,0.7), transparent);
            z-index: 1;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.12);
        }
        
        .service-content {
            padding: 32px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }
        
        .service-content h3 {
            font-size: 1.45rem;
            color: var(--primary-dark);
            margin-bottom: 18px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        
        .service-content p {
            color: var(--primary-gray);
            line-height: 1.78;
            margin-bottom: 24px;
            flex-grow: 1;
            font-size: 0.96rem;
        }
        
        .btn-read-more {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            margin-top: auto;
            font-size: 0.95rem;
        }
        
        .btn-read-more:hover {
            gap: 18px;
            color: var(--primary-dark);
        }
        
        .btn-read-more i {
            transition: transform 0.3s ease;
        }
        
        .btn-read-more:hover i {
            transform: translateX(5px);
        }
        
        /* Reviews Section */
        .reviews-section {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.97), rgba(61, 61, 61, 0.95));
            color: white;
        }
        
        .reviews-section .section-title h2 {
            color: white;
        }
        
        .reviews-section .section-title p {
            color: rgba(255,255,255,0.88);
        }
        
        .review-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            border-radius: 24px;
            padding: 42px 34px;
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.35s ease;
            position: relative;
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 28px;
            font-size: 5rem;
            color: var(--primary-gold);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(201, 162, 39, 0.3);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        }
        
        .review-card .stars {
            color: var(--primary-gold);
            margin-bottom: 24px;
            font-size: 1.25rem;
            position: relative;
            z-index: 2;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 28px;
            line-height: 1.82;
            opacity: 0.95;
            position: relative;
            z-index: 2;
            font-size: 0.98rem;
        }
        
        .reviewer-name {
            font-weight: 600;
            font-size: 1.15rem;
            color: var(--primary-gold);
            position: relative;
            z-index: 2;
        }
        
        .reviewer-location {
            font-size: 0.92rem;
            opacity: 0.82;
            position: relative;
            z-index: 2;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--primary-light);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 22px;
            border-radius: 18px !important;
            overflow: hidden;
            box-shadow: 0 6px 25px rgba(0,0,0,0.06);
            background: white;
        }
        
        .accordion-button {
            background: white;
            color: var(--primary-dark);
            font-weight: 600;
            padding: 28px 32px;
            border: none;
            font-size: 1.05rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, var(--primary-gold), #b89020);
            color: var(--primary-dark);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23121212'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23121212'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transform: rotate(-180deg);
        }
        
        .accordion-body {
            padding: 28px 32px;
            background: white;
            color: var(--primary-gray);
            line-height: 1.82;
            font-size: 0.97rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-gold), #b89020);
            padding: 110px 0;
            text-align: center;
            color: var(--primary-dark);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
            animation: pulse 8s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        
        .cta-section h2 {
            font-size: 2.7rem;
            font-weight: 700;
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
            letter-spacing: -0.5px;
        }
        
        .cta-section p {
            font-size: 1.25rem;
            margin-bottom: 45px;
            opacity: 0.95;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            line-height: 1.7;
        }
        
        .btn-white {
            background: white;
            color: var(--primary-dark);
            padding: 18px 55px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.35s ease;
            box-shadow: 0 12px 35px rgba(0,0,0,0.25);
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }
        
        .btn-white:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.35);
            color: var(--primary-dark);
        }
        
        /* Contact Section */
        .contact-section {
            background: white;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 22px;
            margin-bottom: 34px;
            padding: 22px;
            background: var(--primary-light);
            border-radius: 18px;
            transition: transform 0.3s ease;
        }
        
        .contact-info-item:hover {
            transform: translateX(5px);
        }
        
        .contact-info-item i {
            font-size: 1.6rem;
            color: var(--primary-gold);
            width: 54px;
            height: 54px;
            background: rgba(201, 162, 39, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-info-item:hover i {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: scale(1.1);
        }
        
        .contact-info-item h4 {
            font-size: 1.25rem;
            color: var(--primary-dark);
            margin-bottom: 6px;
            font-weight: 600;
            letter-spacing: -0.2px;
        }
        
        .contact-info-item p {
            color: var(--primary-gray);
            margin: 0;
            line-height: 1.68;
            font-size: 0.97rem;
        }
        
        .contact-form {
            background: var(--primary-light);
            padding: 55px;
            border-radius: 24px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.08);
        }
        
        .form-control {
            padding: 16px 22px;
            border-radius: 12px;
            border: 2px solid #ddd;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: white;
            font-size: 0.97rem;
        }
        
        .form-control:focus {
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 0.25rem rgba(201, 162, 39, 0.25);
            background: white;
        }
        
        .form-label {
            font-weight: 500;
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-size: 0.98rem;
            letter-spacing: -0.2px;
        }
        
        .form-control.is-invalid {
            border-color: #dc3545;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right calc(0.375em + 0.875rem) center;
            background-size: calc(0.75em + 0.575rem) calc(0.75em + 0.575rem);
        }
        
        /* Booking Form */
        .booking-section {
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.97), rgba(61, 61, 61, 0.95));
            color: white;
        }
        
        .booking-section .section-title h2 {
            color: white;
        }
        
        .booking-section .section-title p {
            color: rgba(255,255,255,0.9);
        }
        
        .booking-form {
            background: white;
            padding: 55px;
            border-radius: 24px;
            color: var(--primary-dark);
            box-shadow: 0 25px 70px rgba(0,0,0,0.18);
        }
        
        .booking-form .form-label {
            color: var(--primary-dark);
        }
        
        /* Footer */
        footer {
            background: var(--primary-dark);
            color: white;
            padding: 85px 0 35px;
        }
        
        .footer-col h4 {
            font-size: 1.35rem;
            margin-bottom: 28px;
            font-weight: 700;
            color: var(--primary-gold);
            position: relative;
            padding-bottom: 12px;
            letter-spacing: -0.3px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 45px;
            height: 3px;
            background: var(--primary-gold);
            border-radius: 2px;
        }
        
        .footer-col p {
            color: rgba(255,255,255,0.88);
            line-height: 1.85;
            margin-bottom: 22px;
            font-size: 0.96rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 14px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.88);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 0.96rem;
        }
        
        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 6px;
            gap: 15px;
        }
        
        .footer-links a i {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }
        
        .footer-links a:hover i {
            transform: translateX(3px);
        }
        
        .newsletter-form {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 14px 22px;
            border-radius: 50px;
            border: none;
            font-family: 'Poppins', sans-serif;
            background: rgba(255,255,255,0.12);
            color: white;
            font-size: 0.95rem;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.65);
        }
        
        .newsletter-form input:focus {
            outline: none;
            background: rgba(255,255,255,0.18);
        }
        
        .newsletter-form button {
            background: linear-gradient(135deg, var(--primary-gold), #b89020);
            color: var(--primary-dark);
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        
        .newsletter-form button:hover {
            transform: scale(1.06);
            box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.12);
            margin-top: 55px;
            padding-top: 32px;
            text-align: center;
            color: rgba(255,255,255,0.65);
            font-size: 0.93rem;
        }
        
        .footer-bottom a {
            color: var(--primary-gold);
            text-decoration: none;
            margin: 0 12px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Alert Messages */
        .alert-custom {
            display: none;
            padding: 18px 24px;
            border-radius: 14px;
            margin-bottom: 24px;
            font-weight: 500;
            animation: slideIn 0.4s ease;
            font-size: 0.97rem;
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .alert-success {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background: linear-gradient(135deg, #f8d7da, #f5c6cb);
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .process-step::after {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.4rem;
            }
            
            .hero-content p {
                font-size: 1.15rem;
            }
            
            .contact-form,
            .booking-form {
                padding: 38px;
            }
            
            .navbar-collapse {
                background: white;
                padding: 24px;
                border-radius: 20px;
                margin-top: 15px;
                box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            }
            
            section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .cta-section h2 {
                font-size: 2.2rem;
            }
            
            .cta-section p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-btn {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .btn-cta, .btn-outline-light {
                width: 100%;
                text-align: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
