 /* ------------------------------------------------------------
           RESET & GLOBAL STYLES - No Bootstrap classes used
        ------------------------------------------------------------ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            overflow-x: hidden;
            line-height: 1.5;
            color: #1F2937;
        }

        /* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Styling */
section {
    scroll-margin-top: 40px; /* Fixed navbar ho to */
}

/* Smooth Hover Effect */
section:hover {
    transform: translateY(-3px);
}

/* Fade In Animation */
.section-animation {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        h1, h2, h3, h4, h5, .heading-bold, .nav-link-custom, .brand-text {
            font-family: 'Poppins', sans-serif;
        }

        /* Custom Container System (Replaces Bootstrap container) */
        .app-container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Custom Grid System (Replaces Bootstrap row/col) */
        .grid-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -12px;
        }
        .grid-col {
            padding: 0 12px;
        }
        .grid-col-full { width: 100%; }
        .grid-col-half { width: 50%; }
        .grid-col-41 { width: 41.666%; }
        .grid-col-50 { width: 50%; }
        .grid-col-58 { width: 58.333%; }
        .grid-col-66 { width: 66.666%; }
        .grid-col-83 { width: 83.333%; }

        /* Tablet breakpoint - tighten before full stack */
        @media (max-width: 992px) {
            .grid-col-41 {
                width: 50%;
            }
            .app-container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .grid-col-half, .grid-col-41, .grid-col-50, .grid-col-58, .grid-col-66, .grid-col-83 {
                width: 100%;
            }
        }

        /* Spacing Utilities */
        .spacing-top-lg { margin-top: 2rem; }
        .spacing-bottom-md { margin-bottom: 1rem; }
        .spacing-bottom-lg { margin-bottom: 1.5rem; }
        .spacing-bottom-xl { margin-bottom: 2.5rem; }
        .spacing-top-md { margin-top: 1rem; }
        .padding-y-sm { padding-top: 1rem; padding-bottom: 1rem; }
        .padding-y-md { padding-top: 1.5rem; padding-bottom: 1.5rem; }
        .padding-x-lg { padding-left: 2rem; padding-right: 2rem; }
        .gap-md { gap: 1rem; }
        .gap-lg { gap: 1.5rem; }

        /* Flex Utilities */
        .flex-display { display: flex; }
        .flex-wrap { flex-wrap: wrap; }
        .align-center { align-items: center; }
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .text-center { text-align: center; }
        .text-start { text-align: left; }

        /* Button Styles (No Bootstrap btn classes) */
        .primary-button {
            display: inline-block;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border-radius: 40px;
            padding: 12px 28px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
            background: linear-gradient(105deg, #0f2b3d 0%, #1e4a6b 100%);
            color: white;
            box-shadow: 0 8px 20px rgba(59,130,246,0.25);
        }
        .primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(59,130,246,0.35);
        }
        .outline-button {
            display: inline-block;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            border-radius: 40px;
            padding: 12px 28px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: 1.5px solid #0f2b3d;
            background: transparent;
            color: #0f2b3d;
        }
        .outline-button:hover {
            background: linear-gradient(105deg, #0f2b3d 0%, #1e4a6b 100%);
            color: white;
            transform: translateY(-2px);
        }

         /* ============================================
           NAVBAR - PREMIUM WITH CONTINUOUS ANIMATIONS
        ============================================ */
        .site-header {
            background: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(12px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
            padding: 0.5rem 0;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
            border-bottom: 1px solid rgba(15,43,61,0.1);
            animation: slideDown 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Continuous subtle gradient shift on navbar border */
        .site-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #0f2b3d, #2dd4bf, #38bdf8, #0f2b3d);
            background-size: 300% 100%;
            animation: borderFlow 6s infinite linear;
        }

        @keyframes borderFlow {
            0% { background-position: 0% 0%; }
            100% { background-position: 300% 0%; }
        }

        .navbar-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .brand-logo {
            position: relative;
        }

        .brand-logo img {
            height: 44px;
            max-width: 160px;
            width: auto;
            object-fit: contain;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
        }

        /* Continuous pulse animation on logo */
        .brand-logo {
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 0 rgba(45,212,191,0)); }
            50% { filter: drop-shadow(0 0 8px rgba(45,212,191,0.3)); }
            100% { filter: drop-shadow(0 0 0 rgba(45,212,191,0)); }
        }

        .brand-logo img:hover {
            transform: scale(1.03) rotate(1deg);
        }

        .nav-menu {
            display: flex;
            flex-grow: 1;
            align-items: center;
            justify-content: flex-end;
        }

        .nav-list {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            gap: 0.35rem;
            flex-wrap: wrap;
        }

        .nav-item-custom .nav-link-custom {
            font-weight: 500;
            font-size: 0.95rem;
            color: #1F2937;
            padding: 0.5rem 1rem;
            border-radius: 40px;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            position: relative;
            white-space: nowrap;
        }

        /* Animated underline effect on nav links (continuous hover effect) */
        .nav-link-custom::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #0f2b3d, #2dd4bf);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link-custom:hover::after {
            width: 70%;
        }

        .nav-link-custom:hover {
            transform: translateY(-2px);
        }

        .login-button {
            background: linear-gradient(105deg, #0f2b3d 0%, #1e6b5e 100%);
            color: white !important;
            border-radius: 40px;
            padding: 0.5rem 1.5rem !important;
            position: relative;
            overflow: hidden;
        }

        .login-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.4s;
        }

        .login-button:hover::before {
            left: 100%;
        }

        .register-outline {
            border: 1.5px solid #0f2b3d;
            color: #0f2b3d !important;
            background: transparent;
            border-radius: 40px;
            padding: 0.5rem 1.5rem !important;
            transition: all 0.3s;
        }

        .register-outline:hover {
            background: #0f2b3d10;
            transform: scale(1.02);
            border-color: #2dd4bf;
        }

        .mobile-toggle {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
            color: #0f2b3d;
            transition: transform 0.2s;
            z-index: 1040;
        }

        .mobile-toggle:hover {
            transform: rotate(90deg);
        }

        @media (max-width: 992px) {
            .mobile-toggle {
                display: block;
            }
            .nav-menu {
                display: none;
                width: 100%;
                flex-direction: column;
                margin-top: 1rem;
                max-height: 70vh;
                overflow-y: auto;
            }
            .nav-menu.open {
                display: flex;
                animation: fadeIn 0.3s ease;
            }
            .nav-list {
                flex-direction: column;
                width: 100%;
                gap: 0.75rem;
                align-items: center;
            }
            .nav-item-custom {
                width: 100%;
                text-align: center;
            }
            .nav-item-custom .nav-link-custom {
                width: 100%;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============================================
           HERO SECTION - ENHANCED WITH CONTINUOUS ANIMATIONS
        ============================================ */
        .hero-section-custom {
            background: linear-gradient(120deg, #F9FAFE 0%, #F1F5F9 100%);
            padding-top: 130px;
            padding-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        .hero-section-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 40%, rgba(45,212,191,0.08) 2px, transparent 2px);
            background-size: 40px 40px;
            animation: floatParticles 25s infinite linear;
            pointer-events: none;
        }

        @keyframes floatParticles {
            0% { background-position: 0 0; }
            100% { background-position: 80px 80px; }
        }

        .hero-badge {
            background: linear-gradient(135deg, #E0F2FE, #CCFBF1);
            color: #0f2b3d;
            border-radius: 100px;
            padding: 0.4rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 1.2rem;
            animation: badgePulse 2s infinite;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        @keyframes badgePulse {
            0% { transform: scale(1); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
            50% { transform: scale(1.03); box-shadow: 0 4px 16px rgba(45,212,191,0.2); }
            100% { transform: scale(1); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
        }

        .hero-title-main {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(105deg, #0f2b3d 0%, #1e6b5e 50%, #0f2b3d 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            animation: textShimmer 4s linear infinite;
        }

        @keyframes textShimmer {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-subtitle {
            font-size: clamp(1.15rem, 2.5vw, 1.8rem);
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

        /* Typing cursor effect for subtitle (continuous blink) */
        .hero-subtitle::after {
            content: '|';
            font-weight: 300;
            animation: blinkCursor 1s step-end infinite;
            margin-left: 4px;
            color: #2dd4bf;
        }

        @keyframes blinkCursor {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .hero-image-rounded {
            border-radius: 32px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            width: 100%;
            max-width: 90%;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            animation: floatImage 4s ease-in-out infinite;
        }

        .hero-clear-image{
           image-rendering: auto;
    filter:
        brightness(1.03)
        contrast(1.08)
        saturate(1.05)
        sharpness(1.2);

    transform: translateZ(0);
    backface-visibility: hidden;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.08);

    object-fit: cover;
}

        @keyframes floatImage {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-12px); }
            100% { transform: translateY(0px); }
        }

        .hero-image-rounded:hover {
            transform: scale(1.02) translateY(-5px);
            box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
        }

        /* Stats row animation */
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: left;
            animation: fadeSlideUp 0.6s ease-out forwards;
            opacity: 0;
            animation-delay: calc(0.2s * var(--i, 1));
        }

        .stat-item:nth-child(1) { --i: 1; }
        .stat-item:nth-child(2) { --i: 2; }
        .stat-item:nth-child(3) { --i: 3; }

        @keyframes fadeSlideUp {
            to { opacity: 1; transform: translateY(0); }
            from { opacity: 0; transform: translateY(20px); }
        }

        .stat-number {
            font-size: clamp(1.4rem, 3vw, 1.8rem);
            font-weight: 800;
            color: #0f2b3d;
            display: inline-block;
            animation: countPulse 2s infinite;
        }

        @keyframes countPulse {
            0%, 100% { text-shadow: 0 0 0 rgba(15,43,61,0); }
            50% { text-shadow: 0 0 6px rgba(45,212,191,0.5); }
        }

        .stat-label {
            font-size: 0.8rem;
            color: #6c7a91;
            margin-left: 4px;
        }

        @media (max-width: 768px) {
            .hero-stats {
                gap: 1.25rem;
                justify-content: center;
            }
            .hero-section-custom .text-start {
                text-align: center;
            }
            .hero-section-custom .flex-display.gap-md {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                gap: 0.85rem;
            }
            .stat-item {
                text-align: center;
                flex: 1 1 40%;
            }
        }

        .text-secondary-custom { color: #1e4a6b; }
        .text-primary-custom { color: #10B981; }
        .fw-semibold-custom { font-weight: 600; }
        .fw-bold-custom { font-weight: 700; }
        .display-large { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; }

        /* Feature Cards */
        .features-section {
            background: #FFFFFF;
            padding: 80px 0;
        }
        .feature-card-modern {
            background: white;
            border-radius: 28px;
            padding: 1.5rem;
            transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
            border: 1px solid rgba(0,0,0,0.03);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            height: 100%;
        }
        .feature-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.15);
            border-color: #E2E8F0;
        }
        .feature-icon-circle {
            width: 64px;
            height: 64px;
            background: #EEF2FF;
            border-radius: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: 0.2s;
            flex-shrink: 0;
        }
        .feature-icon-circle i {
            font-size: 32px;
            background: linear-gradient(105deg, #0f2b3d 0%, #1e4a6b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .feature-card-modern:hover .feature-icon-circle {
            background: linear-gradient(105deg, #0f2b3d 0%, #1e4a6b 100%);
        }
        .feature-card-modern:hover .feature-icon-circle i {
            color: white !important;
            background: none;
            -webkit-text-fill-color: white;
        }

        @media (max-width: 480px) {
            .feature-card-modern {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }

        /* ========== ABOUT CARD - PREMIUM WITH CONTINUOUS ANIMATIONS ========== */
        .about-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(2px);
            border-radius: 2rem;
            padding: 2.5rem;
            box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(45, 212, 191, 0.2);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        /* Animated gradient border that moves continuously */
        .about-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(120deg,
                #2dd4bf,
                #38bdf8,
                #818cf8,
                #2dd4bf,
                #38bdf8,
                #2dd4bf);
            background-size: 300% 300%;
            border-radius: 2rem;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s;
            animation: gradientFlow 4s ease infinite;
        }

        .about-card:hover::before {
            opacity: 1;
        }

        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Floating shine animation (continuous) */
        .about-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent);
            transform: skewX(-20deg);
            animation: continuousShine 6s infinite;
            pointer-events: none;
            border-radius: 2rem;
        }

        @keyframes continuousShine {
            0% { left: -100%; }
            20% { left: 120%; }
            100% { left: 120%; }
        }

        /* Pulsing glow effect on the card (subtle breathing) */
        .about-card {
            animation: cardBreathing 3s ease-in-out infinite;
        }

        @keyframes cardBreathing {
            0% { box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12); border-color: rgba(45, 212, 191, 0.2); }
            50% { box-shadow: 0 30px 55px -12px rgba(45, 212, 191, 0.25); border-color: rgba(45, 212, 191, 0.5); }
            100% { box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12); border-color: rgba(45, 212, 191, 0.2); }
        }

        /* Icon bounce & rotate animation */
        .whatsapp-icon {
            display: inline-block;
            animation: iconFloat 2s ease-in-out infinite;
            font-size: 1.8rem;
            background: linear-gradient(135deg, #25D366, #128C7E);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        @keyframes iconFloat {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-6px) rotate(3deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        /* Rotating gradient text animation for GreenPing */
        .animated-gradient-text {
            background: linear-gradient(135deg, #0f2b3d, #2dd4bf, #0f2b3d, #38bdf8);
            background-size: 300% auto;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: textGradientFlow 5s linear infinite;
            display: inline-block;
            font-weight: 800;
        }

        @keyframes textGradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Pulse ring animation around the card content */
        .pulse-ring {
            position: relative;
        }

        .pulse-ring::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 5%;
            width: 90%;
            height: 90%;
            background: radial-gradient(circle, rgba(45,212,191,0.15), transparent 70%);
            border-radius: 50%;
            transform: translateY(-50%);
            animation: pulseRing 3s infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes pulseRing {
            0% { opacity: 0.3; transform: translateY(-50%) scale(0.8); }
            70% { opacity: 0; transform: translateY(-50%) scale(1.4); }
            100% { opacity: 0; transform: translateY(-50%) scale(1.4); }
        }

        /* Text fade-slide animation for description */
        .animated-description {
            animation: slideFadeText 0.8s ease-out;
            transition: all 0.3s;
        }

        @keyframes slideFadeText {
            from {
                opacity: 0;
                transform: translateX(15px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Hover effect for the whole card - interactive */
        .about-card:hover {
            transform: translateY(-6px);
            transition: transform 0.3s ease;
        }

        /* Stagger animation for child elements (endless attention) */
        .grid-col-half h1,
        .grid-col-half h2,
        .grid-col-half h3,
        .grid-col-half .text-secondary-custom {
            animation: gentlePop 1s ease-out forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .grid-col-half h1 { animation-delay: 0.1s; }
        .grid-col-half h2 { animation-delay: 0.2s; }
        .grid-col-half h3 { animation-delay: 0.3s; }
        .grid-col-half .text-secondary-custom { animation-delay: 0.4s; }

        @keyframes gentlePop {
            0% { opacity: 0; transform: scale(0.96); }
            100% { opacity: 1; transform: scale(1); }
        }

        /* responsive */
        @media (max-width: 768px) {
            .about-card {
                padding: 1.8rem;
            }
            .section-padding {
                padding: 50px 0;
            }
            .about-card .text-start {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .about-card {
                padding: 1.4rem;
                border-radius: 1.4rem;
            }
        }

        /* continuous rotating badge subtle */
        .rotating-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(45,212,191,0.08);
            padding: 6px 12px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 500;
            margin-top: 1rem;
            animation: borderGlow 2s infinite;
        }

        @keyframes borderGlow {
            0% { box-shadow: 0 0 0 0 rgba(45,212,191,0.2); }
            70% { box-shadow: 0 0 0 6px rgba(45,212,191,0); }
            100% { box-shadow: 0 0 0 0 rgba(45,212,191,0); }
        }

        /* ============================================
           PREMIUM PRICING CARDS - UI ENHANCED
        ============================================ */
        .pricing-card-custom {
            border-radius: 32px;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(2px);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: 1px solid rgba(15, 43, 61, 0.08);
            padding: 2rem 1.8rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
        }

        /* Animated gradient border on hover */
        .pricing-card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 32px;
            padding: 2px;
            background: linear-gradient(120deg, #2dd4bf, #38bdf8, #2dd4bf, #0f2b3d);
            background-size: 300% 300%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s;
            animation: borderFlow 3s infinite;
        }

        .pricing-card-custom:hover::before {
            opacity: 1;

        }

        @keyframes borderFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Card hover effect */
        .pricing-card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 50px -16px rgba(0, 0, 0, 0.2);
        }

        /* Popular Badge with shine animation */
        .popular-badge {
            background: linear-gradient(135deg, #10B981, #059669);
            color: white;
            border-radius: 60px;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 0.35rem 1.2rem;
            position: absolute;
            top: 1rem;
            right: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(16,185,129,0.3);
            animation: badgePulse 2s infinite;
            z-index: 2;
        }

        @keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(16,185,129,0.3); }
            50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(16,185,129,0.5); }
        }

        /* Price display styling */
        .price-display {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            background: linear-gradient(135deg, #0f2b3d, #1e6b5e);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        /* Check icon styling */
        .check-icon {
            color: #10B981;
            margin-right: 0.6rem;
            font-size: 0.9rem;
        }

        /* Feature list items */
        .list-no-bullet li {
            transition: all 0.25s ease;
            padding: 4px 0;
            border-radius: 8px;
            display: flex;
            align-items: flex-start;
        }

        .list-no-bullet li:hover {
            transform: translateX(5px);
            background: linear-gradient(90deg, #f0fdf4, transparent);
            padding-left: 4px;
        }

        /* Button styling */
        .primary-button {
            display: inline-block;
            background: linear-gradient(95deg, #0f2b3d 0%, #1e6b5e 100%);
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.8rem;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .primary-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.4s;
        }

        .primary-button:hover::before {
            left: 100%;
        }

        .primary-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(15,43,61,0.3);
        }

        /* Card title with gradient */
        .fw-bold-custom {
            background: linear-gradient(120deg, #0f2b3d, #2dd4bf);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        /* Fade-in animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .grid-col {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .grid-col:nth-child(1) { animation-delay: 0.1s; }
        .grid-col:nth-child(2) { animation-delay: 0.2s; }
        .grid-col:nth-child(3) { animation-delay: 0.3s; }

        /* Section header badge */
        .section-badge {
            display: inline-block;
            background: #e0f2fe;
            padding: 6px 18px;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #0f2b3d;
            margin-bottom: 1rem;
        }

        /* Trust indicator */
        .trust-indicator {
            display: inline-flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(8px);
            padding: 0.8rem 2rem;
            border-radius: 80px;
            margin-top: 3rem;
            border: 1px solid rgba(45,212,191,0.2);
        }

        .trust-indicator span {
            font-size: 0.8rem;
            color: #475569;
            white-space: nowrap;
        }

        .trust-indicator i {
            color: #2dd4bf;
            margin-right: 0.3rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
            .pricing-card-custom {
                padding: 1.5rem;
            }
            .trust-indicator {
                gap: 1rem;
                padding: 0.8rem 1.2rem;
                border-radius: 24px;
            }
        }

        @media (max-width: 576px) {
            #pricing-section .grid-col-41 {
                width: 100%;
            }
        }

        /* Price period styling */
        .price-period {
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Small savings tag */
        .savings-hint {
            font-size: 0.7rem;
            color: #10B981;
            margin-left: 0.3rem;
        }

        /* FAQ Item */
        .faq-item-clean {
            background: white;
            border-radius: 20px;
            border: 1px solid #EFF3F8;
            margin-bottom: 1rem;
            overflow: hidden;
        }
        .faq-question-btn {
            background: transparent;
            width: 100%;
            text-align: left;
            padding: 1.2rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }
        .faq-question-btn:after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            transition: transform 0.2s;
            flex-shrink: 0;
        }
        .faq-question-btn.collapsed-state:after {
            transform: rotate(0deg);
        }
        .faq-question-btn:after {
            transform: rotate(180deg);
        }
        .faq-answer-panel {
            display: none;
            padding: 0 1.5rem 1.5rem 1.5rem;
            color: #4B5563;
        }
        .faq-answer-panel.open {
            display: block;
        }

        @media (max-width: 480px) {
            .faq-question-btn {
                padding: 1rem 1.1rem;
                font-size: 0.92rem;
            }
            .faq-answer-panel {
                padding: 0 1.1rem 1.1rem 1.1rem;
                font-size: 0.9rem;
            }
        }

        /* ============================================
           TESTIMONIALS / REVIEWS SECTION - NEW
        ============================================ */
        .reviews-section {
            position: relative;
            overflow: hidden;
        }

        .review-card {
            background: white;
            border-radius: 24px;
            padding: 1.8rem;
            height: 100%;
            border: 1px solid rgba(15,43,61,0.06);
            box-shadow: 0 14px 32px -10px rgba(15,43,61,0.08);
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 26px 48px -14px rgba(15,43,61,0.18);
            border-color: rgba(45,212,191,0.35);
        }

        .review-quote-icon {
            font-size: 1.6rem;
            color: rgba(45,212,191,0.35);
            margin-bottom: 0.6rem;
        }

        .review-stars {
            color: #F5A623;
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
            letter-spacing: 2px;
        }

        .review-text {
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.65;
            flex-grow: 1;
            margin-bottom: 1.4rem;
        }

        .review-author-row {
            display: flex;
            align-items: center;
            gap: 0.85rem;
            border-top: 1px solid #EEF2F7;
            padding-top: 1.1rem;
        }

        .review-avatar {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            background: linear-gradient(135deg, #0f2b3d, #1e6b5e);
            flex-shrink: 0;
        }

        .review-author-name {
            font-weight: 700;
            font-size: 0.92rem;
            color: #0f2b3d;
            display: block;
        }

        .review-author-role {
            font-size: 0.78rem;
            color: #8493ab;
        }

        .review-verified-tag {
            margin-left: auto;
            font-size: 0.68rem;
            font-weight: 600;
            color: #10B981;
            background: rgba(16,185,129,0.1);
            padding: 3px 9px;
            border-radius: 20px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .reviews-summary-bar {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 2.5rem;
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(45,212,191,0.2);
            border-radius: 80px;
            padding: 1rem 2.2rem;
            margin: 0 auto 3rem auto;
            width: fit-content;
            max-width: 100%;
        }

        .reviews-summary-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #334155;
            white-space: nowrap;
        }

        .reviews-summary-item strong {
            font-size: 1.15rem;
            color: #0f2b3d;
            font-weight: 800;
        }

        @media (max-width: 768px) {
            .review-card {
                padding: 1.4rem;
            }
            .reviews-summary-bar {
                gap: 1.2rem 1.6rem;
                padding: 0.9rem 1.4rem;
                border-radius: 24px;
            }
        }

        @media (max-width: 480px) {
            .reviews-summary-bar {
                flex-direction: column;
                gap: 0.9rem;
            }
        }

        /* ============================================
           PREMIUM FOOTER WITH ANIMATIONS
           ============================================ */
        .footer-premium {
            background: linear-gradient(135deg, #0a1a2b 0%, #0c2338 50%, #0f2b3d 100%);
            position: relative;
            overflow: hidden;
            padding: 3rem 0 1.5rem 0;
            color: #cbd5e6;
            font-family: 'Inter', sans-serif;
            border-top: 1px solid rgba(45, 212, 191, 0.2);
        }

        /* Animated gradient border effect (premium touch) */
        .footer-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #2dd4bf, #38bdf8, #2dd4bf, transparent);
            animation: shimmerBorder 4s infinite linear;
        }

        @keyframes shimmerBorder {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        /* Animated background particles (subtle) */
        .footer-premium::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 20% 40%, rgba(45,212,191,0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            animation: floatDots 20s infinite linear;
        }

        @keyframes floatDots {
            0% { background-position: 0 0; }
            100% { background-position: 60px 60px; }
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* Premium footer grid */
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 2rem;
        }

        .footer-brand {
            flex: 1.5;
            min-width: 200px;
        }

        .footer-logo {
            margin-bottom: 1rem;
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .footer-logo:hover {
            transform: scale(1.02);
        }

        .footer-logo img {
            height: 48px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transition: opacity 0.2s;
        }

        .footer-tagline {
            font-size: 1rem;
            color: #94a3b8;
            margin-top: 0.5rem;
            line-height: 1.5;
            max-width: 280px;
        }

        .footer-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: flex-end;
        }

        .link-column h4 {
            color: #e2e8f0;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .link-column h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(95deg, #0f2b3d 0%, #1e6b5e 100%);
            border-radius: 2px;
            transition: width 0.3s;
        }

        .link-column:hover h4::after {
            width: 50px;
        }

        .link-column ul {
            list-style: none;
            padding: 0;
        }

        .link-column ul li {
            margin-bottom: 0.7rem;
        }

        .link-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .link-column ul li a i {
            font-size: 0.75rem;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.2s;
        }

        .link-column ul li a:hover {
            color: #fff;
            transform: translateX(5px);
        }

        .link-column ul li a:hover i {
            opacity: 1;
            transform: translateX(0);
        }

        /* Social Icons - Premium Animation */
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 0.5rem;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e6;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            text-decoration: none;
            border: 1px solid rgba(45,212,191,0.2);
        }

        .social-icon:hover {
            background: #1e6b5e;
            color: #ffffff;
            transform: translateY(-5px) rotate(5deg);
            border-color: transparent;
            box-shadow: 0 8px 20px rgba(45,212,191,0.3);
        }

        /* Newsletter / Premium section */
        .footer-newsletter {
            flex: 1.2;
            min-width: 220px;
        }

        .newsletter-title {
            color: #e2e8f0;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .newsletter-input {
            flex: 1;
            min-width: 140px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 40px;
            padding: 10px 16px;
            font-size: 0.8rem;
            color: #e2e8f0;
            outline: none;
            transition: all 0.2s;
        }

        .newsletter-input:focus {
            border-color: #1e6b5e;
            background: rgba(45,212,191,0.08);
        }

        .newsletter-btn {
            background: #1e6b5e;
            border: none;
            border-radius: 40px;
            padding: 0 18px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.8rem;
        }

        .newsletter-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(45,212,191,0.4);
        }

        /* Bottom bar with animation */
        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding-top: 1rem;
            font-size: 0.8rem;
        }

        .copyright {
            color: #7e8aa2;
            transition: color 0.2s;
        }

        .copyright:hover {
            color: #2dd4bf;
        }

        .legal-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .legal-links a {
            color: #7e8aa2;
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.2s;
        }

        .legal-links a:hover {
            color: #2dd4bf;
        }

        /* Pulse animation for heart / premium icon */
        @keyframes gentlePulse {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.12); opacity: 1; }
        }

        .premium-heart {
            display: inline-block;
            animation: gentlePulse 1.8s infinite ease;
            color: #ff7b89;
            margin: 0 2px;
        }

        /* Responsive */
        @media (max-width: 880px) {
            .footer-grid {
                flex-direction: column;
                gap: 2rem;
            }
            .footer-links {
                justify-content: flex-start;
                gap: 1.8rem 2.5rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .footer-premium {
                padding: 2.2rem 0 1.2rem 0;
            }
            .footer-links {
                gap: 1.5rem;
            }
            .link-column {
                min-width: 45%;
            }
        }

        /* Fade-up animation on scroll (optional) */
        .fade-up {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.7s ease forwards;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* staggered child animation */
        .footer-grid > * {
            opacity: 0;
            transform: translateY(15px);
            animation: slideUpFade 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }
        .footer-grid > *:nth-child(1) { animation-delay: 0.05s; }
        .footer-grid > *:nth-child(2) { animation-delay: 0.15s; }
        .footer-grid > *:nth-child(3) { animation-delay: 0.25s; }

        @keyframes slideUpFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* section padding */
        .section-padding {
            padding: 80px 0;
        }
        .bg-soft-gray {
            background: #F8FAFE;
        }
        .bg-white-smoke {
            background: #F9FAFE;
        }
        @media (max-width: 768px) {
            .section-padding { padding: 50px 0; }
            .hero-section-custom { padding-top: 110px; }
        }

        @media (max-width: 480px) {
            .hero-section-custom { padding-top: 100px; padding-bottom: 50px; }
            .section-padding { padding: 40px 0; }
        }

        .img-responsive {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
        }
        .rounded-pill-custom { border-radius: 60px; }
        .badge-light-custom {
            background-color: #F3F4F6;
            padding: 0.25rem 1rem;
            border-radius: 60px;
            display: inline-block;
        }
        hr {
            margin: 1.5rem 0;
            border: 0;
            border-top: 1px solid #E5E7EB;
        }
        .list-no-bullet {
            list-style: none;
            padding-left: 0;
        }
        .hover-lift {
            transition: transform 0.2s;
        }
        .text-decoration-none {
            text-decoration: none;
        }

        .contact-section {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
            background: linear-gradient(135deg, #f8faff 0%, #f0f4fe 100%);
            padding: 80px 24px;
        }

        .contact-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        /* Grid layout - modern two column */
        .contact-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            background: #ffffff;
            border-radius: 42px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .contact-info {
            flex: 1;
            min-width: 280px;
            background: linear-gradient(95deg, #0f2b3d 0%, #1e6b5e 100%);
            padding: 48px 40px;
            color: white;
            border-radius: 0 32px 32px 0;
        }

        .contact-form-wrapper {
            flex: 1.2;
            min-width: 280px;
            padding: 48px 40px;
            background: white;
        }

        /* Badge & typography */
        .contact-badge {
            display: inline-block;
            background: rgba(255,255,255,0.18);
            backdrop-filter: blur(4px);
            padding: 6px 16px;
            border-radius: 60px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: #e0f2fe;
            margin-bottom: 24px;
        }

        .contact-info h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .contact-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #e2e8f0;
            margin-bottom: 32px;
        }

        .divider-light {
            margin: 24px 0;
            border: 0;
            height: 2px;
            background: rgba(255,255,255,0.15);
            border-radius: 10px;
        }

        .contact-details {
            margin: 28px 0;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            font-size: 1rem;
            color: #f1f5f9;
        }

        .detail-icon {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.12);
            border-radius: 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            transition: 0.2s;
            flex-shrink: 0;
        }

        .detail-item:hover .detail-icon {
            background: #1e6b5e;
            color: #fff;
            transform: scale(1.02);
        }

        .email-big-icon {
            margin-top: 24px;
            text-align: left;
        }
        .email-big-icon i {
            font-size: 3rem;
            background: linear-gradient(135deg, #86efac, #2dd4bf);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Form styles */
        .form-title {
            font-size: clamp(1.5rem, 3vw, 1.9rem);
            font-weight: 700;
            color: #0f2b3d;
            margin-bottom: 8px;
        }

        .form-sub {
            color: #5b6e8c;
            margin-bottom: 32px;
            border-left: 4px solid #2dd4bf;
            padding-left: 16px;
        }

        .input-group-modern {
            margin-bottom: 24px;
        }

        .input-group-modern label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e2f44;
            letter-spacing: 0.3px;
        }

        .input-with-icon {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-with-icon i {
            position: absolute;
            left: 18px;
            color: #8ba0bc;
            font-size: 1rem;
            pointer-events: none;
        }

        .input-with-icon input,
        .input-with-icon textarea {
            width: 100%;
            padding: 14px 18px 14px 48px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            border: 1.5px solid #e2edf7;
            border-radius: 28px;
            background: #ffffff;
            transition: all 0.2s ease;
            outline: none;
            color: #1e2f44;
        }

        .input-with-icon textarea {
            padding: 14px 18px 14px 48px;
            resize: vertical;
            min-height: 120px;
        }

        .input-with-icon input:focus,
        .input-with-icon textarea:focus {
            border-color: #2dd4bf;
            box-shadow: 0 6px 14px rgba(45,212,191,0.12);
        }

        /* recaptcha wrapper (custom spacing) */
        .recaptcha-wrapper {
            margin: 20px 0 12px;
            transform: scale(0.9);
            transform-origin: left center;
        }

        /* submit button - modern gradient */
        .submit-btn {
            background: linear-gradient(95deg, #0f2b3d 0%, #1e6b5e 100%);
            border: none;
            color: white;
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 44px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.25s;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 8px 18px rgba(0,0,0,0.08);
        }

        .submit-btn i {
            font-size: 1rem;
            transition: 0.2s;
        }

        .submit-btn:hover i {
            transform: translateX(4px);
        }

        /* hr style modern */
        .modern-hr {
            margin: 24px 0;
            border: 0;
            height: 1px;
            background: linear-gradient(90deg, #cbdbe0, transparent);
        }

        /* responsive */
        @media (max-width: 900px) {
            .contact-grid {
                flex-direction: column;
                border-radius: 32px;
            }
            .contact-info {
                border-radius: 32px 32px 0 0;
                padding: 40px 28px;
            }
            .contact-form-wrapper {
                padding: 40px 28px;
            }
        }

        @media (max-width: 480px) {
            .contact-section {
                padding: 40px 16px;
            }
            .contact-info, .contact-form-wrapper {
                padding: 32px 20px;
            }
            .input-with-icon input,
            .input-with-icon textarea {
                padding: 12px 16px 12px 44px;
            }
            .detail-item {
                gap: 12px;
                margin-bottom: 18px;
            }
            .detail-icon {
                width: 40px;
                height: 40px;
                font-size: 1.15rem;
            }
        }

        /* ============================================
           FLOATING WHATSAPP BUTTON - PREMIUM DESIGN
           ============================================ */
        .floating-whatsapp {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        /* Main WhatsApp button */
        .whatsapp-button {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
            font-size: 32px;
            animation: whatsappPulse 2s infinite;
            position: relative;
        }

        /* Pulse animation for attention */
        @keyframes whatsappPulse {
            0% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 0 12px rgba(37, 211, 102, 0.2);
                transform: scale(1.05);
            }
            100% {
                box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
                transform: scale(1);
            }
        }

        /* Ripple effect on hover */
        .whatsapp-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(37,211,102,0.3), transparent);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .whatsapp-button:hover::before {
            opacity: 1;
            animation: ripple 0.6s ease-out;
        }

        @keyframes ripple {
            0% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        @media (max-width: 480px) {
            .floating-whatsapp {
                bottom: 18px;
                right: 18px;
            }
            .whatsapp-button {
                width: 52px;
                height: 52px;
                font-size: 27px;
            }
        }

        a{
            color:#d2d2d2;
            text-decoration: none;
        }
        a:hover{
            color:#fff;
            text-decoration: none;
        }

        /* Reduced motion respect */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.001ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.001ms !important;
            }
        }