
        /* ===== CSS Variables ===== */
        :root {
            --color-primary: #FF512F;
            --color-secondary: #DD2476;
            --color-accent: #24C6DC;
            --gradient-main: linear-gradient(135deg, #FF512F 0%, #DD2476 100%);
            --gradient-accent: linear-gradient(135deg, #24C6DC 0%, #512FDA 100%);
            --gradient-hero: linear-gradient(135deg, #FFF5F2 0%, #FFE4EC 50%, #E0F7FA 100%);
            --white: #FFFFFF;
            --text-dark: #1A1A2E;
            --text-light: #5A5A7A;
            --light-bg: #F8F9FC;
            --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
            --shadow-lg: 0 16px 56px rgba(255,81,47,0.18);
            --shadow-xl: 0 24px 80px rgba(0,0,0,0.12);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-full: 50px;
        }

        /* ===== Reset & Base Styles ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* ===== Section Spacing ===== */
        .section {
            padding: 110px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255,81,47,0.1) 0%, rgba(221,36,118,0.1) 100%);
            color: var(--color-primary);
            padding: 10px 24px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }

        .section-title h2 {
            font-size: 48px;
            font-weight: 800;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            line-height: 1.2;
        }

        .section-title p {
            font-size: 17px;
            color: var(--text-light);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.75;
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 38px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.6s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-main);
            color: white;
            box-shadow: 0 8px 30px rgba(255,81,47,0.35);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(255,81,47,0.45);
        }

        .btn-outline {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .btn-outline:hover {
            background: var(--gradient-main);
            color: white;
            transform: translateY(-4px);
            border-color: transparent;
        }

        .btn-white {
            background: white;
            color: var(--color-primary);
            box-shadow: var(--shadow-md);
        }

        .btn-white:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        /* ===== Navigation Bar ===== */
        .navbar {
            padding: 22px 0;
            position: relative;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0,0,0,0.08);
            padding: 14px 0;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 23px;
            font-weight: 800;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .logo i {
            font-size: 34px;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 38px;
            align-items: center;
        }

        .nav-menu a {
            color: var(--text-dark);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 6px 0;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
            background: var(--gradient-main);
            border-radius: 2px;
            transition: var(--transition);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-main);
            color: white !important;
            padding: 13px 30px !important;
            border-radius: var(--radius-full) !important;
            font-weight: 600 !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(255,81,47,0.35);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 3px;
            transition: var(--transition);
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ===== Hero Section ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            background: var(--gradient-hero);
            overflow: hidden;
            padding-top: 110px;
        }

        .hero-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.5;
        }

        .blob-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,81,47,0.2) 0%, transparent 70%);
            top: -200px;
            right: -150px;
            animation: blobFloat 15s ease-in-out infinite;
        }

        .blob-2 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(221,36,118,0.18) 0%, transparent 70%);
            bottom: -150px;
            left: -100px;
            animation: blobFloat 18s ease-in-out infinite reverse;
        }

        .blob-3 {
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(36,198,220,0.15) 0%, transparent 70%);
            top: 40%;
            left: 35%;
            animation: blobFloat 12s ease-in-out infinite 3s;
        }

        @keyframes blobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(40px, -30px) scale(1.08); }
            66% { transform: translate(-25px, 25px) scale(0.95); }
        }

        .hero-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF512F' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(60px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 13px 26px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            color: var(--color-secondary);
            box-shadow: var(--shadow-sm);
            margin-bottom: 26px;
            border: 1px solid rgba(255,81,47,0.1);
        }

        .hero-badge i {
            color: var(--color-primary);
            font-size: 16px;
        }

        .hero-badge .pulse-dot {
            width: 10px;
            height: 10px;
            background: var(--color-primary);
            border-radius: 50%;
            animation: pulseDot 2s infinite;
        }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,81,47,0.4); }
            50% { opacity: 0.8; transform: scale(1.3); box-shadow: 0 0 0 10px rgba(255,81,47,0); }
        }

        .hero-text h1 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.15;
            color: var(--text-dark);
            margin-bottom: 26px;
            letter-spacing: -1px;
        }

        .hero-text h1 .highlight {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 38px;
            line-height: 1.85;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 52px;
        }

        .hero-stats {
            display: flex;
            gap: 48px;
            padding-top: 36px;
            border-top: 2px solid rgba(255,81,47,0.12);
        }

        .stat-item h3 {
            font-size: 32px;
            font-weight: 800;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat-item p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
            font-weight: 500;
        }

        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.3s both;
        }

        .hero-image-main {
            position: relative;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .hero-image-main img {
            width: 100%;
            height: 580px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .hero-image-main:hover img {
            transform: scale(1.05);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 22px 26px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            animation: floatCard 5s ease-in-out infinite;
            border-left: 4px solid var(--color-primary);
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .floating-card.card-1 {
            top: 50px;
            left: -50px;
            animation-delay: 0s;
        }

        .floating-card.card-2 {
            bottom: 70px;
            right: -40px;
            animation-delay: 1.5s;
        }

        .floating-card.card-3 {
            bottom: -30px;
            left: 50px;
            animation-delay: 3s;
            border-left-color: var(--color-accent);
        }

        .floating-card .card-icon {
            width: 54px;
            height: 54px;
            background: var(--gradient-main);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            margin-bottom: 12px;
        }

        .floating-card.card-3 .card-icon {
            background: var(--gradient-accent);
        }

        .floating-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .floating-card p {
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
        }

        /* ===== About Section ===== */
        .about-section {
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 90px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            border-radius: 28px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .experience-badge {
            position: absolute;
            bottom: -35px;
            right: -35px;
            background: var(--gradient-main);
            color: white;
            padding: 28px 36px;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-lg);
        }

        .experience-badge h3 {
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 6px;
        }

        .experience-badge p {
            font-size: 14px;
            margin: 0;
            opacity: 0.95;
        }

        .about-content h2 {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 18px;
            line-height: 1.25;
        }

        .about-content .subtitle {
            color: var(--color-primary);
            font-weight: 600;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            margin-bottom: 14px;
            display: block;
        }

        .about-content > p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.9;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin: 32px 0 36px;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-item i {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(255,81,47,0.1) 0%, rgba(221,36,118,0.1) 100%);
            color: var(--color-primary);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .about-feature-item span {
            font-weight: 500;
            font-size: 15px;
            color: var(--text-dark);
        }

        /* ===== Counter Section ===== */
        .counter-section {
            background: var(--gradient-main);
            position: relative;
            overflow: hidden;
        }

        .counter-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.6;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 44px;
            position: relative;
            z-index: 2;
        }

        .counter-item {
            text-align: center;
            color: white;
            padding: 36px 20px;
            position: relative;
        }

        .counter-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 65%;
            background: rgba(255,255,255,0.25);
        }

        .counter-item:last-child::after {
            display: none;
        }

        .counter-icon-wrap {
            width: 90px;
            height: 90px;
            background: rgba(255,255,255,0.15);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 38px;
            margin: 0 auto 22px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .counter-item:hover .counter-icon-wrap {
            background: rgba(255,255,255,0.25);
            transform: scale(1.12) rotate(8deg);
        }

        .counter-number {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 8px;
            line-height: 1;
        }

        .counter-label {
            font-size: 16px;
            opacity: 0.92;
            font-weight: 400;
        }

        /* ===== Vision & Mission Section ===== */
        .vision-mission-section {
            background: var(--light-bg);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 44px;
        }

        .vm-card {
            background: white;
            padding: 52px;
            border-radius: 28px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid transparent;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(255,81,47,0.15);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-main);
        }

        .vm-card::after {
            content: '';
            position: absolute;
            bottom: -60px;
            right: -60px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(255,81,47,0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .vm-icon {
            width: 78px;
            height: 78px;
            background: linear-gradient(135deg, rgba(255,81,47,0.1) 0%, rgba(221,36,118,0.1) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: var(--color-primary);
            margin-bottom: 28px;
            transition: var(--transition);
        }

        .vm-card:hover .vm-icon {
            transform: scale(1.08) rotate(-5deg);
        }

        .vm-card h3 {
            font-size: 30px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .vm-card p {
            color: var(--text-light);
            line-height: 1.9;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }

        /* ===== Why Choose Us Section ===== */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .why-us-card {
            display: flex;
            gap: 22px;
            padding: 36px;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .why-us-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gradient-main);
            transition: height 0.4s ease;
        }

        .why-us-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255,81,47,0.1);
        }

        .why-us-card:hover::before {
            height: 100%;
        }

        .why-us-icon {
            width: 68px;
            height: 68px;
            min-width: 68px;
            background: var(--gradient-main);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            transition: var(--transition);
        }

        .why-us-card:hover .why-us-icon {
            transform: scale(1.1) rotate(-8deg);
        }

        .why-us-content h4 {
            font-size: 21px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .why-us-content p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.75;
        }

        /* ===== Work Process Section ===== */
        .process-section {
            background: var(--light-bg);
        }

        .process-container {
            position: relative;
            max-width: 1050px;
            margin: 0 auto;
        }

        .process-timeline {
            position: absolute;
            top: 65px;
            left: 8%;
            right: 8%;
            height: 5px;
            background: var(--gradient-main);
            border-radius: 3px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            position: relative;
            z-index: 2;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-circle {
            width: 130px;
            height: 130px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: var(--transition);
            cursor: pointer;
            border: 3px solid transparent;
        }

        .step-circle:hover {
            transform: scale(1.12);
            box-shadow: var(--shadow-xl);
            border-color: var(--color-primary);
        }

        .step-circle i {
            font-size: 48px;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .step-number {
            position: absolute;
            top: -6px;
            right: -6px;
            width: 42px;
            height: 42px;
            background: var(--gradient-main);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 15px;
            box-shadow: 0 4px 14px rgba(255,81,47,0.35);
        }

        .process-step h4 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .process-step {
            animation: fadeInUp 0.7s ease-out forwards;
            opacity: 0;
        }

        .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-step:nth-child(2) { animation-delay: 0.3s; }
        .process-step:nth-child(3) { animation-delay: 0.5s; }
        .process-step:nth-child(4) { animation-delay: 0.7s; }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== Services Section ===== */
        .services-section {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 36px;
        }

        .service-card {
            background: var(--light-bg);
            border-radius: 28px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.04);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-image {
            height: 260px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(255,81,47,0.92) 0%, transparent 100%);
            padding: 28px 24px 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition);
        }

        .service-card:hover .service-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .service-overlay p {
            color: white;
            font-size: 14px;
            margin: 0;
            font-weight: 500;
        }

        .service-content {
            padding: 38px 34px;
            text-align: center;
        }

        .service-content h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .service-content p {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 28px;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--color-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 13px 32px;
            border: 2px solid var(--color-primary);
            border-radius: var(--radius-full);
            transition: var(--transition);
            min-width: 170px;
        }

        .service-btn:hover {
            background: var(--gradient-main);
            color: white;
            border-color: transparent;
            gap: 16px;
        }

        /* ===== Booking Form Section ===== */
        .booking-section {
            background: linear-gradient(135deg, #FFF5F2 0%, #FFE4EC 30%, #E8F8FF 70%, #E0F7FA 100%);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(255,81,47,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .booking-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .booking-info h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 22px;
            line-height: 1.25;
        }

        .booking-info > p {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 38px;
            line-height: 1.85;
        }

        .booking-features {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .booking-feature {
            display: flex;
            align-items: center;
            gap: 16px;
            background: white;
            padding: 18px 22px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .booking-feature:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--color-primary);
        }

        .booking-feature i {
            width: 46px;
            height: 46px;
            background: var(--gradient-main);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .booking-feature span {
            font-weight: 500;
            color: var(--text-dark);
            font-size: 15px;
        }

        .booking-form {
            background: white;
            padding: 52px;
            border-radius: 28px;
            box-shadow: var(--shadow-xl);
        }

        .form-header {
            margin-bottom: 34px;
        }

        .form-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .form-subtitle {
            color: var(--text-light);
            font-size: 15px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 14px;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #E8E8EE;
            border-radius: 14px;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            transition: var(--transition);
            outline: none;
            background: #FAFBFD;
        }

        .form-control:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 5px rgba(255,81,47,0.1);
            background: white;
        }

        .form-control.error {
            border-color: var(--color-secondary);
            background: #FFF5F7;
        }

        .error-message {
            color: var(--color-secondary);
            font-size: 13px;
            margin-top: 8px;
            display: none;
            font-weight: 500;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 130px;
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235A5A7A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 18px;
            padding-right: 48px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }

        .success-message {
            display: none;
            background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
            border: 2px solid #10B981;
            color: #047857;
            padding: 22px 28px;
            border-radius: 16px;
            text-align: center;
            margin-top: 24px;
            font-weight: 500;
            animation: successSlide 0.5s ease-out;
        }

        .success-message.show {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        @keyframes successSlide {
            from { opacity: 0; transform: translateY(-15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== Reviews Section ===== */
        .reviews-section {
            background: var(--light-bg);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .review-card {
            background: white;
            padding: 40px 34px;
            border-radius: 26px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            border: 1px solid rgba(0,0,0,0.04);
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 22px;
        }

        .review-stars i {
            color: #FBBF24;
            font-size: 19px;
        }

        .review-text {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 28px;
            font-style: italic;
            position: relative;
        }

        .quote-mark {
            position: absolute;
            top: -12px;
            left: -8px;
            font-size: 56px;
            color: rgba(255,81,47,0.1);
            font-family: Georgia, serif;
            line-height: 1;
            pointer-events: none;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .review-avatar {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(255,81,47,0.15);
        }

        .review-info h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .review-info span {
            font-size: 13px;
            color: var(--text-light);
        }

        .review-location {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--color-primary);
            font-size: 13px;
            margin-top: 4px;
            font-weight: 500;
        }

        /* ===== FAQ Section ===== */
        .faq-section {
            background: white;
        }

        .faq-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light-bg);
            border-radius: 18px;
            margin-bottom: 18px;
            overflow: hidden;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .faq-item:hover {
            border-color: rgba(255,81,47,0.15);
        }

        .faq-item.active {
            border-color: var(--color-primary);
            box-shadow: var(--shadow-md);
            background: white;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 26px 30px;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-dark);
            padding-right: 20px;
            line-height: 1.5;
        }

        .faq-toggle {
            width: 42px;
            height: 42px;
            background: var(--gradient-main);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: var(--transition);
            flex-shrink: 0;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
            background: var(--color-secondary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer-content {
            padding: 0 30px 28px;
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.85;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            background: var(--gradient-main);
            position: relative;
            overflow: hidden;
            padding: 120px 0;
        }

        .cta-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
        }

        .cta-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .cta-shape-1 {
            width: 550px;
            height: 550px;
            top: -200px;
            right: -100px;
            animation: ctaFloat 10s ease-in-out infinite;
        }

        .cta-shape-2 {
            width: 380px;
            height: 380px;
            bottom: -150px;
            left: -100px;
            animation: ctaFloat 13s ease-in-out infinite reverse;
        }

        @keyframes ctaFloat {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            color: white;
        }

        .cta-content h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 22px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 19px;
            opacity: 0.95;
            margin-bottom: 42px;
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.75;
        }

        .cta-btn-wrapper {
            animation: ctaBounce 2.5s ease-in-out infinite;
        }

        @keyframes ctaBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .cta-btn {
            background: white;
            color: var(--color-primary);
            padding: 20px 54px;
            font-size: 18px;
            font-weight: 700;
            border-radius: 55px;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            transition: var(--transition);
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--gradient-main);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .cta-btn:hover {
            transform: scale(1.08);
            box-shadow: 0 14px 50px rgba(0,0,0,0.3);
        }

        .cta-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-btn span,
        .cta-btn i {
            position: relative;
            z-index: 2;
        }

        .cta-btn:hover span,
        .cta-btn:hover i {
            color: white;
        }

        /* ===== Contact Section ===== */
        .contact-section {
            background: var(--light-bg);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 64px;
        }

        .contact-info h3 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 18px;
        }

        .contact-info > p {
            color: var(--text-light);
            font-size: 16px;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            background: white;
            padding: 24px;
            border-radius: 18px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-left: 3px solid transparent;
        }

        .contact-item:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--color-primary);
        }

        .contact-icon {
            width: 58px;
            height: 58px;
            background: var(--gradient-main);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 6px;
        }

        .contact-text p,
        .contact-text a {
            color: var(--text-light);
            font-size: 15px;
            transition: var(--transition);
            line-height: 1.6;
        }

        .contact-text a:hover {
            color: var(--color-primary);
        }

        .contact-form-wrapper {
            background: white;
            padding: 52px;
            border-radius: 28px;
            box-shadow: var(--shadow-lg);
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 90px 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-main);
        }

        .footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
            gap: 48px;
            padding-bottom: 70px;
            position: relative;
            z-index: 2;
        }

        .footer-col h4 {
            font-size: 21px;
            font-weight: 700;
            margin-bottom: 26px;
            position: relative;
            padding-bottom: 14px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 45px;
            height: 3px;
            background: var(--gradient-main);
            border-radius: 2px;
        }

        .footer-about p {
            color: rgba(255,255,255,0.72);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 26px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 46px;
            height: 46px;
            background: rgba(255,255,255,0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 19px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gradient-main);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.72);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }

        .footer-links a i {
            font-size: 10px;
            color: var(--color-primary);
        }

        .newsletter-desc {
            color: rgba(255,255,255,0.72);
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .newsletter-form input {
            padding: 16px 20px;
            border: 2px solid rgba(255,255,255,0.15);
            border-radius: 14px;
            background: rgba(255,255,255,0.06);
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            outline: none;
            transition: var(--transition);
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-form input:focus {
            border-color: var(--color-primary);
            background: rgba(255,255,255,0.1);
        }

        .newsletter-form button {
            padding: 16px 28px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(255,81,47,0.4);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 28px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
            position: relative;
            z-index: 2;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
        }

        .footer-legal {
            display: flex;
            gap: 28px;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            transition: var(--transition);
        }

        .footer-legal a:hover {
            color: white;
        }

        /* ===== Back to Top Button ===== */
        .back-to-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 56px;
            height: 56px;
            background: var(--gradient-main);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
        }

        /* ===== Loading Animation ===== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.5s ease-out;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader-spinner {
            width: 56px;
            height: 56px;
            border: 4px solid #E8E8EE;
            border-top-color: var(--color-primary);
            border-radius: 50%;
            animation: spin 0.9s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 60px;
            }

            .hero-text h1 {
                font-size: 44px;
            }

            .hero-text p {
                margin: 0 auto 38px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                max-width: 600px;
                margin: 0 auto;
            }

            .floating-card.card-1 {
                left: 20px;
            }

            .floating-card.card-2 {
                right: 20px;
            }

            .floating-card.card-3 {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 70px;
            }

            .experience-badge {
                right: 20px;
                bottom: -25px;
            }

            .counter-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 36px;
            }

            .counter-item::after {
                display: none;
            }

            .vm-grid {
                grid-template-columns: 1fr;
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-timeline {
                display: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .booking-wrapper {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 80px 0;
            }

            .section-title h2 {
                font-size: 34px;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 110px 40px 40px;
                gap: 24px;
                transition: var(--transition);
                box-shadow: var(--shadow-xl);
                overflow-y: auto;
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero {
                min-height: auto;
                padding: 130px 0 90px;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-image-main img {
                height: 380px;
            }

            .floating-card {
                display: none;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
                align-items: center;
            }

            .counter-grid {
                grid-template-columns: 1fr;
            }

            .counter-number {
                font-size: 42px;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .booking-form,
            .contact-form-wrapper {
                padding: 36px 24px;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .vm-card {
                padding: 36px 28px;
            }

            .why-us-card {
                flex-direction: column;
                text-align: center;
            }

            .why-us-icon {
                margin: 0 auto;
            }
        }
