
        :root {
            --primary-red: #E63946;
            --dark-red: #A4161A;
            --primary-blue: #130F49;
            --light-blue: #DBEAFE;
            --accent-blue: #2563EB;
            --light-bg: #F8F9FA;
            --dark-text: #111827;
            --gray-text: #6B7280;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            font-weight: 400;
            color: var(--dark-text);
            line-height: 1.6;
            background: var(--white);
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Inter', Arial, sans-serif;
            font-weight: 700;
            color: var(--dark-text);
        }

        .h-display-1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .h-display-2 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .h-display-3 {
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.3;
        }

        /* ============ NAVBAR ============ */
        .navbar-custom {
            background: var(--white);
            border-bottom: 1px solid #E5E7EB;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .navbar-brand-logo {
            height: 40px;
            max-width: 127px;
            max-height: 29px;
            width: auto;
            display: block;
            transition: all 0.3s ease;
        }

        .navbar-brand:hover .navbar-brand-logo {
            opacity: 0.8;
            transform: scale(1.02);
        }

        .navbar-brand-text {
            font-family: 'Inter', Arial, sans-serif;
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--primary-red) !important;
            margin-left: 10px;
            display: none;
        }

        .nav-link {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 500;
            color: var(--gray-text) !important;
            transition: all 0.3s ease;
            margin: 0 10px;
        }

        .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .btn-nav {
            background: var(--primary-red);
            color: white !important;
            border-radius: 8px;
            padding: 10px 20px;
            font-weight: 600;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .btn-nav:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
        }

        /* ============ HERO SECTION ============ */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #FEE2E2 0%, #DBEAFE 100%);
            text-align: center;
        }

        .hero-content h1 {
            color: var(--dark-text);
            margin-bottom: 20px;
        }

        .hero-content p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 1.1rem;
            color: var(--gray-text);
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-primary-custom {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 8px;
            font-weight: 600;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary-custom:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
            color: white;
        }

        /* ============ PRODUCTS SECTION ============ */
        .products-section {
            padding: 80px 0;
            background: var(--white);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .product-card {
            padding: 40px 30px;
            background: var(--light-bg);
            border-radius: 12px;
            transition: all 0.3s ease;
            text-align: left;
            border-left: 5px solid transparent;
        }

        .product-card:hover {
            background: #F3F4F6;
            transform: translateY(-5px);
            border-left-color: var(--primary-red);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.1);
        }

        .product-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-text);
        }

        .product-card p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .explore-link {
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .explore-link:hover {
            gap: 12px;
            color: var(--dark-red);
        }

        /* ============ TRUST SECTION ============ */
        .trust-section {
            padding: 60px 0;
            background: var(--light-bg);
            text-align: center;
        }

        .trust-text {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 1rem;
            color: var(--gray-text);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .trust-stat {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-red);
            margin: 0;
        }

        .trust-stat-label {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.95rem;
            color: var(--gray-text);
            margin-top: 8px;
        }

        /* ============ WHY SECTION ============ */
        .why-section {
            padding: 100px 0;
            background: var(--white);
        }

        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-top: 50px;
        }

        .why-text h2 {
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .why-item {
            margin-bottom: 30px;
        }

        .why-item h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--dark-text);
        }

        .why-item i {
            color: var(--primary-red);
            margin-right: 12px;
        }

        .why-item p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            line-height: 1.7;
        }

        /* ============ ECOSYSTEM SECTION ============ */
        .ecosystem-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .ecosystem-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .ecosystem-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            border-top: 4px solid var(--primary-red);
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
        }

        .ecosystem-card:hover {
            border-top-color: var(--primary-blue);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.15);
            transform: translateY(-3px);
        }

        .ecosystem-card h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
            color: var(--dark-text);
        }

        .ecosystem-card p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .know-more {
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .know-more:hover {
            color: var(--dark-red);
        }

        /* ============ INDUSTRIES SECTION ============ */
        .industries-section {
            padding: 100px 0;
            background: var(--white);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .industry-card {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .industry-card:hover {
            border-color: var(--primary-red);
            background: #FFF5F5;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.1);
        }

        .industry-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
            display: block;
        }

        .industry-card h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-text);
            margin: 0;
        }

        /* ============ TECHNOLOGIES SECTION ============ */
        .technologies-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 25px;
            margin-top: 50px;
        }

        .tech-card {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
            border-top: 3px solid var(--primary-red);
        }

        .tech-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.15);
        }

        .tech-card img {
            width: 50px;
            height: 50px;
            margin-bottom: 15px;
            object-fit: contain;
        }

        .tech-card-name {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 0.9rem;
            margin: 0;
        }

        .tech-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #FFF5F5;
            border-radius: 8px;
        }

        .tech-icon i {
            font-size: 2rem;
            color: var(--primary-red);
        }

        /* ============ METRICS SECTION ============ */
        .metrics-section {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }

        .metrics-title {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 50px;
            color: var(--dark-text);
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .metric-item {
            padding: 30px;
        }

        .metric-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .metric-label {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 1rem;
            color: var(--gray-text);
        }

        /* ============ TESTIMONIALS SECTION ============ */
        .testimonials-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .testimonial-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonial-header h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary-red);
        }

        .testimonial-card:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.95rem;
            color: var(--gray-text);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 5px;
        }

        .testimonial-company {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.85rem;
            color: var(--primary-red);
        }

        /* ============ FAQ SECTION ============ */
        .faq-section {
            padding: 100px 0;
            background: var(--white);
            text-align: center;
        }

        .faq-header {
            margin-bottom: 50px;
        }

        .faq-header h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .faq-subtext {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            font-size: 1.1rem;
        }

        .accordion-button {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            color: var(--dark-text) !important;
            background: var(--light-bg) !important;
            border: 2px solid #E5E7EB !important;
            border-radius: 8px !important;
            margin-bottom: 12px;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-red) !important;
            color: white !important;
            border-color: var(--primary-red) !important;
        }

        .accordion-body {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            text-align: left;
            background: var(--light-bg);
            border: 2px solid #E5E7EB;
            border-top: none;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: var(--white);
            text-align: center;
        }

        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .btn-secondary-custom {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 14px 35px;
            border-radius: 8px;
            font-weight: 600;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-secondary-custom:hover {
            background: #1E40AF;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--dark-text);
            color: #D1D5DB;
            padding: 60px 0 20px;
        }

        .footer h6 {
            color: white;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-link {
            color: #D1D5DB;
            text-decoration: none;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: var(--primary-red);
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 30px;
            margin-top: 30px;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.9rem;
            text-align: center;
        }

        /* ============ POS PAGE SPECIFIC STYLES ============ */
        .breadcrumb-section {
            padding: 20px 0;
            background: var(--light-bg);
            border-bottom: 1px solid #E5E7EB;
        }

        .breadcrumb-item {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.9rem;
        }

        .breadcrumb-item a {
            color: var(--primary-red);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb-item a:hover {
            color: var(--dark-red);
        }

        .pos-hero-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #FEE2E2 0%, #DBEAFE 100%);
        }

        .pos-hero-subtitle {
            font-size: 1.2rem;
            color: var(--gray-text);
            margin-top: 15px;
        }

        .features-section {
            padding: 100px 0;
            background: var(--white);
        }

        .feature-item {
            padding: 40px 30px;
            background: var(--light-bg);
            border-radius: 12px;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.1);
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark-text);
        }

        .feature-item p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .addon-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .addon-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        .addon-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.15);
            transform: translateY(-5px);
        }

        .addon-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
            display: block;
        }

        .addon-card h5 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: var(--dark-text);
        }

        .addon-card p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .addon-link {
            color: var(--primary-red);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .addon-link:hover {
            color: var(--dark-red);
            gap: 8px;
        }

        /* ============ INTEGRATION CATEGORIES ============ */
        .integration-categories {
            padding-top: 40px;
        }

        .category-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        .category-card:hover {
            border-color: var(--primary-red);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.15);
            transform: translateY(-5px);
        }

        .category-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            display: block;
            margin-bottom: 15px;
        }

        .category-card h5 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--dark-text);
        }

        .category-card p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
        }

        /* ============ ENHANCED INTEGRATION LOGOS ============ */

        .integration-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .integration-logo {
            background: var(--white);
            padding: 25px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 130px;
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .integration-logo:hover {
            border-color: var(--primary-red);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.2);
            transform: translateY(-8px);
            background: linear-gradient(135deg, #FFF5F5 0%, var(--white) 100%);
        }

        .integration-content {
            text-align: center;
        }

        .integration-logo i {
            font-size: 2.5rem;
            color: var(--primary-red);
            display: block;
            margin-bottom: 12px;
        }

        .integration-name {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 0.9rem;
            margin: 0;
            word-break: break-word;
        }

        .integration-logo:hover .integration-name {
            color: var(--primary-red);
        }

        .integrations-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .integrations-text {
            text-align: center;
            margin-bottom: 30px;
        }

        .integrations-text h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--dark-text);
            font-weight: 800;
        }

        .integrations-text p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .integration-logos {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 15px;
            }

            .integration-logo {
                min-height: 110px;
                padding: 20px;
            }

            .integration-logo i {
                font-size: 2rem;
            }

            .integration-name {
                font-size: 0.8rem;
            }
        }


        .integrations-section {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .integrations-text {
            text-align: center;
            margin-bottom: 50px;
        }

        .integrations-text h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-text);
        }

        .integrations-text p {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            color: var(--gray-text);
            font-size: 1.1rem;
        }

        .integration-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .integration-logo {
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100px;
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        .integration-logo:hover {
            border-color: var(--primary-red);
            box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
        }

        .integration-logo i {
            font-size: 2rem;
            color: var(--primary-red);
        }

        .business-types-section {
            padding: 100px 0;
            background: var(--white);
        }

        .business-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .business-type-card {
            background: linear-gradient(135deg, #FFF5F5 0%, #F3F4F6 100%);
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .business-type-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.1);
        }

        .business-type-card i {
            font-size: 2.5rem;
            color: var(--primary-red);
            margin-bottom: 15px;
            display: block;
        }

        .business-type-card h5 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-text);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .h-display-1 {
                font-size: 2rem;
            }

            .h-display-2 {
                font-size: 1.8rem;
            }

            .h-display-3 {
                font-size: 1.4rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .why-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .metrics-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .tech-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }

            .addon-grid {
                grid-template-columns: 1fr;
            }

            .business-types-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-section,
            .pos-hero-section {
                padding: 60px 0;
            }

            .products-section,
            .why-section,
            .ecosystem-section,
            .industries-section,
            .technologies-section,
            .metrics-section,
            .testimonials-section,
            .features-section,
            .integrations-section,
            .business-types-section {
                padding: 60px 0;
            }
        }

        /* ============ DEMO FORM SECTION ============ */
        .demo-form-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            position: relative;
        }

        .demo-form-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(230, 57, 70, 0.05);
            border-radius: 50%;
            z-index: 0;
        }

        .form-wrapper {
            background: var(--white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 1;
            border-top: 4px solid var(--primary-red);
        }

        .form-wrapper h2 {
            color: var(--dark-text);
            margin-bottom: 10px;
        }

        .demo-form {
            position: relative;
            z-index: 1;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-control {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            border: 2px solid #E5E7EB;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.15);
            background: var(--white);
        }

        .form-control::placeholder {
            color: #9CA3AF;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
        }

        /* ============ CAPTCHA ============ */
        .captcha-container {
            position: relative;
        }

        .captcha-box {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--light-bg);
            padding: 12px 15px;
            border-radius: 8px;
            border: 2px solid #E5E7EB;
            transition: all 0.3s ease;
        }

        .captcha-box:focus-within {
            border-color: var(--primary-red);
            background: var(--white);
        }

        .captcha-input {
            flex: 1;
            border: none;
            background: transparent;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark-text);
            outline: none;
        }

        .captcha-input::placeholder {
            color: #9CA3AF;
        }

        .captcha-code {
            background: var(--white);
            padding: 8px 15px;
            border-radius: 6px;
            border: 1px solid var(--primary-red);
            font-family: 'Courier New', monospace;
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--primary-red);
            letter-spacing: 3px;
            min-width: 80px;
            text-align: center;
            user-select: none;
        }

        .captcha-refresh {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .captcha-refresh:hover {
            background: var(--dark-red);
            transform: rotate(180deg);
        }

        /* ============ SUBMIT BUTTON ============ */
        .btn-submit-form {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-submit-form:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
        }

        .btn-submit-form:active {
            transform: translateY(0);
        }

        /* ============ FORM IMAGE ============ */
        .form-image-wrapper {
            position: relative;
            text-align: center;
        }

        .form-image {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .form-image:hover {
            transform: translateY(-10px);
        }

        .form-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--white);
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideInUp 0.5s ease forwards;
        }

        .form-badge i {
            font-size: 1.5rem;
            color: var(--primary-red);
        }

        .form-badge span {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            color: var(--dark-text);
            font-size: 0.9rem;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============ SUCCESS MESSAGE ============ */
        .alert-success {
            background: #ECFDF5;
            border: 2px solid #10B981;
            color: #047857;
            border-radius: 8px;
            padding: 12px 15px;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 500;
        }

        .alert-success i {
            margin-right: 8px;
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .demo-form-section {
                padding: 60px 0;
            }

            .form-wrapper {
                padding: 30px 25px;
                margin-bottom: 40px;
            }

            .form-wrapper h2 {
                font-size: 1.8rem;
            }

            .form-badge {
                position: static;
                margin-top: 20px;
                justify-content: center;
            }

            .captcha-box {
                flex-wrap: wrap;
            }

            .captcha-code {
                width: 100%;
            }

            .captcha-refresh {
                width: 100%;
            }
        }


        /* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.1);
}

/* Go to Top Button */
.go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 25px;
    z-index: 999;
    background-color: #e63946;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.go-top-btn:hover {
    background-color: #c62830;
    transform: scale(1.1);
}


        .demo-form-section {
            padding: 100px 0 70px 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
        }

        .form-wrapper {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
            border-top: 4px solid var(--primary-red);
        }

        .form-label {
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 6px;
        }

        .form-control, textarea.form-control {
            border-radius: 8px;
            border: 2px solid #E5E7EB;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 0.96rem;
            min-height: 40px;
        }

        .form-control:focus, textarea.form-control:focus {
            border-color: var(--primary-red);
            box-shadow: 0 0 0 0.15rem rgba(230,57,70,.10);
        }

        .btn-submit-form {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: white;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 600;
            font-family: 'Karla', 'Inter', Arial, sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        @media (max-width: 767.98px) {
            .demo-form-section { padding: 60px 0 40px 0;}
            .form-wrapper { padding: 18px;}
            .row.g-4 > div {margin-bottom: 8px;}
        }

        #pageloader.show {display:flex !important; opacity:1; pointer-events:all;}
        #pageloader.hide {opacity:0; pointer-events:none; transition:opacity 0.4s;}



