﻿/* ========== ROOT VARIABLES - Vibrant & Professional ========== */
:root {
    --primary: #6D28D9;
    --primary-dark: #5B21B6;
    --primary-light: #8B5CF6;
    --secondary: #A855F7;
    --accent: #22C55E;
    --accent-dark: #16A34A;
    --primary-glow: rgba(109, 40, 217, 0.10);
    --accent-glow: rgba(34, 197, 94, 0.12);
    --dark-bg: #2E1065;
    --dark-card: #FFFFFF;
    --gray-50: #F5F3FF;
    --gray-100: #FAFAFF;
    --gray-200: #E9D5FF;
    --gray-300: #DDD6FE;
    --gray-600: #6B7280;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 10px rgba(109,40,217,0.06);
    --shadow-lg: 0 10px 25px rgba(109,40,217,0.08);
    --shadow-xl: 0 20px 40px rgba(109,40,217,0.10);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-50);
    color: var(--gray-800);
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

/* ========== NAVBAR ========== */
.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid #E9D5FF;
    backdrop-filter: blur(12px);
    
    padding: 0.75rem 0;
    transition: all 0.25s ease;
}

    .custom-navbar.scrolled {
        padding: 0.5rem 0;
        box-shadow: var(--shadow-md);
    }

.logo-text {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.3px;
    background: none;
    background-clip: text;
    -webkit-background-clip: unset;
    color: #6D28D9;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.2s;
}

    .nav-link:hover, .nav-link.active {
        color: var(--primary) !important;
    }

.btn-sm-custom {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 40px;
    transition: all 0.2s;
}

.btn-outline-primary-sm {
    border: 1px solid var(--gray-300);
    background: white;
    color: var(--gray-700);
}

    .btn-outline-primary-sm:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--primary-glow);
        transform: translateY(-1px);
    }

.btn-whatsapp-sm {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

    .btn-whatsapp-sm:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    }

.phone-number-sm {
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--gray-100);
    padding: 0.45rem 1rem;
    border-radius: 40px;
    color: var(--gray-700);
}

/* ========== HERO SECTION - Eye Catching ========== */
.hero-section {
    position: relative;
    background: #F5F3FF;
    padding: 7rem 0 5rem;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-glow), rgba(124, 58, 237, 0.1));
    padding: 0.35rem 1.1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary);
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title-gradient {
    color: #7C3AED;
    background: none;
    -webkit-text-fill-color: unset;
}

.hero-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 90%;
}

/* Premium Buttons */
.btn-primary-premium {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    transition: all 0.25s;
    border: none;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

    .btn-primary-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(29, 78, 216, 0.45);
    }

.btn-whatsapp-premium {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

    .btn-whatsapp-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
    }

/* Stat Cards - Glassmorphic */
.stat-card-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.6rem 1.3rem;
    border-radius: 60px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}

    .stat-card-mini:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-light);
    }

.stat-icon-mini {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-glow), rgba(124, 58, 237, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.stat-number-mini {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
}

.stat-label-mini {
    font-size: 0.6875rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* ========== SECTION BADGES ========== */
.section-badge-modern {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--primary-glow);
    padding: 0.25rem 0.9rem;
    border-radius: 40px;
}

.section-title-modern {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    background: none;
    -webkit-text-fill-color: unset;
}

/* ========== SERVICE CARDS - Premium, Eye Catching ========== */
.service-card-premium {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card-premium:hover::before {
        transform: scaleX(1);
    }

    .service-card-premium:hover {
        transform: translateY(-6px);
        border-color: var(--gray-300);
        box-shadow: var(--shadow-xl);
    }

.service-icon-premium {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-glow), rgba(124, 58, 237, 0.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.service-card-premium h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.service-card-premium p {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ========== WHY US FEATURES ========== */
.why-us-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.6rem 0;
}

    .why-us-feature i {
        color: var(--accent);
        font-size: 1.1rem;
        background: var(--accent-glow);
        border-radius: 50%;
        padding: 4px;
    }

/* ========== PROCESS STEPS ========== */
.process-step-card {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    height: 100%;
    position: relative;
}

    .process-step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-light);
    }

.step-number {
    position: absolute;
    top: 10px;
    right: 18px;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(29, 78, 216, 0.08);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(29, 78, 216, 0.25);
}

.process-step-card h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.process-step-card p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* ========== TESTIMONIAL CARDS ========== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.8rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    height: 100%;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-xl);
        border-color: var(--gray-300);
    }

.quote-icon-custom {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

/* ========== CTA BOX - Vibrant ========== */
.cta-box-premium {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 50%, var(--primary) 100%);
    border-radius: var(--radius-2xl);
    padding: 2.5rem 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

    .cta-box-premium::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .cta-box-premium h3 {
        font-size: 1.35rem;
        font-weight: 800;
        color: white;
        margin-bottom: 0.25rem;
    }

    .cta-box-premium p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.9);
    }

.btn-light-premium {
    background: white;
    color: var(--primary);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    transition: all 0.25s;
}

    .btn-light-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* ========== THICK COLOR FOOTER - Bold & Eye Catching ========== */
.footer-premium {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0A0F1C 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 2rem;
    border-top: 4px solid var(--primary);
}

    .footer-premium h5, .footer-premium h6 {
        color: white;
        font-weight: 700;
    }

.footer-link {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s;
}

    .footer-link:hover {
        color: var(--accent);
        padding-left: 4px;
    }

.footer-social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    color: rgba(255, 255, 255, 0.8);
}

    .footer-social-icon:hover {
        background: var(--accent);
        color: white;
        transform: translateY(-2px);
    }

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .cta-box-premium {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .section-title-modern {
        font-size: 1.375rem;
    }

    .service-card-premium {
        padding: 1.2rem;
    }
}

/* =========================================================
   PREMIUM MODERN ENHANCEMENTS
========================================================= */

/* PREMIUM BACKGROUND EFFECTS */
.hero-section::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(59,130,246,0.18), transparent 70%);
    top: -180px;
    left: -180px;
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 10s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(124,58,237,0.16), transparent 70%);
    bottom: -120px;
    right: -120px;
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 12s ease-in-out infinite reverse;
}

@keyframes floatBlob {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }
}

/* HERO IMAGE */
.hero-section img {
    position: relative;
    z-index: 2;
    border-radius: 32px;
    box-shadow: 0 30px 70px rgba(37,99,235,0.20);
    transition: all 0.45s ease;
}

    .hero-section img:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 40px 80px rgba(37,99,235,0.25);
    }

/* HERO TITLE */
.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-title-gradient {
    position: relative;
}

    .hero-title-gradient::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 10px;
        background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(124,58,237,0.3));
        border-radius: 20px;
        z-index: -1;
    }


/* PREMIUM BUTTONS */

.btn-primary-premium,
.btn-whatsapp-premium {
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
    border: none;
    transition: all 0.3s ease;
}

/* PRIMARY BUTTON */

.btn-primary-premium {
    background: #6D28D9;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.18);
}

    .btn-primary-premium:hover {
        background: #5B21B6;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(109, 40, 217, 0.24);
    }

/* WHATSAPP BUTTON */

.btn-whatsapp-premium {
    background: #22C55E;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.18);
}

    .btn-whatsapp-premium:hover {
        background: #16A34A;
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(34, 197, 94, 0.24);
    }

    /* LIGHT SHINE EFFECT */

    .btn-primary-premium::before,
    .btn-whatsapp-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 120%;
        height: 100%;
        background: rgba(255,255,255,0.12);
        transform: skewX(-20deg);
        transition: all 0.7s ease;
    }

    .btn-primary-premium:hover::before,
    .btn-whatsapp-premium:hover::before {
        left: 120%;
    }

/* GLASSMORPHISM SERVICE CARDS */
.service-card-premium {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.55);
}

    .service-card-premium:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 25px 50px rgba(37,99,235,0.12);
    }

/* ICON ANIMATION */
.service-icon-premium {
    position: relative;
    overflow: hidden;
}

    .service-icon-premium::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient( 135deg, rgba(255,255,255,0.2), transparent );
        top: -100%;
        left: -100%;
        transition: all 0.4s ease;
    }

.service-card-premium:hover
.service-icon-premium::before {
    top: 0;
    left: 0;
}

/* WHY US IMAGE */
.why-us-main-image,
.why-us-image {
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.12);
    transition: all 0.45s ease;
}

    .why-us-main-image:hover,
    .why-us-image:hover {
        transform: translateY(-6px);
        box-shadow: 0 35px 80px rgba(15,23,42,0.18);
    }

/* PROCESS STEP */
.process-step-card {
    overflow: hidden;
}

    .process-step-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(59,130,246,0.04), rgba(124,58,237,0.04) );
        opacity: 0;
        transition: all 0.35s ease;
    }

    .process-step-card:hover::before {
        opacity: 1;
    }

/* STEP ICON */
.step-icon {
    transition: all 0.35s ease;
}

.process-step-card:hover .step-icon {
    transform: scale(1.08) rotate(-4deg);
}

/* TESTIMONIALS */
.testimonial-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95) );
}

    .testimonial-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient( 135deg, rgba(59,130,246,0.18), rgba(124,58,237,0.18) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(15,23,42,0.08);
    }

/* TESTIMONIAL AVATAR */
.testimonial-avatar {
    box-shadow: 0 10px 20px rgba(59,130,246,0.25);
}

/* CTA SECTION */
.cta-box-premium {
    backdrop-filter: blur(14px);
    position: relative;
}

    .cta-box-premium::after {
        content: '';
        position: absolute;
        width: 220px;
        height: 220px;
        background: radial-gradient( circle, rgba(255,255,255,0.16), transparent 70% );
        bottom: -90px;
        left: -90px;
        border-radius: 50%;
    }

/* FOOTER */
.footer-premium {
    position: relative;
    overflow: hidden;
}

    .footer-premium::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient( circle, rgba(59,130,246,0.12), transparent 70% );
        border-radius: 50%;
    }

/* PREMIUM SCROLLBAR */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient( 180deg, var(--primary), var(--secondary) );
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient( 180deg, var(--secondary), var(--primary) );
    }

/* SMOOTH ANIMATIONS */
.service-card-premium,
.process-step-card,
.testimonial-card,
.stat-card-mini,
.btn-primary-premium,
.btn-whatsapp-premium {
    will-change: transform;
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 992px) {

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-section {
        padding-top: 6rem;
    }

    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-section {
        text-align: center;
        padding: 6rem 0 4rem;
    }

    .hero-description {
        font-size: 0.875rem;
    }

    .stat-card-mini {
        width: 100%;
        justify-content: center;
    }

    .cta-box-premium {
        padding: 2rem 1.5rem;
    }

    .section-title-modern {
        font-size: 1.6rem;
    }
}

/* =========================================================
   ULTRA PREMIUM DESIGN ENHANCEMENTS
========================================================= */

/* HERO IMAGE WRAPPER */
.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-main-image {
    border-radius: 36px;
    position: relative;
    z-index: 3;
    box-shadow: 0 40px 90px rgba(37,99,235,0.22);
    transition: all 0.45s ease;
}

    .hero-main-image:hover {
        transform: translateY(-10px) scale(1.01);
    }

/* IMAGE GLOW */
.hero-image-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulseGlow 5s infinite ease-in-out;
}

@keyframes pulseGlow {

    0%,100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* FLOATING TECH CARDS */
.floating-tech-card {
    position: absolute;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    padding: 14px;
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
    z-index: 5;
    animation: floatTech 5s ease-in-out infinite;
}

    .floating-tech-card img {
        width: 40px;
        height: 40px;
    }

    .floating-tech-card span {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--gray-700);
    }

.tech-card-1 {
    top: 10%;
    left: -10px;
}

.tech-card-2 {
    top: 15%;
    right: -20px;
}

.tech-card-3 {
    bottom: 15%;
    left: 20px;
}

@keyframes floatTech {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* TRUST STRIP */
.trust-strip {
    padding: 1.5rem 0;
    background: linear-gradient( 135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.9) );
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.5);
    border-bottom: 1px solid rgba(226,232,240,0.8);
}

.trust-strip-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
}

    .trust-item i {
        color: var(--primary);
        font-size: 1.1rem;
    }

/* TECH STACK */
.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 1.5rem;
}

.tech-stack-item {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s ease;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 30px rgba(15,23,42,0.05);
}

    .tech-stack-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(37,99,235,0.12);
    }

    .tech-stack-item img {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .tech-stack-item span {
        display: block;
        font-weight: 700;
        color: var(--gray-700);
    }

/* SECTION SPACING */
section {
    position: relative;
}

/* PREMIUM SECTION TITLES */
.section-title-modern {
    font-size: 2.5rem;
    line-height: 1.15;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .section-title-modern {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .trust-strip-wrapper {
        justify-content: center;
    }

    .floating-tech-card {
        display: none;
    }

    .hero-image-wrapper {
        padding: 10px;
    }
}

/* =========================================================
   ULTRA COLORFUL PREMIUM THEME
========================================================= */

:root {
    --neon-blue: #38BDF8;
    --neon-purple: #A855F7;
    --neon-pink: #EC4899;
    --neon-orange: #F97316;
    --neon-cyan: #06B6D4;
    --neon-green: #10B981;
    --aurora-gradient: linear-gradient( 135deg, #2563EB 0%, #7C3AED 25%, #EC4899 50%, #06B6D4 75%, #10B981 100% );
    --glass-bg: rgba(255,255,255,0.68);
    --glass-border: rgba(255,255,255,0.45);
}

/* =========================================================
   HERO BACKGROUND AURORA
========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(56,189,248,0.18), transparent 35%), radial-gradient(circle at top right, rgba(168,85,247,0.15), transparent 35%), radial-gradient(circle at bottom left, rgba(236,72,153,0.15), transparent 35%), radial-gradient(circle at bottom right, rgba(16,185,129,0.12), transparent 35%), linear-gradient( 135deg, #F8FAFC 0%, #EEF2FF 25%, #F5F3FF 50%, #ECFEFF 75%, #F0FDF4 100% );
}

    /* =========================================================
   COLORFUL GLOW BLOBS
========================================================= */

    .hero-section::before {
        background: radial-gradient(circle, rgba(56,189,248,0.25), transparent 70%);
    }

    .hero-section::after {
        background: radial-gradient(circle, rgba(236,72,153,0.22), transparent 70%);
    }

/* =========================================================
   COLORFUL HERO TITLE
========================================================= */

.hero-title-gradient {
    background: linear-gradient( 135deg, #2563EB 0%, #7C3AED 35%, #EC4899 70%, #06B6D4 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    background: linear-gradient( 135deg, rgba(37,99,235,0.12), rgba(168,85,247,0.12) );
    border: 1px solid rgba(37,99,235,0.15);
    color: var(--primary-dark);
    box-shadow: 0 10px 25px rgba(37,99,235,0.08);
}

/* =========================================================
   PREMIUM BUTTONS
========================================================= */

.btn-primary-premium {
    background: linear-gradient( 135deg, #2563EB 0%, #7C3AED 50%, #EC4899 100% );
    border: none;
    box-shadow: 0 15px 35px rgba(124,58,237,0.28);
}

    .btn-primary-premium:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 22px 45px rgba(124,58,237,0.38);
    }

.btn-whatsapp-premium {
    background: linear-gradient( 135deg, #10B981 0%, #06B6D4 100% );
    border: none;
    box-shadow: 0 15px 35px rgba(16,185,129,0.22);
}

    .btn-whatsapp-premium:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 22px 45px rgba(16,185,129,0.32);
    }

/* =========================================================
   PREMIUM SERVICE CARDS
========================================================= */

.service-card-premium {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

    .service-card-premium::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(37,99,235,0.04), rgba(168,85,247,0.04), rgba(236,72,153,0.04) );
        opacity: 0;
        transition: all 0.4s ease;
    }

    .service-card-premium:hover::before {
        opacity: 1;
    }

    .service-card-premium:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 30px 60px rgba(37,99,235,0.15);
    }

/* =========================================================
   COLORFUL ICONS
========================================================= */

.service-icon-premium {
    background: var(--aurora-gradient);
    color: white;
    box-shadow: 0 15px 30px rgba(124,58,237,0.25);
}

/* =========================================================
   PROCESS STEPS
========================================================= */

.process-step-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(14px);
    position: relative;
}

    .process-step-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(124,58,237,0.12);
    }

.step-number {
    background: var(--aurora-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* =========================================================
   TECH STACK
========================================================= */

.tech-stack-item {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
}

    .tech-stack-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(37,99,235,0.03), rgba(168,85,247,0.03), rgba(236,72,153,0.03) );
        opacity: 0;
        transition: all 0.4s ease;
    }

    .tech-stack-item:hover::before {
        opacity: 1;
    }

    .tech-stack-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(37,99,235,0.12);
    }

/* =========================================================
   TESTIMONIAL CARDS
========================================================= */

.testimonial-card {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.55);
    overflow: hidden;
    position: relative;
}

    .testimonial-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--aurora-gradient);
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(124,58,237,0.12);
    }

/* =========================================================
   CTA SECTION
========================================================= */

.cta-box-premium {
    background: linear-gradient( 135deg, #2563EB 0%, #7C3AED 30%, #EC4899 60%, #06B6D4 100% );
    position: relative;
    overflow: hidden;
}

    .cta-box-premium::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: radial-gradient( circle, rgba(255,255,255,0.16), transparent 70% );
        top: -120px;
        right: -120px;
        border-radius: 50%;
    }

/* =========================================================
   FLOATING TECH CARDS
========================================================= */

.floating-tech-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.6);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(124,58,237,0.12);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    background: linear-gradient( 135deg, rgba(255,255,255,0.92), rgba(248,250,252,0.92) );
    backdrop-filter: blur(12px);
}

/* =========================================================
   FOOTER
========================================================= */

.footer-premium {
    background: linear-gradient( 135deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100% );
    color: white;
}

/* =========================================================
   PREMIUM SECTION TITLES
========================================================= */

.section-title-modern {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient( 135deg, #0F172A 0%, #2563EB 40%, #7C3AED 100% );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title-modern {
        font-size: 1.9rem;
    }

    .service-card-premium,
    .testimonial-card,
    .tech-stack-item {
        padding: 1.5rem;
    }
}

.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(226,232,240,0.7);
    padding: 1rem 0;
    min-height: 90px;
    transition: all 0.3s ease;
}

.about-hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 80px;
    overflow: hidden;
    background: linear-gradient( 135deg, #F8FAFC 0%, #EEF2FF 35%, #F5F3FF 70%, #ECFEFF 100% );
}

.hero-image-wrapper {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.hero-main-image {
    width: 100%;
    max-width: 100%;
    border-radius: 32px;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {

    .custom-navbar {
        padding: 0.8rem 0;
    }

    .about-hero-section {
        padding-top: 120px;
    }

    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 20px;
        margin-top: 1rem;
        box-shadow: 0 20px 40px rgba(15,23,42,0.08);
    }
}

.custom-navbar.scrolled {
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}

/* =========================================================
   TECHNOLOGY SECTION SMALL ICONS
========================================================= */

.tech-logo-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.about-company-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}


.technologies-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.tech-card {
    background: #ffffff;
    border: 1px solid #E9D5FF;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

    .tech-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.tech-logo-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}



.testimonials-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #E9D5FF;
    border-radius: 24px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.testimonial-stars {
    color: #F59E0B;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .testimonial-user img {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial-user h5 {
        margin-bottom: 4px;
        font-size: 1rem;
        font-weight: 700;
    }

    .testimonial-user span {
        color: var(--gray-600);
        font-size: 0.9rem;
    }




.blog-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.blog-search-box {
    display: flex;
    gap: 12px;
}

.blog-search-input {
    height: 56px;
    border-radius: 14px;
    border: 1px solid #E9D5FF;
}

.blog-category-pill {
    padding: 10px 20px;
    border-radius: 999px;
    background: #F5F3FF;
    color: #6D28D9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .blog-category-pill:hover,
    .blog-category-pill.active {
        background: #6D28D9;
        color: #ffffff;
    }

.featured-blog-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.featured-blog-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
}

.featured-badge {
    background: #EDE9FE;
    color: #6D28D9;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-blog-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
}

.featured-blog-description {
    color: var(--gray-700);
    line-height: 1.8;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--gray-600);
}

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E9D5FF;
    transition: all 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.blog-card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-card-body {
    padding: 28px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .blog-tags span,
    .blog-tag-large {
        background: #F5F3FF;
        color: #6D28D9;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
    }

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-card p {
    color: var(--gray-700);
    line-height: 1.8;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-link {
    color: #6D28D9;
    text-decoration: none;
    font-weight: 700;
}

.social-share-icons {
    display: flex;
    gap: 14px;
}

    .social-share-icons a {
        color: #6D28D9;
        font-size: 1rem;
    }

@media (max-width: 768px) {

    .blog-search-box {
        flex-direction: column;
    }

    .featured-blog-card {
        padding: 24px;
    }

    .featured-blog-title {
        font-size: 1.5rem;
    }
}


.blog-details-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.blog-details-description {
    max-width: 850px;
    color: var(--gray-600);
    line-height: 1.9;
    font-size: 1.1rem;
}

.blog-details-main-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-xl);
}

.blog-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--gray-600);
}

.blog-content-wrapper {
    background: #ffffff;
    padding: 20px;
}

    .blog-content-wrapper h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .blog-content-wrapper p,
    .blog-content-wrapper li {
        line-height: 2;
        color: var(--gray-700);
        font-size: 1.02rem;
    }

    .blog-content-wrapper ul {
        padding-left: 20px;
    }

    .blog-content-wrapper blockquote {
        background: #F5F3FF;
        border-left: 5px solid #7C3AED;
        padding: 30px;
        border-radius: 18px;
        margin: 40px 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

.blog-highlight-box {
    background: linear-gradient(135deg, #F5F3FF, #FFFFFF);
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #E9D5FF;
}

.blog-tech-tag,
.blog-mini-tag {
    background: #EDE9FE;
    color: #6D28D9;
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-share-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 24px;
    border: 1px solid #E9D5FF;
}

.social-share-icons-large {
    display: flex;
    gap: 18px;
}

    .social-share-icons-large a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #F5F3FF;
        color: #6D28D9;
        text-decoration: none;
        font-size: 1.1rem;
    }

.related-blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E9D5FF;
    transition: all 0.3s ease;
}

    .related-blog-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-xl);
    }

.related-blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.related-blog-body {
    padding: 24px;
}

    .related-blog-body h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin: 18px 0;
    }

@media (max-width: 768px) {

    .blog-details-title {
        font-size: 2rem;
    }

    .blog-details-main-image {
        height: 320px;
    }

    .social-share-box {
        flex-direction: column;
        gap: 20px;
    }
}


.contact-modern-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.contact-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.blur-one {
    width: 320px;
    height: 320px;
    background: #C4B5FD;
    top: -80px;
    left: -100px;
}

.blur-two {
    width: 280px;
    height: 280px;
    background: #DDD6FE;
    right: -80px;
    bottom: -50px;
}

.contact-modern-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
}

.contact-modern-description {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--gray-600);
}

.contact-feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 22px;
    border-radius: 22px;
}

.contact-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #F5F3FF;
    color: #6D28D9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-feature-card h5 {
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-feature-card p {
    margin-bottom: 0;
    color: var(--gray-600);
}

.contact-premium-form {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 32px;
    padding: 42px;
    box-shadow: 0 25px 80px rgba(109,40,217,0.08);
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 900;
}

.contact-form-header p {
    color: var(--gray-600);
}

.premium-input {
    min-height: 58px;
    border-radius: 16px;
    border: 1px solid #E9D5FF;
    background: rgba(255,255,255,0.9);
    padding: 14px 18px;
}

    .premium-input:focus {
        border-color: #8B5CF6;
        box-shadow: 0 0 0 0.2rem rgba(139,92,246,0.15);
    }

textarea.premium-input {
    min-height: 140px;
}

.contact-submit-premium {
    width: 100%;
    height: 60px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
}

.contact-quick-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(109,40,217,0.06);
}

    .quick-item i {
        color: #6D28D9;
        font-size: 1.1rem;
    }

@media (max-width: 768px) {

    .contact-modern-title {
        font-size: 2.4rem;
    }

    .contact-premium-form {
        padding: 24px;
    }
}
/* FOOTER LINKS */

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links-list li {
        margin-bottom: 14px;
    }

.footer-link {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.7;
    transition: all 0.25s ease;
    display: inline-block;
}

    .footer-link:hover {
        color: #ffffff;
        transform: translateX(4px);
    }

/* FOOTER HEADINGS */

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

/* FOOTER DESCRIPTION */

.footer-description {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.78);
}

/* COPYRIGHT */

.footer-bottom-left,
.footer-bottom-right {
    font-size: 0.98rem;
    font-weight: 500;
}

/* TRUST SECTION */

.trust-dark-section {
    background: linear-gradient( 135deg, #0f172a 0%, #111827 100%);
    border-radius: 24px;
    padding: 70px 30px;
    overflow: hidden;
}

    .trust-dark-section h3 {
        color: #ffffff;
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 14px;
        line-height: 1;
    }

    .trust-dark-section p {
        color: rgba(255,255,255,0.82);
        font-size: 1.05rem;
        font-weight: 500;
        margin: 0;
    }

/* MOBILE */

@@media (max-width: 768px) {

    .trust-dark-section {
        padding: 50px 20px;
    }

        .trust-dark-section h3 {
            font-size: 2.2rem;
        }

        .trust-dark-section p {
            font-size: 0.95rem;
        }
}

/* PREMIUM LIGHT CTA BUTTON */

.btn-light-premium {
    background: #ffffff;
    color: #0f172a;
    border: none;
    border-radius: 50px;
    padding: 15px 34px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255,255,255,0.18);
}

    .btn-light-premium:hover {
        background: #f8fafc;
        color: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 16px 40px rgba(255,255,255,0.22);
    }

    .btn-light-premium i {
        font-size: 1.05rem;
    }

/* =========================================================
   PREMIUM CTA BUTTONS
========================================================= */

.premium-cta-buttons {
    position: relative;
    z-index: 2;
}

/* CONTACT BUTTON */

.premium-contact-btn {
    background: linear-gradient( 135deg, #ffffff 0%, #f8fafc 100%);
    color: #0f172a;
    border: none;
    border-radius: 60px;
    padding: 16px 34px;
    min-width: 260px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(255,255,255,0.18);
    transition: all 0.35s ease;
}

    .premium-contact-btn:hover {
        transform: translateY(-4px);
        color: #2563eb;
        box-shadow: 0 22px 50px rgba(255,255,255,0.24);
    }

    .premium-contact-btn .btn-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(37,99,235,0.12);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .premium-contact-btn .btn-icon i {
            font-size: 1.15rem;
        }

/* WHATSAPP BUTTON */

.premium-whatsapp-btn {
    background: linear-gradient( 135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border: none;
    border-radius: 60px;
    padding: 16px 34px;
    min-width: 260px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(34,197,94,0.28);
    transition: all 0.35s ease;
}

    .premium-whatsapp-btn:hover {
        transform: translateY(-4px);
        color: #ffffff;
        box-shadow: 0 22px 55px rgba(34,197,94,0.36);
    }

    .premium-whatsapp-btn .btn-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,0.18);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .premium-whatsapp-btn .btn-icon i {
            font-size: 1.2rem;
        }

/* TEXT */

.btn-text {
    letter-spacing: 0.2px;
}

/* MOBILE */

@media (max-width: 768px) {

    .premium-contact-btn,
    .premium-whatsapp-btn {
        width: 100%;
        min-width: 100%;
        padding: 15px 24px;
        font-size: 0.96rem;
    }

    .premium-cta-buttons {
        gap: 14px;
    }
}

.testimonial-card {
    transition: all 0.35s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 22px 60px rgba(15,23,42,0.12);
    }