
        :root {
            --primary: #10B981;
            --primary-light: #34D399;
            --primary-pale: #A7F3D0;
            --primary-bg: #ECFDF5;
            --dark: #0F172A;
            --dark-secondary: #1E293B;
            --text: #334155;
            --text-light: #64748B;
            --white: #FFFFFF;
            --gradient-1: linear-gradient(135deg, #10B981 0%, #34D399 50%, #A7F3D0 100%);
            --gradient-2: linear-gradient(135deg, #059669 0%, #10B981 100%);
            --shadow-neon: 0 0 30px rgba(16, 185, 129, 0.3);
            --shadow-hover: 0 20px 60px rgba(16, 185, 129, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            overflow-x: hidden;
            background: var(--white);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-light);
        }

        /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 28px;
            font-weight: 800;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .logo {
            color: var(--dark);
        }

        .logo-icon {
            font-size: 40px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 35px;
            list-style: none;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--white);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 0;
        }

        .navbar.scrolled .nav-menu a {
            color: var(--dark);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-1);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--gradient-1) !important;
            color: var(--white) !important;
            padding: 12px 28px !important;
            border-radius: 50px;
            font-weight: 600 !important;
            box-shadow: var(--shadow-neon);
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .nav-cta::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 30px;
            height: 3px;
            background: var(--white);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled .hamburger span {
            background: var(--dark);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%),
                        url('https://images.pexels.com/photos/844124/pexels-photo-844124.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: floatShape 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: 10%;
            right: -100px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 300px;
            height: 300px;
            background: var(--primary-light);
            bottom: 10%;
            left: -80px;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: var(--primary-pale);
            top: 50%;
            left: 50%;
            animation-delay: -10s;
        }

        @keyframes floatShape {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(30px, -30px) rotate(90deg); }
            50% { transform: translate(-20px, 20px) rotate(180deg); }
            75% { transform: translate(20px, 30px) rotate(270deg); }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 120px 40px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 64px;
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-content h1 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--gradient-1);
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-neon);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--primary);
            transition: all 0.4s ease;
        }

        .btn-outline:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-neon);
        }

        .hero-image {
            position: relative;
        }

        .hero-image-main {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 2;
        }

        .hero-image-card {
            position: absolute;
            background: var(--white);
            padding: 20px 30px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            z-index: 3;
            animation: cardFloat 4s ease-in-out infinite;
        }

        .hero-image-card.card-1 {
            bottom: 30px;
            left: -40px;
            animation-delay: 0s;
        }

        .hero-image-card.card-2 {
            top: 30px;
            right: -40px;
            animation-delay: -2s;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            margin-bottom: 10px;
        }

        .card-text h4 {
            color: var(--dark);
            font-size: 22px;
            font-weight: 700;
        }

        .card-text p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        /* ========== SECTION STYLES ========== */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-badge {
            display: inline-block;
            background: var(--primary-bg);
            color: var(--primary);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* ========== ABOUT SECTION ========== */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            width: 100%;
            border-radius: 30px;
            box-shadow: 0 30px 70px rgba(16, 185, 129, 0.15);
        }

        .about-experience {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-1);
            color: var(--white);
            padding: 35px;
            border-radius: 25px;
            text-align: center;
            box-shadow: var(--shadow-hover);
        }

        .about-experience h3 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 5px;
        }

        .about-experience p {
            font-size: 16px;
            font-weight: 500;
            margin: 0;
        }

        .about-content h2 {
            font-size: 42px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .about-content h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-content > p {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 40px;
        }

        .about-features {
            display: grid;
            gap: 25px;
        }

        .about-feature-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background: var(--primary-bg);
            border-radius: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
        }

        .about-feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
        }

        .feature-icon {
            width: 65px;
            height: 65px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 28px;
            color: var(--white);
        }

        .feature-text h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .feature-text p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
        }

        /* ========== MILESTONES / METRICS ========== */
        .milestones {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(52, 211, 153, 0.03) 100%);
            position: relative;
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .milestone-card {
            text-align: center;
            padding: 50px 30px;
            background: var(--white);
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .milestone-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .milestone-card:hover::before {
            transform: scaleX(1);
        }

        .milestone-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(16, 185, 129, 0.2);
        }

        .milestone-icon {
            width: 85px;
            height: 85px;
            background: var(--primary-bg);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .milestone-card:hover .milestone-icon {
            background: var(--gradient-1);
            transform: scale(1.1) rotate(360deg);
        }

        .milestone-icon i {
            font-size: 38px;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .milestone-card:hover .milestone-icon i {
            color: var(--white);
        }

        .milestone-number {
            font-size: 52px;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1;
        }

        .milestone-label {
            font-size: 17px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* ========== WHY CHOOSE US / FEATURES ========== */
        .features {
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .feature-card {
            background: var(--white);
            padding: 45px 35px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .feature-card > * {
            position: relative;
            z-index: 1;
        }

        .feature-card-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-bg);
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-card-icon {
            background: var(--white);
            transform: scale(1.1) rotateY(180deg);
        }

        .feature-card-icon i {
            font-size: 36px;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-card-icon i {
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .feature-card:hover h3 {
            color: var(--white);
        }

        .feature-card p {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.7;
            transition: all 0.4s ease;
        }

        .feature-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            margin-top: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-link {
            color: var(--white);
        }

        .feature-link i {
            transition: transform 0.3s ease;
        }

        .feature-link:hover i {
            transform: translateX(5px);
        }

        /* ========== WORK PROCESS ========== */
        .process {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            position: relative;
            overflow: hidden;
        }

        .process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
        }

        .process .section-title,
        .process .section-desc,
        .process .section-badge {
            color: var(--white);
        }

        .process .section-badge {
            background: rgba(16, 185, 129, 0.2);
            color: var(--primary-light);
        }

        .process .section-title span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .process-card {
            text-align: center;
            padding: 45px 30px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
            position: relative;
        }

        .process-card:hover {
            transform: translateY(-15px);
            background: rgba(16, 185, 129, 0.1);
            border-color: var(--primary);
            box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
        }

        .process-number {
            width: 70px;
            height: 70px;
            background: var(--gradient-1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 28px;
            font-weight: 900;
            color: var(--white);
            box-shadow: var(--shadow-neon);
        }

        .process-icon {
            width: 90px;
            height: 90px;
            background: rgba(16, 185, 129, 0.15);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .process-card:hover .process-icon {
            background: var(--gradient-1);
            transform: scale(1.1) rotateY(180deg);
        }

        .process-icon i {
            font-size: 40px;
            color: var(--primary-light);
            transition: all 0.4s ease;
        }

        .process-card:hover .process-icon i {
            color: var(--white);
        }

        .process-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
        }

        .process-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        /* ========== PACKAGES / PRICING ========== */
        .packages {
            background: var(--primary-bg);
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            align-items: stretch;
        }

        .package-card {
            background: var(--white);
            border-radius: 35px;
            padding: 45px 40px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .package-card.featured {
            background: var(--gradient-1);
            transform: scale(1.05);
            border-color: var(--white);
            box-shadow: var(--shadow-hover);
        }

        .package-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 70px rgba(16, 185, 129, 0.25);
        }

        .package-card.featured:hover {
            transform: scale(1.05) translateY(-15px);
        }

        .package-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--dark);
            color: var(--white);
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .package-header {
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 30px;
            border-bottom: 2px solid rgba(0, 0, 0, 0.08);
        }

        .package-card.featured .package-header {
            border-bottom-color: rgba(255, 255, 255, 0.3);
        }

        .package-name {
            font-size: 26px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .package-card.featured .package-name {
            color: var(--white);
        }

        .package-price {
            font-size: 58px;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 5px;
        }

        .package-card.featured .package-price {
            color: var(--white);
        }

        .package-price span {
            font-size: 20px;
            font-weight: 500;
        }

        .package-period {
            font-size: 16px;
            color: var(--text-light);
        }

        .package-card.featured .package-period {
            color: rgba(255, 255, 255, 0.8);
        }

        .package-features {
            list-style: none;
            margin-bottom: 35px;
            flex-grow: 1;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 16px;
            color: var(--text);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .package-card.featured .package-features li {
            color: rgba(255, 255, 255, 0.95);
            border-bottom-color: rgba(255, 255, 255, 0.15);
        }

        .package-features li i {
            color: var(--primary);
            font-size: 18px;
        }

        .package-card.featured .package-features li i {
            color: var(--white);
        }

        .package-btn {
            width: 100%;
            padding: 18px;
            border-radius: 50px;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.4s ease;
            display: block;
        }

        .package-btn.primary {
            background: var(--gradient-1);
            color: var(--white);
            box-shadow: var(--shadow-neon);
        }

        .package-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .package-btn.outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .package-btn.outline:hover {
            background: var(--primary);
            color: var(--white);
        }

        .package-card.featured .package-btn {
            background: var(--white);
            color: var(--primary);
        }

        .package-card.featured .package-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* ========== SERVICES SECTION ========== */
        .services {
            background: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 45px 30px;
            border-radius: 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
        }

        .service-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 0;
            background: var(--gradient-1);
            transition: height 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::after {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary);
            box-shadow: var(--shadow-hover);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--primary-bg);
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: var(--white);
            transform: scale(1.1) rotateY(180deg);
        }

        .service-icon i {
            font-size: 45px;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .service-card h3 {
            font-size: 23px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            transition: all 0.4s ease;
        }

        .service-card:hover h3 {
            color: var(--white);
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.7;
            transition: all 0.4s ease;
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-link {
            color: var(--white);
        }

        /* ========== BOOKING FORM ========== */
        .booking {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            position: relative;
            overflow: hidden;
        }

        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
        }

        .booking-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .booking-info h2 {
            font-size: 46px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 24px;
        }

        .booking-info h2 span {
            background: var(--gradient-1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .booking-info > p {
            font-size: 17px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .booking-features-list {
            list-style: none;
        }

        .booking-features-list li {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 0;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
        }

        .booking-features-list li i {
            width: 40px;
            height: 40px;
            background: var(--gradient-1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 16px;
            flex-shrink: 0;
        }

        .booking-form-wrapper {
            background: var(--white);
            padding: 55px;
            border-radius: 35px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
        }

        .booking-form-wrapper h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .booking-form-wrapper > p {
            color: var(--text-light);
            margin-bottom: 35px;
            font-size: 16px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 15px;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #E2E8F0;
            border-radius: 15px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            outline: none;
            background: var(--white);
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        }

        select.form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2310B981'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 20px;
            padding-right: 45px;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 130px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: var(--gradient-1);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-neon);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        /* ========== REVIEWS / TESTIMONIALS ========== */
        .reviews {
            background: var(--primary-bg);
        }

        .reviews-slider {
            position: relative;
            overflow: hidden;
        }

        .reviews-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .review-card {
            flex: 0 0 calc(33.333% - 20px);
            background: var(--white);
            padding: 40px 35px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
        }

        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
        }

        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .review-stars i {
            color: #FBBF24;
            font-size: 18px;
        }

        .review-text {
            font-size: 16px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--primary-bg);
        }

        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }

        .review-author-info h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 3px;
        }

        .review-author-info p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }

        .reviews-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 50px;
        }

        .reviews-nav button {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            background: var(--white);
            color: var(--primary);
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .reviews-nav button:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }

        /* ========== FAQ SECTION ========== */
        .faq {
            background: var(--white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border: 2px solid #E2E8F0;
            border-radius: 20px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
        }

        .faq-question {
            width: 100%;
            padding: 25px 30px;
            background: none;
            border: none;
            text-align: left;
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-question i {
            font-size: 20px;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer-content {
            padding: 0 30px 25px;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 16px;
        }

        /* ========== CTA SECTION ========== */
        .cta {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.95) 0%, rgba(5, 150, 105, 0.95) 100%),
                        url('https://images.pexels.com/photo/1554224311-51b8cda4a0cd?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
        }

        .cta-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 850px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 52px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .btn-transparent {
            background: transparent;
            color: var(--white);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 17px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--white);
            transition: all 0.4s ease;
        }

        .btn-transparent:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        /* ========== CONTACT SECTION ========== */
        .contact {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 60px;
        }

        .contact-info-cards {
            display: grid;
            gap: 25px;
        }

        .contact-info-card {
            display: flex;
            gap: 20px;
            padding: 30px;
            background: var(--primary-bg);
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover {
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
        }

        .contact-icon {
            width: 65px;
            height: 65px;
            background: var(--gradient-1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 26px;
            color: var(--white);
        }

        .contact-details h4 {
            font-size: 19px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .contact-details p {
            font-size: 15px;
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }

        .contact-details a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-details a:hover {
            color: var(--dark);
        }

        .contact-form-section {
            background: var(--primary-bg);
            padding: 50px;
            border-radius: 35px;
        }

        .contact-form-section h3 {
            font-size: 32px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .contact-form-section > p {
            color: var(--text-light);
            margin-bottom: 30px;
        }

        /* ========== PRIVACY POLICY ========== */
        .privacy {
            background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
        }

        .privacy-content {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .privacy-content h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .privacy-content h3:first-child {
            margin-top: 0;
        }

        .privacy-content p {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 18px;
            font-size: 16px;
        }

        .privacy-content ul {
            margin-left: 25px;
            margin-bottom: 18px;
        }

        .privacy-content ul li {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 10px;
            font-size: 16px;
        }

        /* ========== NEWSLETTER ========== */
        .newsletter {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            position: relative;
            overflow: hidden;
        }

        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(52, 211, 153, 0.08) 0%, transparent 50%);
        }

        .newsletter-container {
            max-width: 750px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .newsletter .section-title {
            color: var(--white);
        }

        .newsletter .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .newsletter-form {
            background: var(--white);
            padding: 50px;
            border-radius: 30px;
            margin-top: 50px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .newsletter-form .form-group {
            text-align: left;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-top: 20px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: 22px;
            height: 22px;
            accent-color: var(--primary);
            cursor: pointer;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .checkbox-wrapper label {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            cursor: pointer;
        }

        .success-message {
            display: none;
            background: var(--primary-bg);
            color: var(--primary);
            padding: 20px 30px;
            border-radius: 15px;
            margin-top: 20px;
            font-weight: 600;
            text-align: center;
            animation: fadeInUp 0.5s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== TERMS & CONDITIONS ========== */
        .terms {
            background: var(--white);
        }

        .terms-content {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--primary-bg);
            padding: 60px;
            border-radius: 30px;
        }

        .terms-content h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--dark);
            margin-top: 30px;
            margin-bottom: 15px;
        }

        .terms-content h3:first-child {
            margin-top: 0;
        }

        .terms-content p {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 18px;
            font-size: 16px;
        }

        .terms-content ol {
            margin-left: 25px;
            margin-bottom: 18px;
        }

        .terms-content ol li {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 12px;
            font-size: 16px;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            padding: 80px 0 30px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-about p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 15px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .footer-newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            outline: none;
            transition: all 0.3s ease;
        }

        .footer-newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-newsletter-form input:focus {
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.15);
        }

        .footer-newsletter-form button {
            padding: 15px 25px;
            background: var(--gradient-1);
            color: var(--white);
            border: none;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .footer-newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-neon);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* ========== BACK TO TOP ========== */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: var(--gradient-1);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: var(--shadow-neon);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 52px;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--white);
                flex-direction: column;
                padding: 100px 40px;
                gap: 25px;
                transition: right 0.4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu a {
                color: var(--dark) !important;
                font-size: 18px;
            }

            .hamburger {
                display: flex;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
                background: var(--dark) !important;
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
                background: var(--dark) !important;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 150px 30px 80px;
            }

            .hero-content h1 {
                font-size: 44px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image {
                max-width: 550px;
                margin: 0 auto;
            }

            .hero-image-card {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .milestones-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }

            .package-card.featured {
                transform: none;
            }

            .package-card.featured:hover {
                transform: translateY(-15px);
            }

            .booking-container {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .review-card {
                flex: 0 0 calc(50% - 15px);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 36px;
            }

            .section {
                padding: 80px 0;
            }

            .container {
                padding: 0 20px;
            }

            .section-title {
                font-size: 32px;
            }

            .milestones-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .review-card {
                flex: 0 0 100%;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .cta-content h2 {
                font-size: 36px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .privacy-content,
            .terms-content {
                padding: 35px 25px;
            }

            .booking-form-wrapper {
                padding: 35px 25px;
            }

            .contact-form-section {
                padding: 35px 25px;
            }

            .newsletter-form {
                padding: 35px 25px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 30px;
            }

            .logo {
                font-size: 22px;
            }

            .logo-icon {
                font-size: 32px;
            }

            .btn-primary,
            .btn-outline,
            .btn-white,
            .btn-transparent {
                padding: 15px 30px;
                font-size: 14px;
            }

            .about-experience h3 {
                font-size: 42px;
            }
        }

        /* ========== ANIMATION CLASSES ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading Animation */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-wrapper.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 70px;
            height: 70px;
            border: 5px solid var(--primary-bg);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }
