
        :root {
            --color-black: #0F0F0F;
            --color-gold: #E6C200;
            --color-white: #FFFFFF;
            --color-dark-gray: #2B2B2B;
            --color-light-gray: #f8f9fa;
            --color-border: #e0e0e0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--color-black);
            overflow-x: hidden;
            background-color: var(--color-white);
            line-height: 1.7;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--color-light-gray);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--color-gold);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-dark-gray);
        }
        
        /* Navigation */
        .navbar {
            background: transparent !important;
            transition: all 0.4s ease;
            padding: 1.4rem 0;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.97) !important;
            backdrop-filter: blur(15px);
            box-shadow: 0 4px 30px rgba(15, 15, 15, 0.12);
            padding: 0.9rem 0;
            border-bottom: 3px solid var(--color-gold);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.7rem;
            color: var(--color-black) !important;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            letter-spacing: -0.5px;
        }
        
        .navbar-brand i {
            color: var(--color-gold);
            font-size: 2.3rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
        }
        
        .nav-link {
            color: var(--color-black) !important;
            font-weight: 500;
            margin: 0 0.7rem;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.98rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--color-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .nav-link:hover::after {
            width: 75%;
        }
        
        .nav-link:hover {
            color: var(--color-gold) !important;
        }
        
        .btn-custom {
            background: var(--color-gold);
            color: var(--color-black);
            padding: 0.95rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            border: 2px solid var(--color-gold);
            transition: all 0.35s ease;
            box-shadow: 0 8px 25px rgba(230, 194, 0, 0.35);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-custom:hover::before {
            left: 100%;
        }
        
        .btn-custom:hover {
            background: var(--color-black);
            color: var(--color-gold);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(15, 15, 15, 0.4);
            border-color: var(--color-black);
        }
        
        .btn-outline-custom {
            border: 2.5px solid var(--color-gold);
            color: var(--color-gold);
            padding: 0.95rem 2.4rem;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.35s ease;
            background: transparent;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .btn-outline-custom:hover {
            background: var(--color-gold);
            color: var(--color-black);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(230, 194, 0, 0.4);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.98) 100%);
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -25%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(230, 194, 0, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatPulse 28s infinite ease-in-out;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -35%;
            left: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(15, 15, 15, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatPulse 22s infinite ease-in-out reverse;
        }
        
        @keyframes floatPulse {
            0%, 100% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.08); opacity: 0.4; }
        }
        
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 680px;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--color-gold);
            color: var(--color-black);
            padding: 0.65rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.92rem;
            margin-bottom: 1.9rem;
            box-shadow: 0 6px 20px rgba(230, 194, 0, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        
        .hero-title {
            font-size: 4.4rem;
            font-weight: 900;
            color: var(--color-black);
            line-height: 1.03;
            margin-bottom: 1.6rem;
            letter-spacing: -1.2px;
        }
        
        .hero-title span {
            color: var(--color-gold);
            position: relative;
        }
        
        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 2px;
            width: 100%;
            height: 12px;
            background: rgba(230, 194, 0, 0.35);
            z-index: -1;
            border-radius: 4px;
        }
        
        .hero-subtitle {
            font-size: 1.28rem;
            color: var(--color-dark-gray);
            margin-bottom: 2.6rem;
            font-weight: 400;
            line-height: 1.75;
        }
        
        .hero-cta {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-bottom: 3.2rem;
        }
        
        .hero-stats {
            display: flex;
            gap: 2.8rem;
            padding-top: 2.2rem;
            border-top: 2px solid var(--color-border);
        }
        
        .stat-item h4 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-gold);
            margin-bottom: 0.35rem;
        }
        
        .stat-item p {
            color: var(--color-dark-gray);
            font-size: 0.92rem;
            margin: 0;
            font-weight: 500;
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image-container {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 45px 90px rgba(15, 15, 15, 0.28);
            transform: perspective(1300px) rotateY(-4deg) rotateX(3deg);
            transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 4px solid var(--color-white);
        }
        
        .hero-image-container:hover {
            transform: perspective(1300px) rotateY(0deg) rotateX(0deg);
        }
        
        .hero-image-container img {
            width: 100%;
            display: block;
            transition: transform 0.7s ease;
        }
        
        .hero-image-container:hover img {
            transform: scale(1.05);
        }
        
        .floating-badge {
            position: absolute;
            background: var(--color-black);
            color: var(--color-gold);
            padding: 1rem 1.6rem;
            border-radius: 18px;
            box-shadow: 0 18px 45px rgba(0,0,0,0.25);
            display: flex;
            align-items: center;
            gap: 0.9rem;
            animation: floatBadge 7s ease-in-out infinite;
            z-index: 4;
            font-weight: 600;
            font-size: 0.95rem;
        }
        
        .floating-badge.badge-1 {
            top: 12%;
            right: -25px;
            animation-delay: 0s;
        }
        
        .floating-badge.badge-2 {
            bottom: 18%;
            left: -35px;
            animation-delay: 2.5s;
        }
        
        @keyframes floatBadge {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-18px) rotate(2deg); }
        }
        
        .floating-badge i {
            font-size: 1.6rem;
            color: var(--color-gold);
        }
        
        /* Section Styling */
        section {
            padding: 7.5rem 0;
        }
        
        .section-header {
            text-align: center;
            max-width: 750px;
            margin: 0 auto 5rem;
        }
        
        .section-badge {
            display: inline-block;
            background: var(--color-gold);
            color: var(--color-black);
            padding: 0.55rem 1.4rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.88rem;
            margin-bottom: 1.3rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 5px 18px rgba(230, 194, 0, 0.35);
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--color-black);
            margin-bottom: 1.1rem;
            line-height: 1.12;
            letter-spacing: -0.8px;
        }
        
        .section-subtitle {
            color: var(--color-dark-gray);
            font-size: 1.18rem;
            line-height: 1.75;
            font-weight: 400;
        }
        
        /* About Section */
        .about-section {
            background: var(--color-white);
        }
        
        .about-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 35px 70px rgba(15, 15, 15, 0.22);
            border: 4px solid var(--color-white);
        }
        
        .about-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(230, 194, 0, 0.12), rgba(15, 15, 15, 0.08));
            z-index: 1;
            pointer-events: none;
        }
        
        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .about-image-wrapper:hover img {
            transform: scale(1.1);
        }
        
        .about-content {
            padding: 1.2rem 0 1.2rem 2.2rem;
        }
        
        .about-content .lead {
            color: var(--color-gold);
            font-weight: 700;
            font-size: 1.18rem;
            margin-bottom: 2rem;
            position: relative;
            padding-left: 1.5rem;
        }
        
        .about-content .lead::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 4px;
            height: 24px;
            background: var(--color-gold);
            border-radius: 2px;
        }
        
        .about-content p {
            color: var(--color-dark-gray);
            line-height: 1.9;
            margin-bottom: 1.3rem;
            font-size: 1.02rem;
        }
        
        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.1rem;
            margin: 2.2rem 0;
        }
        
        .highlight-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-weight: 600;
            color: var(--color-black);
            font-size: 0.98rem;
        }
        
        .highlight-item i {
            color: var(--color-gold);
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
            color: var(--color-white);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: -45%;
            left: -18%;
            width: 650px;
            height: 650px;
            background: radial-gradient(circle, rgba(230, 194, 0, 0.22) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatPulse 25s infinite ease-in-out;
        }
        
        .counter-section::after {
            content: '';
            position: absolute;
            bottom: -28%;
            right: -8%;
            width: 550px;
            height: 550px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .counter-item {
            text-align: center;
            padding: 2.2rem 1.6rem;
            position: relative;
            z-index: 2;
        }
        
        .counter-number {
            font-size: 4rem;
            font-weight: 900;
            color: var(--color-gold);
            display: block;
            margin-bottom: 0.45rem;
            line-height: 1;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .counter-label {
            font-size: 1.12rem;
            color: rgba(255, 255, 255, 0.94);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            background: var(--color-light-gray);
        }
        
        .vm-card {
            background: var(--color-white);
            padding: 3.4rem;
            border-radius: 26px;
            box-shadow: 0 22px 55px rgba(15, 15, 15, 0.14);
            transition: all 0.45s ease;
            height: 100%;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--color-gold);
        }
        
        .vm-card:hover {
            transform: translateY(-14px);
            border-color: var(--color-gold);
            box-shadow: 0 35px 80px rgba(15, 15, 15, 0.22);
        }
        
        .vm-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--color-gold), #c9a900);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2.4rem;
            color: var(--color-black);
            box-shadow: 0 12px 30px rgba(230, 194, 0, 0.45);
        }
        
        .vm-title {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-black);
            margin-bottom: 1.4rem;
            letter-spacing: -0.5px;
        }
        
        .vm-card p {
            color: var(--color-dark-gray);
            line-height: 1.88;
            font-size: 1.04rem;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            background: var(--color-white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.6rem;
        }
        
        .feature-card {
            padding: 2.4rem;
            border-radius: 22px;
            transition: all 0.4s ease;
            background: var(--color-light-gray);
            border: 3px solid transparent;
        }
        
        .feature-card:hover {
            background: var(--color-white);
            border-color: var(--color-gold);
            transform: translateY(-7px);
            box-shadow: 0 22px 50px rgba(15, 15, 15, 0.16);
        }
        
        .feature-icon {
            width: 76px;
            height: 76px;
            background: var(--color-gold);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--color-black);
            box-shadow: 0 11px 28px rgba(230, 194, 0, 0.42);
            transition: transform 0.35s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.08) rotate(5deg);
        }
        
        .feature-title {
            font-weight: 700;
            color: var(--color-black);
            margin-bottom: 1rem;
            font-size: 1.28rem;
            letter-spacing: -0.3px;
        }
        
        .feature-desc {
            color: var(--color-dark-gray);
            font-size: 1rem;
            line-height: 1.78;
        }
        
        /* Creative Work Process */
        .process-section {
            background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 12% 28%, rgba(230, 194, 0, 0.09) 0%, transparent 42%),
                radial-gradient(circle at 88% 72%, rgba(15, 15, 15, 0.06) 0%, transparent 42%);
            pointer-events: none;
        }
        
        .process-timeline {
            position: relative;
            max-width: 1150px;
            margin: 0 auto;
            padding: 2.2rem 0;
        }
        
        .process-step-wrapper {
            margin-bottom: 3.8rem;
            position: relative;
        }
        
        .process-step-card {
            background: var(--color-white);
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 28px 70px rgba(15, 15, 15, 0.14);
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 2.8rem;
            align-items: center;
            position: relative;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 3px solid transparent;
        }
        
        .process-step-card:hover {
            transform: translateY(-14px) scale(1.025);
            box-shadow: 0 40px 95px rgba(15, 15, 15, 0.24);
            border-color: var(--color-gold);
        }
        
        .step-number-badge {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 115px;
        }
        
        .step-number {
            font-size: 4.8rem;
            font-weight: 900;
            color: rgba(230, 194, 0, 0.14);
            line-height: 1;
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 0;
            font-family: 'Poppins', sans-serif;
        }
        
        .step-icon-wrapper {
            width: 110px;
            height: 110px;
            background: var(--color-gold);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            box-shadow: 0 17px 45px rgba(230, 194, 0, 0.48);
            transition: all 0.45s ease;
        }
        
        .process-step-card:hover .step-icon-wrapper {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 24px 65px rgba(230, 194, 0, 0.62);
        }
        
        .step-icon-wrapper i {
            font-size: 2.8rem;
            color: var(--color-black);
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-title {
            font-size: 1.82rem;
            font-weight: 800;
            color: var(--color-black);
            margin-bottom: 1.1rem;
            position: relative;
            padding-bottom: 0.7rem;
            letter-spacing: -0.4px;
        }
        
        .step-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 75px;
            height: 4px;
            background: var(--color-gold);
            border-radius: 3px;
        }
        
        .step-desc {
            color: var(--color-dark-gray);
            line-height: 1.92;
            margin-bottom: 1.5rem;
            font-size: 1.04rem;
        }
        
        .step-features {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }
        
        .step-features li {
            color: var(--color-black);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.98rem;
        }
        
        .step-features i {
            color: var(--color-gold);
            font-size: 1.15rem;
            flex-shrink: 0;
        }
        
        .step-visual {
            width: 275px;
            height: 195px;
            border-radius: 22px;
            overflow: hidden;
            box-shadow: 0 17px 45px rgba(0, 0, 0, 0.14);
            position: relative;
            flex-shrink: 0;
            border: 3px solid var(--color-white);
        }
        
        .step-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .process-step-card:hover .step-visual img {
            transform: scale(1.14);
        }
        
        .step-visual::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.28) 0%, transparent 100%);
            pointer-events: none;
        }
        
        /* Connector Line */
        .process-connector {
            position: absolute;
            left: 50%;
            top: 90px;
            width: 4px;
            height: calc(100% - 180px);
            transform: translateX(-50%);
            z-index: -1;
            opacity: 0.28;
        }
        
        .process-connector path {
            stroke: var(--color-gold);
            stroke-width: 3.5;
            fill: none;
            stroke-dasharray: 12, 6;
            animation: dashFlow 1.8s linear infinite;
        }
        
        @keyframes dashFlow {
            to { stroke-dashoffset: -36; }
        }
        
        /* Alternating Layout */
        .process-step-wrapper:nth-child(even) .process-step-card {
            grid-template-columns: auto 1fr auto;
            direction: rtl;
        }
        
        .process-step-wrapper:nth-child(even) .process-step-card > * {
            direction: ltr;
        }
        
        .process-step-wrapper:nth-child(even) .step-content {
            text-align: right;
        }
        
        .process-step-wrapper:nth-child(even) .step-title::after {
            left: auto;
            right: 0;
        }
        
        /* Booking Form */
        .booking-section {
            background: var(--color-white);
        }
        
        .booking-form-container {
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.97), rgba(240, 240, 240, 0.99));
            padding: 4.2rem;
            border-radius: 34px;
            box-shadow: 0 32px 80px rgba(15, 15, 15, 0.17);
            border: 3px solid rgba(230, 194, 0, 0.25);
            position: relative;
            overflow: hidden;
        }
        
        .booking-form-container::before {
            content: '';
            position: absolute;
            top: -45%;
            right: -28%;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(230, 194, 0, 0.18) 0%, transparent 72%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        .form-label {
            font-weight: 700;
            color: var(--color-black);
            margin-bottom: 0.7rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-size: 0.92rem;
        }
        
        .form-control, .form-select {
            border: 2.5px solid var(--color-border);
            border-radius: 16px;
            padding: 1.05rem 1.4rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1.02rem;
            transition: all 0.35s ease;
            background: var(--color-white);
            font-weight: 400;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 0 5px rgba(230, 194, 0, 0.18);
            outline: none;
        }
        
        .form-control.is-invalid {
            border-color: #dc3545;
            box-shadow: 0 0 0 5px rgba(220, 53, 69, 0.18);
        }
        
        .alert-custom {
            display: none;
            border-radius: 16px;
            font-weight: 600;
            margin-top: 1.3rem;
            padding: 1.1rem 1.6rem;
            border: none;
            animation: slideInUp 0.45s ease;
            background: rgba(230, 194, 0, 0.15);
            color: var(--color-black);
            border-left: 4px solid var(--color-gold);
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(-12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Services Section */
        .services-section {
            background: var(--color-light-gray);
        }
        
        .service-card {
            background: var(--color-white);
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 22px 60px rgba(15, 15, 15, 0.14);
            transition: all 0.45s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 3px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-16px);
            box-shadow: 0 38px 90px rgba(15, 15, 15, 0.24);
            border-color: var(--color-gold);
        }
        
        .service-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }
        
        .service-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 38%, rgba(15, 15, 15, 0.22) 100%);
            pointer-events: none;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.18);
        }
        
        .service-content {
            padding: 2.4rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-weight: 800;
            color: var(--color-black);
            font-size: 1.55rem;
            margin-bottom: 1.2rem;
            line-height: 1.32;
            letter-spacing: -0.3px;
        }
        
        .service-desc {
            color: var(--color-dark-gray);
            line-height: 1.86;
            margin-bottom: 2rem;
            flex: 1;
            font-size: 1rem;
        }
        
        /* Reviews Section */
        .reviews-section {
            background: var(--color-white);
        }
        
        .review-card {
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.97), rgba(240, 240, 240, 0.99));
            padding: 2.8rem;
            border-radius: 26px;
            margin: 1.1rem;
            position: relative;
            transition: all 0.4s ease;
            border: 3px solid rgba(230, 194, 0, 0.18);
        }
        
        .review-card:hover {
            transform: translateY(-9px);
            border-color: var(--color-gold);
            box-shadow: 0 28px 68px rgba(15, 15, 15, 0.2);
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 22px;
            left: 28px;
            font-size: 6.5rem;
            font-weight: 900;
            color: rgba(230, 194, 0, 0.14);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }
        
        .review-stars {
            color: var(--color-gold);
            margin-bottom: 1.3rem;
            font-size: 1.2rem;
            position: relative;
            z-index: 2;
            font-weight: 700;
        }
        
        .review-text {
            color: var(--color-dark-gray);
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.88;
            position: relative;
            z-index: 2;
            font-size: 1.04rem;
            font-weight: 400;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1.1rem;
            position: relative;
            z-index: 2;
        }
        
        .reviewer-avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--color-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-black);
            font-weight: 800;
            font-size: 1.4rem;
            flex-shrink: 0;
            box-shadow: 0 8px 22px rgba(230, 194, 0, 0.4);
        }
        
        .reviewer-name {
            font-weight: 700;
            color: var(--color-black);
            font-size: 1.12rem;
            letter-spacing: -0.2px;
        }
        
        .reviewer-location {
            color: var(--color-dark-gray);
            font-size: 0.94rem;
            font-weight: 500;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--color-light-gray);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1.3rem;
            border-radius: 20px !important;
            overflow: hidden;
            background: var(--color-white);
            box-shadow: 0 9px 28px rgba(15, 15, 15, 0.09);
            border: 3px solid transparent;
            transition: all 0.35s ease;
        }
        
        .accordion-item:hover {
            border-color: var(--color-gold);
            transform: translateX(6px);
            box-shadow: 0 14px 38px rgba(15, 15, 15, 0.14);
        }
        
        .accordion-button {
            background: var(--color-white);
            color: var(--color-black);
            font-weight: 700;
            padding: 1.7rem 2.2rem;
            border: none;
            box-shadow: none !important;
            font-size: 1.1rem;
            transition: all 0.35s ease;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            font-size: 1.04rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--color-gold);
            color: var(--color-black);
        }
        
        .accordion-button::after {
            background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F0F0F'%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");
            transition: transform 0.35s ease;
            width: 1.3rem;
            height: 1.3rem;
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F0F0F'%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 {
            background: var(--color-white);
            color: var(--color-dark-gray);
            padding: 1.5rem 2.2rem 2.2rem;
            line-height: 1.92;
            font-size: 1.04rem;
            border-top: 2px solid var(--color-border);
            font-weight: 400;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
            color: var(--color-white);
            text-align: center;
            padding: 6.5rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -38%;
            left: -18%;
            width: 750px;
            height: 750px;
            background: radial-gradient(circle, rgba(230, 194, 0, 0.32) 0%, transparent 72%);
            border-radius: 50%;
            animation: floatPulse 24s infinite ease-in-out;
        }
        
        .cta-title {
            font-size: 2.95rem;
            font-weight: 800;
            margin-bottom: 1.3rem;
            position: relative;
            z-index: 2;
            letter-spacing: -0.6px;
        }
        
        .cta-text {
            font-size: 1.28rem;
            margin-bottom: 2.7rem;
            color: rgba(255, 255, 255, 0.96);
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            font-weight: 400;
        }
        
        .btn-white {
            background: var(--color-gold);
            color: var(--color-black);
            padding: 1.15rem 3.4rem;
            border-radius: 50px;
            font-weight: 800;
            border: 3px solid var(--color-gold);
            transition: all 0.4s ease;
            font-size: 1.08rem;
            box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        
        .btn-white:hover {
            background: var(--color-white);
            color: var(--color-black);
            transform: translateY(-5px);
            box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
            border-color: var(--color-white);
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--color-white);
        }
        
        .contact-info-box {
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.97), rgba(240, 240, 240, 0.99));
            padding: 2.1rem 1.9rem;
            border-radius: 20px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1.3rem;
            transition: all 0.4s ease;
            border: 3px solid transparent;
        }
        
        .contact-info-box:hover {
            transform: translateX(9px);
            border-color: var(--color-gold);
            box-shadow: 0 17px 45px rgba(15, 15, 15, 0.14);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--color-gold);
            color: var(--color-black);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            box-shadow: 0 11px 28px rgba(230, 194, 0, 0.42);
            font-weight: 700;
        }
        
        .contact-details h5 {
            color: var(--color-black);
            font-weight: 800;
            margin-bottom: 0.35rem;
            font-size: 1.12rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 1rem;
        }
        
        .contact-details p {
            color: var(--color-dark-gray);
            margin: 0;
            font-size: 1rem;
            line-height: 1.65;
            font-weight: 500;
        }
        
        .contact-form-container {
            background: linear-gradient(135deg, rgba(248, 249, 250, 0.97), rgba(240, 240, 240, 0.99));
            padding: 3.7rem;
            border-radius: 30px;
            border: 3px solid rgba(230, 194, 0, 0.25);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
            color: var(--color-white);
            padding: 6rem 0 2.8rem;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--color-gold);
        }
        
        .footer-col {
            margin-bottom: 2.7rem;
        }
        
        .footer-title {
            font-size: 1.45rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: var(--color-white);
            position: relative;
            padding-bottom: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            font-size: 1.15rem;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 55px;
            height: 4px;
            background: var(--color-gold);
            border-radius: 2px;
        }
        
        .footer-desc {
            color: rgba(255, 255, 255, 0.88);
            line-height: 1.95;
            margin-bottom: 2rem;
            font-size: 1rem;
            font-weight: 400;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1.05rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.88);
            text-decoration: none;
            transition: all 0.35s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .footer-links a:hover {
            color: var(--color-gold);
            transform: translateX(7px);
        }
        
        .footer-links i {
            font-size: 0.9rem;
            color: var(--color-gold);
        }
        
        .newsletter-form .form-control {
            background: rgba(255, 255, 255, 0.14);
            border: 2px solid rgba(255, 255, 255, 0.28);
            color: var(--color-white);
            margin-bottom: 1.1rem;
            padding: 1.05rem 1.4rem;
            font-weight: 400;
        }
        
        .newsletter-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.72);
        }
        
        .newsletter-form .form-control:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--color-gold);
            box-shadow: 0 0 0 5px rgba(230, 194, 0, 0.28);
            color: var(--color-white);
        }
        
        .newsletter-form .btn {
            width: 100%;
            background: var(--color-gold);
            color: var(--color-black);
            border: none;
            font-weight: 800;
            padding: 1.05rem;
            border-radius: 16px;
            transition: all 0.35s ease;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            font-size: 0.95rem;
        }
        
        .newsletter-form .btn:hover {
            background: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(230, 194, 0, 0.45);
        }
        
        .footer-bottom {
            border-top: 2px solid rgba(255, 255, 255, 0.18);
            margin-top: 3.8rem;
            padding-top: 2.4rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.98rem;
            font-weight: 400;
        }
        
        .footer-bottom a {
            color: var(--color-gold);
            text-decoration: none;
            margin: 0 1.2rem;
            font-weight: 600;
            transition: color 0.35s ease;
        }
        
        .footer-bottom a:hover {
            color: var(--color-white);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.7rem;
        }
        
        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.14);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-size: 1.3rem;
            transition: all 0.35s ease;
            font-weight: 600;
        }
        
        .social-links a:hover {
            background: var(--color-gold);
            color: var(--color-black);
            transform: translateY(-5px);
            box-shadow: 0 10px 28px rgba(230, 194, 0, 0.48);
        }
        
        /* Responsive Design */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3.7rem;
            }
            .process-step-card {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2.2rem;
            }
            .process-step-wrapper:nth-child(even) .process-step-card {
                direction: ltr;
            }
            .process-step-wrapper:nth-child(even) .step-content {
                text-align: center;
            }
            .process-step-wrapper:nth-child(even) .step-title::after {
                left: 50%;
                right: auto;
                transform: translateX(-50%);
            }
            .step-visual {
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
            }
            .step-features {
                align-items: center;
            }
            .process-connector {
                display: none;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3.1rem;
            }
            .hero-section {
                min-height: auto;
                padding: 11rem 0 7rem;
            }
            .hero-image {
                margin-top: 4.5rem;
            }
            .section-title {
                font-size: 2.55rem;
            }
            section {
                padding: 6rem 0;
            }
            .booking-form-container {
                padding: 3rem 2.2rem;
            }
            .about-content {
                padding: 1rem 0 1rem 1.5rem;
            }
        }
        
        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.6rem;
            }
            .hero-subtitle {
                font-size: 1.15rem;
            }
            .hero-stats {
                flex-wrap: wrap;
                gap: 2rem;
            }
            .about-highlights {
                grid-template-columns: 1fr;
            }
            .counter-number {
                font-size: 3.2rem;
            }
            .vm-card {
                padding: 2.6rem;
            }
            .step-icon-wrapper {
                width: 95px;
                height: 95px;
            }
            .step-icon-wrapper i {
                font-size: 2.4rem;
            }
            .step-number {
                font-size: 4rem;
            }
            .contact-form-container {
                padding: 2.7rem 2rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            .navbar-brand i {
                font-size: 2rem;
            }
            .nav-link {
                margin: 0 0.45rem;
                font-size: 0.88rem;
            }
            .btn-custom, .btn-outline-custom, .btn-white {
                padding: 0.85rem 2rem;
                font-size: 0.88rem;
            }
            .hero-cta {
                flex-direction: column;
                align-items: flex-start;
            }
            .section-title {
                font-size: 2.1rem;
            }
            .process-step-card {
                padding: 2.4rem 1.8rem;
            }
            .step-icon-wrapper {
                width: 85px;
                height: 85px;
            }
            .step-visual {
                height: 175px;
            }
            .review-card {
                padding: 2.2rem 1.8rem;
            }
            .footer-col {
                text-align: center;
            }
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-links {
                justify-content: center;
            }
            .hero-title {
                font-size: 2.3rem;
            }
            .hero-badge {
                font-size: 0.86rem;
                padding: 0.55rem 1.3rem;
            }
        }
