
        :root {
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --mid-gray: #D1D5DB;
            --dark: #111827;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: var(--white);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        /* 2026 Design Trends: Minimalist Depth & Subtle Shadows */
        .shadow-2026 {
            box-shadow: 0 20px 40px rgba(17, 24, 39, 0.06);
            border: 1px solid rgba(17, 24, 39, 0.03);
        }

        .rounded-2026 {
            border-radius: 24px;
        }

        /* Navbar */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--dark) !important;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand i {
            color: var(--dark);
            font-size: 1.8rem;
        }

        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 5px;
            padding: 8px 16px !important;
            border-radius: 50px;
            position: relative;
        }

        .nav-link:hover {
            background-color: var(--light-gray);
            color: var(--dark) !important;
        }

        .btn-nav-cta {
            background-color: var(--dark);
            color: var(--white) !important;
            padding: 10px 28px !important;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--dark);
        }

        .btn-nav-cta:hover {
            background-color: transparent !important;
            color: var(--dark) !important;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.7)), 
                        url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            display: flex;
            align-items: center;
            color: var(--white);
            position: relative;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-content p {
            font-size: 1.2rem;
            font-weight: 300;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .btn-hero {
            background-color: var(--white);
            color: var(--dark);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-block;
            border: 2px solid var(--white);
        }

        .btn-hero:hover {
            background-color: transparent;
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        /* Section Titles */
        .section-heading {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .section-subtext {
            color: #6B7280;
            font-size: 1.1rem;
            font-weight: 400;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        /* About Section */
        .about-img-wrapper {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
            transform: translateY(20px);
        }

        .about-img-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-img-wrapper:hover img {
            transform: scale(1.05);
        }

        .btn-read-more {
            background-color: var(--dark);
            color: var(--white);
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            border: 2px solid var(--dark);
        }

        .btn-read-more:hover {
            background-color: transparent;
            color: var(--dark);
        }

        /* Counter */
        .counter-section {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0;
        }

        .counter-item h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .counter-item p {
            color: var(--mid-gray);
            font-weight: 500;
            margin: 0;
        }

        /* Vision & Mission */
        .vm-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 30px;
            height: 100%;
            border: 1px solid var(--light-gray);
            transition: all 0.4s ease;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background-color: var(--light-gray);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .feature-card {
            padding: 30px;
            background: var(--white);
            border-radius: 24px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .feature-card:hover {
            border-color: var(--light-gray);
            box-shadow: 0 15px 30px rgba(17, 24, 39, 0.05);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
            display: block;
        }

        /* Work Process */
        .process-step {
            position: relative;
            padding-left: 80px;
            margin-bottom: 60px;
        }

        .process-step::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 60px;
            bottom: -60px;
            width: 2px;
            background-color: var(--light-gray);
        }

        .process-step:last-child::before {
            display: none;
        }

        .process-num {
            position: absolute;
            left: 0;
            top: 0;
            width: 58px;
            height: 58px;
            background-color: var(--dark);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            z-index: 2;
        }

        /* Service Cards */
        .service-card-custom {
            background-color: var(--light-gray);
            border-radius: 30px;
            overflow: hidden;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid transparent;
        }

        .service-card-custom:hover {
            border-color: var(--mid-gray);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
        }

        .service-card-custom img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 30px;
        }

        /* Booking Form */
        .booking-form-wrapper {
            background-color: var(--light-gray);
            border-radius: 30px;
            padding: 50px;
        }

        .form-control-custom {
            border: 2px solid var(--mid-gray);
            border-radius: 16px;
            padding: 14px 20px;
            font-family: 'Poppins', sans-serif;
            background-color: var(--white);
            transition: border-color 0.3s;
        }

        .form-control-custom:focus {
            border-color: var(--dark);
            box-shadow: none;
            outline: none;
        }

        .btn-submit-custom {
            background-color: var(--dark);
            color: var(--white);
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--dark);
            width: 100%;
            font-size: 1.1rem;
        }

        .btn-submit-custom:hover {
            background-color: transparent;
            color: var(--dark);
        }

        /* Reviews */
        .review-card {
            background-color: var(--light-gray);
            padding: 35px;
            border-radius: 24px;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            border-color: var(--mid-gray);
        }

        .review-stars {
            color: #FBBF24;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        /* FAQ */
        .accordion-button {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--dark);
            background-color: var(--white);
            box-shadow: none;
            border-radius: 16px !important;
            padding: 20px 25px;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--light-gray);
            color: var(--dark);
        }

        .accordion-button::after {
            width: 20px;
            height: 20px;
            background-size: 20px;
        }

        .accordion-body {
            font-weight: 400;
            color: #4B5563;
            padding: 0 25px 20px;
        }

        .accordion-item {
            border: 1px solid var(--light-gray);
            border-radius: 16px !important;
            margin-bottom: 15px;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.95)), 
                        url('https://images.pexels.com/photos/1643383/pexels-photo-1643383.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            color: var(--white);
            padding: 100px 0;
        }

        /* Contact Form */
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }

        .contact-info-icon {
            width: 50px;
            height: 50px;
            background-color: var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: var(--dark);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        footer h5 {
            font-weight: 700;
            margin-bottom: 25px;
            color: var(--white);
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 12px;
        }

        footer ul li a {
            color: var(--mid-gray);
            font-weight: 400;
        }

        footer ul li a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-subscribe-form input {
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
            padding: 12px 20px;
            border-radius: 50px;
            width: 100%;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
        }

        .footer-subscribe-form input::placeholder {
            color: var(--mid-gray);
        }

        .footer-subscribe-form button {
            background-color: var(--white);
            color: var(--dark);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            width: 100%;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .footer-subscribe-form button:hover {
            background-color: var(--mid-gray);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            margin-top: 50px;
            color: var(--mid-gray);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--mid-gray);
            font-weight: 500;
        }
        .footer-bottom a:hover {
            color: var(--white);
        }

        /* Success Message Alert */
        .custom-success-msg {
            display: none;
            background-color: #ECFDF5;
            color: #065F46;
            padding: 15px 20px;
            border-radius: 16px;
            border: 1px solid #A7F3D0;
            margin-top: 20px;
            font-weight: 500;
        }
        .custom-success-msg.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-content h1 { font-size: 2.8rem; }
            .section-heading { font-size: 2.2rem; }
        }
        @media (max-width: 767px) {
            .hero-content h1 { font-size: 2.2rem; }
            .hero-section { min-height: 80vh; }
        }
