
        :root {
            --light: #F8FAFC;
            --medium: #CBD5F5;
            --dark: #1E293B;
            --accent: #4F46E5;
            --accent-light: #818CF8;
            --success: #10B981;
            --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-soft: 0 8px 32px rgba(30, 41, 59, 0.1);
            --shadow-hover: 0 20px 40px rgba(30, 41, 59, 0.15);
        }
        
        * {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Modern Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--medium);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--dark);
            border-radius: 5px;
        }
        
        /* Navbar - Glass Morphism */
        .navbar {
            background: transparent !important;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 1.2rem 0;
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            background: rgba(248, 250, 252, 0.95) !important;
            box-shadow: var(--shadow-soft);
            padding: 0.8rem 0;
        }
        
        .navbar-brand {
            font-weight: 800;
            color: var(--dark) !important;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }
        
        .navbar-brand i {
            color: var(--accent);
            font-size: 2.2rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 0.9rem;
            position: relative;
            transition: all 0.3s;
            font-size: 0.98rem;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-cta {
            background: var(--gradient-primary);
            color: white !important;
            padding: 0.75rem 2.2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
        }
        
        /* Hero Section - 2026 Trend: Immersive Experience */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--light) 0%, var(--medium) 50%, var(--light) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: var(--gradient-primary);
            border-radius: 50%;
            opacity: 0.08;
            animation: float 8s ease-in-out infinite;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -15%;
            left: -8%;
            width: 500px;
            height: 500px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 10s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--dark);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.8rem;
            animation: fadeInUp 0.8s ease;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.1;
            margin-bottom: 1.8rem;
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .hero-title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: #475569;
            margin-bottom: 2.8rem;
            line-height: 1.9;
            max-width: 620px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }
        
        .hero-buttons {
            animation: fadeInUp 0.8s ease 0.6s both;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .btn-hero-primary {
            background: var(--dark);
            color: white;
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            transition: all 0.3s;
            border: 2px solid var(--dark);
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            background: transparent;
            color: var(--dark);
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: var(--dark);
            padding: 1.1rem 2.8rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            transition: all 0.3s;
            border: 2px solid var(--dark);
        }
        
        .btn-hero-secondary:hover {
            background: var(--dark);
            color: white;
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
            animation: fadeInRight 1s ease 0.8s both;
        }
        
        .hero-image img {
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
            width: 100%;
            max-width: 600px;
            transition: transform 0.5s ease;
        }
        
        .hero-image img:hover {
            transform: scale(1.02);
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Section Styles */
        section {
            padding: 100px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4.5rem;
        }
        
        .section-tag {
            display: inline-block;
            background: var(--medium);
            color: var(--dark);
            padding: 0.45rem 1.4rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
        }
        
        .section-title {
            font-size: 2.9rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1.2rem;
            line-height: 1.25;
        }
        
        .section-subtitle {
            color: #475569;
            font-size: 1.15rem;
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* About Section - Asymmetric Layout */
        .about-section {
            background: white;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4.5rem;
            align-items: center;
        }
        
        .about-image-wrapper {
            position: relative;
        }
        
        .about-image {
            border-radius: 24px;
            box-shadow: var(--shadow-hover);
            width: 100%;
            transition: transform 0.4s ease;
        }
        
        .about-image:hover {
            transform: scale(1.03);
        }
        
        .about-stats {
            position: absolute;
            bottom: -35px;
            right: -35px;
            background: var(--dark);
            color: white;
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-hover);
            min-width: 180px;
        }
        
        .about-stats h3 {
            font-size: 2.8rem;
            font-weight: 800;
            margin: 0;
            line-height: 1;
        }
        
        .about-stats p {
            margin: 0.3rem 0 0;
            font-size: 0.95rem;
            opacity: 0.9;
        }
        
        .about-content h2 {
            font-size: 2.6rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.8rem;
            line-height: 1.3;
        }
        
        .about-text {
            color: #475569;
            line-height: 1.95;
            margin-bottom: 2.2rem;
            font-size: 1.05rem;
        }
        
        .about-text p {
            margin-bottom: 1rem;
        }
        
        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        
        .about-highlight {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 500;
            color: var(--dark);
        }
        
        .about-highlight i {
            color: var(--accent);
            font-size: 1.2rem;
        }
        
        .btn-read-more {
            background: var(--dark);
            color: white;
            padding: 0.9rem 2.3rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid var(--dark);
        }
        
        .btn-read-more:hover {
            background: transparent;
            color: var(--dark);
            transform: translateY(-2px);
        }
        
        /* Counter Section - Modern Cards */
        .counter-section {
            background: var(--dark);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
        }
        
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .counter-card {
            text-align: center;
            padding: 2.2rem;
            background: var(--glass-bg);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            transition: all 0.3s;
        }
        
        .counter-card:hover {
            transform: translateY(-12px);
            background: rgba(255,255,255,0.15);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .counter-icon {
            font-size: 2.8rem;
            margin-bottom: 1.2rem;
            color: var(--accent-light);
        }
        
        .counter-number {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            display: block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .counter-label {
            font-size: 1.05rem;
            opacity: 0.95;
            font-weight: 500;
        }
        
        /* Vision & Mission - Split Design */
        .vision-mission-section {
            background: var(--medium);
        }
        
        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
        }
        
        .vm-card {
            background: white;
            padding: 3.2rem;
            border-radius: 24px;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        
        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }
        
        .vm-card.mission::before {
            background: var(--gradient-secondary);
        }
        
        .vm-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
        }
        
        .vm-icon {
            width: 75px;
            height: 75px;
            background: var(--medium);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1.8rem;
            transition: all 0.3s;
        }
        
        .vm-card:hover .vm-icon {
            background: var(--gradient-primary);
            color: white;
            transform: scale(1.1);
        }
        
        .vm-card h3 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 1.3rem;
            color: var(--dark);
        }
        
        .vm-card p {
            color: #475569;
            line-height: 1.9;
            font-size: 1.05rem;
        }
        
        /* Why Choose Us - Bento Grid */
        .why-choose-section {
            background: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.2rem;
        }
        
        .feature-card {
            background: var(--light);
            padding: 2.8rem;
            border-radius: 20px;
            transition: all 0.35s;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--medium);
        }
        
        .feature-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 0;
        }
        
        .feature-card:hover::after {
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            color: white;
            border-color: transparent;
        }
        
        .feature-card:hover .feature-icon,
        .feature-card:hover h4,
        .feature-card:hover p {
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .feature-icon {
            font-size: 2.8rem;
            color: var(--accent);
            margin-bottom: 1.8rem;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }
        
        .feature-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: var(--dark);
            position: relative;
            z-index: 1;
        }
        
        .feature-card p {
            color: #475569;
            line-height: 1.8;
            margin: 0;
            position: relative;
            z-index: 1;
            font-size: 1rem;
        }
        
        /* Work Process - Creative Timeline */
        .process-section {
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-section .section-title,
        .process-section .section-subtitle {
            color: white;
        }
        
        .process-section .section-subtitle {
            opacity: 0.9;
        }
        
        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 4.5rem;
            padding: 0 2rem;
        }
        
        .process-timeline::before {
            content: '';
            position: absolute;
            top: 55px;
            left: 8%;
            right: 8%;
            height: 4px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 1rem;
        }
        
        .process-step-number {
            width: 110px;
            height: 110px;
            background: white;
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.8rem;
            font-weight: 800;
            margin: 0 auto 1.8rem;
            position: relative;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transition: all 0.4s;
        }
        
        .process-step:hover .process-step-number {
            transform: scale(1.15) rotate(5deg);
            background: var(--dark);
            color: white;
        }
        
        .process-step h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
        }
        
        .process-step p {
            opacity: 0.95;
            font-size: 1rem;
            max-width: 260px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        /* Booking Form - Floating Card */
        .booking-section {
            background: var(--light);
            position: relative;
        }
        
        .booking-wrapper {
            max-width: 950px;
            margin: 0 auto;
            background: white;
            padding: 3.5rem;
            border-radius: 30px;
            box-shadow: var(--shadow-hover);
            position: relative;
            z-index: 1;
        }
        
        .form-control {
            padding: 1.1rem 1.6rem;
            border-radius: 14px;
            border: 2px solid var(--medium);
            margin-bottom: 1.6rem;
            font-size: 1.05rem;
            transition: all 0.3s;
            background: var(--light);
        }
        
        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
            background: white;
        }
        
        .form-select {
            padding: 1.1rem 1.6rem;
            border-radius: 14px;
            border: 2px solid var(--medium);
            margin-bottom: 1.6rem;
            font-size: 1.05rem;
            transition: all 0.3s;
            background: var(--light);
        }
        
        .form-select:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
        }
        
        .btn-submit {
            background: var(--gradient-primary);
            color: white;
            padding: 1.2rem 3.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.15rem;
            width: 100%;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
        }
        
        .alert {
            display: none;
            padding: 1.2rem 1.6rem;
            border-radius: 14px;
            margin-bottom: 1.8rem;
            font-weight: 500;
            animation: slideIn 0.4s ease;
        }
        
        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .alert-success {
            background: #D1FAE5;
            color: #065F46;
            border: 1px solid #A7F3D0;
        }
        
        .alert-error {
            background: #FEE2E2;
            color: #991B1B;
            border: 1px solid #FECACA;
        }
        
        /* Services - Masonry Grid */
        .services-section {
            background: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .service-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.35s;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--medium);
        }
        
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        
        .service-image {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.12);
        }
        
        .service-content {
            padding: 2.2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        
        .service-content p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 1.8rem;
            flex: 1;
            font-size: 1rem;
        }
        
        .btn-service {
            background: var(--dark);
            color: white;
            padding: 0.75rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s;
            align-self: center;
            border: 2px solid var(--dark);
            font-size: 0.95rem;
        }
        
        .btn-service:hover {
            background: transparent;
            color: var(--dark);
            transform: translateY(-2px);
        }
        
        /* Reviews - Carousel Style */
        .reviews-section {
            background: var(--light);
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.2rem;
        }
        
        .review-card {
            background: white;
            padding: 2.8rem;
            border-radius: 20px;
            box-shadow: var(--shadow-soft);
            transition: all 0.35s;
            position: relative;
            border: 1px solid var(--medium);
        }
        
        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 7rem;
            color: var(--medium);
            font-family: Georgia, serif;
            line-height: 1;
            opacity: 0.4;
        }
        
        .review-stars {
            color: #FBBF24;
            margin-bottom: 1.2rem;
            font-size: 1.15rem;
        }
        
        .review-text {
            color: #475569;
            line-height: 1.9;
            margin-bottom: 1.8rem;
            font-style: italic;
            font-size: 1.05rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
        
        .reviewer-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }
        
        .reviewer-details h5 {
            font-weight: 700;
            color: var(--dark);
            margin: 0;
            font-size: 1.1rem;
        }
        
        .reviewer-details span {
            color: #64748B;
            font-size: 0.95rem;
        }
        
        /* FAQ - Accordion Modern */
        .faq-section {
            background: white;
        }
        
        .faq-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1.2rem;
            background: var(--light);
            border-radius: 16px !important;
            overflow: hidden;
            border: 1px solid var(--medium);
            transition: all 0.3s;
        }
        
        .accordion-item:hover {
            border-color: var(--accent);
            transform: translateX(5px);
        }
        
        .accordion-button {
            background: var(--light);
            color: var(--dark);
            font-weight: 600;
            padding: 1.6rem 2.2rem;
            border: none;
            box-shadow: none !important;
            font-size: 1.15rem;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--dark);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            padding: 1.6rem 2.2rem;
            color: #475569;
            line-height: 1.9;
            background: white;
            font-size: 1.05rem;
        }
        
        /* CTA Section - Bold */
        .cta-section {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 110px 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(79,70,229,0.15) 0%, transparent 70%);
            animation: rotate 25s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-section h2 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 1.3rem;
            line-height: 1.2;
        }
        
        .cta-section p {
            font-size: 1.25rem;
            opacity: 0.92;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--dark);
            padding: 1.3rem 3.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.15rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            transition: all 0.35s;
            border: 2px solid white;
        }
        
        .btn-cta-large:hover {
            background: transparent;
            color: white;
            transform: translateY(-4px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.3);
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--light);
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4.5rem;
        }
        
        .contact-info h3 {
            font-size: 2.1rem;
            font-weight: 700;
            margin-bottom: 2.3rem;
            color: var(--dark);
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.8rem;
            margin-bottom: 2.3rem;
            padding: 1.8rem;
            background: white;
            border-radius: 18px;
            transition: all 0.35s;
            border: 1px solid var(--medium);
        }
        
        .contact-item:hover {
            transform: translateX(12px);
            box-shadow: var(--shadow-soft);
            border-color: var(--accent);
        }
        
        .contact-icon {
            width: 65px;
            height: 65px;
            background: var(--dark);
            color: white;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            flex-shrink: 0;
            transition: all 0.3s;
        }
        
        .contact-item:hover .contact-icon {
            background: var(--gradient-primary);
            transform: scale(1.1);
        }
        
        .contact-details h4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.6rem;
            font-size: 1.15rem;
        }
        
        .contact-details p {
            color: #475569;
            margin: 0;
            line-height: 1.75;
            font-size: 1.05rem;
        }
        
        .contact-form-wrapper {
            background: white;
            padding: 3.5rem;
            border-radius: 24px;
            box-shadow: var(--shadow-hover);
        }
        
        .contact-form-wrapper h3 {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 2.3rem;
            color: var(--dark);
        }
        
        /* Footer - Modern Dark */
        footer {
            background: var(--dark);
            color: white;
            padding: 85px 0 35px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.6fr;
            gap: 3.2rem;
            margin-bottom: 3.5rem;
        }
        
        .footer-col h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.8rem;
            color: white;
            position: relative;
            padding-bottom: 0.8rem;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }
        
        .footer-col p {
            color: #94A3B8;
            line-height: 1.9;
            margin-bottom: 1.8rem;
            font-size: 1.02rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            color: #94A3B8;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.02rem;
        }
        
        .footer-links a:hover {
            color: white;
            transform: translateX(6px);
        }
        
        .footer-links a i {
            font-size: 0.85rem;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover i {
            opacity: 1;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 1.1rem 1.4rem;
            border-radius: 12px;
            border: 1px solid #334155;
            background: #1E293B;
            color: white;
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
            transition: all 0.3s;
        }
        
        .newsletter-form input::placeholder {
            color: #64748B;
        }
        
        .newsletter-form input:focus {
            border-color: var(--accent);
            outline: none;
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.3);
        }
        
        .newsletter-form button {
            width: 100%;
            padding: 1.1rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 1.05rem;
        }
        
        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
        }
        
        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 2.3rem;
            text-align: center;
            color: #64748B;
            font-size: 1rem;
        }
        
        .footer-bottom a {
            color: #94A3B8;
            text-decoration: none;
            margin: 0 1.2rem;
            transition: color 0.3s;
            font-weight: 500;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .about-grid,
            .vm-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 3.5rem;
            }
            
            .about-image-wrapper {
                order: -1;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .process-timeline {
                flex-direction: column;
                gap: 3.5rem;
            }
            
            .process-timeline::before {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.6rem;
            }
            
            .hero-subtitle {
                font-size: 1.15rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .features-grid,
            .services-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .counter-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .btn-cta {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* Utility Classes */
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hover-lift {
            transition: transform 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-5px);
        }
        
        .img-rounded {
            border-radius: 20px;
            overflow: hidden;
        }
