:root {
            --primary-color: #ff545a;
            --primary-hover: #d93e43;
            --secondary-color: #2c3e50;
            --accent-green: #28a745;
            --bg-light: #f8f9fa;
            --font-main: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-main);
            color: var(--secondary-color);
            overflow-x: hidden;
        }

        /* --- Navigation --- */
        .navbar {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: var(--secondary-color);
        }
        .navbar-brand span {
            color: var(--primary-color);
        }
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin: 0 10px;
            text-transform: uppercase;
            font-size: 14px;
        }
        .nav-link:hover {
            color: var(--primary-color);
        }
        .btn-custom {
            background-color: var(--primary-color);
            color: #fff;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-custom:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 5px 15px rgba(255, 84, 90, 0.3);
        }

        /* --- Hero Section --- */
        .hero-section {
            position: relative;
            height: 85vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.62) 0%, rgba(30, 41, 59, 0.65) 100%);
            z-index: 1;
        }
        .hero-section .container {
            position: relative;
            z-index: 2;
        }
        
        /* Default Desktop Sizes */
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* --- MOBILE FIXES (Media Query) --- */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.0rem !important; /* Drastically reduced for mobile */
                line-height: 1.3;
            }
            .hero-subtitle {
                font-size: 1rem;
                padding: 0 15px; /* Prevents text touching edges */
            }
            .hero-section {
                height: auto; /* Let content dictate height on mobile */
                padding: 80px 0;
            }
            .btn-custom, .hero-btn-outline {
                width: auto; /* Let content dictate width instead of 100% */
                padding: 8px 20px; /* Reduced padding for mobile */
                font-size: 0.95rem; /* Slightly smaller text */
                margin-left: 0 !important;
                margin-bottom: 0;
            }
        }

        .hero-btn-outline {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
            border-radius: 50px;
            padding: 10px 25px;
            font-weight: 600;
            margin-left: 10px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .hero-btn-outline:hover {
            background: #fff;
            color: var(--secondary-color);
        }

        /* --- Features / Benefits --- */
        .feature-box {
            padding: 40px 20px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            height: 100%;
            border-bottom: 4px solid transparent;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            border-bottom: 4px solid var(--primary-color);
        }
        .feature-icon {
            font-size: 40px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* --- Product Cards --- */
        .product-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            background: #fff;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .product-img-wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        .product-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .product-card:hover .product-img-wrapper img {
            transform: scale(1.1);
        }
        .badge-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        .card-body {
            padding: 25px;
        }
        .moq-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #fff5f5, #fff);
            border: 1.5px solid rgba(255, 84, 90, 0.25);
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.82rem;
            margin-top: 10px;
            padding: 6px 12px;
            border-radius: 20px;
        }
        .moq-tag i {
            color: var(--primary-color);
        }

        /* --- Solutions Section --- */
        .solutions-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 80px 0;
            color: #fff;
        }
        .solutions-section .section-badge {
            display: inline-block;
            background: rgba(255, 84, 90, 0.15);
            color: #ff7f84;
            border: 1px solid rgba(255, 84, 90, 0.3);
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
        .solutions-section h2 {
            color: #fff;
            font-weight: 700;
        }
        .solution-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
            min-height: 340px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .solution-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(0,0,0,0.5);
        }
        .solution-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }
        .solution-card:hover img {
            transform: scale(1.06);
        }
        .solution-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,10,20,0.88) 0%, rgba(10,10,20,0.35) 40%, transparent 70%);
            transition: background 0.3s;
        }
        .solution-card:hover .solution-card-overlay {
            background: linear-gradient(to top, rgba(180,30,35,0.85) 0%, rgba(10,10,20,0.45) 45%, transparent 70%);
        }
        .solution-card-body {
            position: relative;
            z-index: 2;
            padding: 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        .solution-icon {
            width: 46px;
            height: 46px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 14px;
        }
        .solution-card h5 {
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 8px;
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
        }
        .solution-card p {
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            line-height: 1.55;
            margin-bottom: 0;
        }
        .solution-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 14px;
        }
        .solution-tag {
            background: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.8);
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 11px;
            font-weight: 500;
        }

        /* --- WhatsApp Modal --- */
        .wa-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10, 15, 30, 0.75);
            backdrop-filter: blur(6px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .wa-modal-overlay.active {
            display: flex;
        }
        .wa-modal {
            background: #fff;
            border-radius: 24px;
            width: 100%;
            max-width: 520px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        @keyframes modalSlideIn {
            from { opacity: 0; transform: translateY(30px) scale(0.95); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }
        .wa-modal-header {
            background: linear-gradient(135deg, #075e54, #128c7e);
            padding: 28px 28px 22px;
            color: #fff;
        }
        .wa-modal-header .wa-logo {
            width: 46px;
            height: 46px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 12px;
        }
        .wa-modal-header h4 {
            font-weight: 700;
            margin: 0 0 4px;
            font-size: 1.15rem;
        }
        .wa-modal-header p {
            margin: 0;
            opacity: 0.85;
            font-size: 13px;
        }
        .wa-modal-body {
            padding: 26px 28px 28px;
        }
        .wa-form-group {
            margin-bottom: 16px;
        }
        .wa-form-group label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: #555;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .wa-form-group input,
        .wa-form-group select,
        .wa-form-group textarea {
            width: 100%;
            border: 1.5px solid #e8e8e8;
            border-radius: 10px;
            padding: 11px 14px;
            font-family: var(--font-main);
            font-size: 14px;
            color: var(--secondary-color);
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
            background: #fafafa;
        }
        .wa-form-group input:focus,
        .wa-form-group select:focus,
        .wa-form-group textarea:focus {
            border-color: #25D366;
            box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.12);
            background: #fff;
        }
        .wa-form-group textarea {
            resize: vertical;
            min-height: 80px;
        }
        .wa-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .btn-wa-send {
            width: 100%;
            background: linear-gradient(135deg, #25D366, #128c7e);
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 14px;
            font-family: var(--font-main);
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s;
            margin-top: 6px;
        }
        .btn-wa-send:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }
        .wa-modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            background: rgba(255,255,255,0.15);
            border: none;
            color: #fff;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }
        .wa-modal-close:hover {
            background: rgba(255,255,255,0.28);
        }
        .wa-modal-header { position: relative; }
        @media (max-width: 480px) {
            .wa-form-row {
                grid-template-columns: 1fr;
            }
            .wa-modal-body {
                padding: 20px 18px 22px;
            }
        }

        /* --- Testimonials --- */
        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin: 15px 0;
            height: 100%;
            border: 1px solid #eee;
        }
        .testimonial-card h5 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        .testimonial-card h6 {
            color: #999;
            font-size: 13px;
            margin-bottom: 15px;
        }
        .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        .testimonial-text {
            font-style: italic;
            color: #555;
            font-size: 14px;
        }

        /* --- Blog Section --- */
        .blog-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .blog-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .blog-content {
            padding: 20px;
        }
        .blog-date {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .blog-title {
            font-size: 18px;
            font-weight: 600;
            margin: 10px 0;
        }
        .blog-title a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.2s;
        }
        .blog-title a:hover {
            color: var(--primary-color);
        }

        /* --- FAQ Accordion --- */
        .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background-color: rgba(255, 84, 90, 0.1);
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(255, 84, 90, 0.25);
        }

        /* --- Footer --- */
        footer {
            background: #212529;
            color: #adb5bd;
            padding: 60px 0 30px;
        }
        footer h5 {
            color: #fff;
            margin-bottom: 20px;
        }
        footer a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        footer a:hover {
            color: var(--primary-color);
        }

        /* --- Floating WhatsApp --- */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #25D366, #128c7e);
            color: #fff;
            width: 62px;
            height: 62px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 30px;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: none;
            animation: waPulse 2.5s infinite;
        }
        @keyframes waPulse {
            0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
            50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.75), 0 0 0 10px rgba(37, 211, 102, 0.08); }
        }
        .whatsapp-float:hover {
            transform: scale(1.12);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
            color: #fff;
        }        .typing-cursor {
            animation: blink 0.75s step-end infinite;
        }
        @keyframes blink {
            from, to { opacity: 1; }
            50% { opacity: 0; }
        }