/* ============================================
   PREMIUM PROFESSIONAL CSS
   Award-Winning One-Page Design - Readable Version
   ============================================ */

:root {
    /* Color Palette - Professional Blue & White */
    --primary-blue: #0052FF;
    --secondary-blue: #4D7FFF;
    --light-blue: #E6EFFF;
    --dark-blue: #001A4D;
    --accent-blue: #00A3FF;
    --white: #FFFFFF;
    --off-white: #F8FAFF;
    --text-dark: #1A1A2E;
    --text-light: #6B7280;
    --text-gray: #9CA3AF;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    --error-red: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0052FF 0%, #00A3FF 100%);
    --gradient-secondary: linear-gradient(135deg, #4D7FFF 0%, #0052FF 100%);
    --gradient-light: linear-gradient(135deg, #E6EFFF 0%, #FFFFFF 100%);
    --gradient-radial: radial-gradient(circle at top right, #0052FF, #001A4D);
    --gradient-glow: linear-gradient(135deg, rgba(0, 82, 255, 0.1) 0%, rgba(0, 163, 255, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 82, 255, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 82, 255, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 82, 255, 0.2);
    --shadow-xl: 0 20px 60px rgba(0, 82, 255, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    position: relative;
    overflow: hidden;
}

/* ============================================
   ANIMATED BACKGROUND SHAPES
   ============================================ */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-blue);
    top: 50%;
    left: 20%;
    animation-delay: 10s;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
    }
    75% {
        transform: translate(30px, 50px) rotate(270deg);
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: var(--transition-fast);
}

.top-bar a:hover {
    opacity: 1;
    color: var(--accent-blue);
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-highlight {
    background: var(--gradient-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 163, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 163, 255, 0);
    }
}

.social-links-top {
    display: flex;
    gap: 10px;
}

.social-links-top a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links-top a:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 82, 255, 0.1);
    transition: var(--transition-smooth);
}

.header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.logo-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.btn-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-nav::before {
    display: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   BUTTONS - UNIVERSAL
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-glass-white {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-glass-white:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION - SHORTER VERSION
   ============================================ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-radial);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px; /* Reduced from 180px 0 100px */
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.6;
    animation: particles 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 80%; top: 30%; animation-delay: 3s; }
.particle:nth-child(3) { left: 50%; top: 50%; animation-delay: 6s; }
.particle:nth-child(4) { left: 20%; top: 70%; animation-delay: 9s; }
.particle:nth-child(5) { left: 70%; top: 80%; animation-delay: 12s; }

@keyframes particles {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.6;
    }
    50% {
        transform: translate(100px, -100px);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-title {
    font-size: 3.5rem; /* Reduced from 4rem */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.gradient-text {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem; /* Reduced from 1.3rem */
    line-height: 1.8;
    margin-bottom: 35px; /* Reduced from 40px */
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px; /* Reduced from 60px */
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px; /* Reduced from 40px */
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust-logos {
    text-align: center;
    margin-top: 30px; /* Reduced from 40px */
}

.trust-logos p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logos span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* HIDE SCROLL INDICATOR */
.scroll-indicator {
    display: none; /* Completely hidden */
}


/* SIMPLIFIED GRADIENT TEXT - FULLY READABLE */
.gradient-text {
    color: var(--white);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.8rem;
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust-logos {
    text-align: center;
    margin-top: 40px;
}

.trust-logos p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logos span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    display: none; /* Completely hidden */
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-indicator p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ============================================
   QUICK FEATURES BAR
   ============================================ */
.quick-features {
    background: var(--white);
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.quick-feature {
    text-align: center;
    padding: 15px;
    transition: var(--transition-fast);
}

.quick-feature:hover {
    transform: translateY(-5px);
}

.feature-icon-quick {
    width: 60px;
    height: 60px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.quick-feature:hover .feature-icon-quick {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.feature-icon-quick i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.quick-feature:hover .feature-icon-quick i {
    color: var(--white);
}

.quick-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.quick-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   SECTION HEADERS - SIMPLIFIED & READABLE
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

/* READABLE GRADIENT TEXT FOR SECTIONS */
.section-header h2 .gradient-text {
    color: var(--primary-blue);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ALL SERVICES SECTION
   ============================================ */
.all-services {
    padding: 120px 0;
    background: var(--off-white);
}

.service-categories {
    margin-top: 40px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-tab:hover,
.category-tab.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-tab i {
    font-size: 1.1rem;
}

.services-mega-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.service-mega-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.service-mega-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-mega-card.popular {
    border-color: var(--primary-blue);
    background: var(--gradient-glow);
}

.popular-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.popular-ribbon::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-top: 10px solid var(--dark-blue);
}

.service-mega-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.service-mega-card:hover .service-mega-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-mega-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-mega-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.service-mega-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-mega-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-mega-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.service-mega-list i {
    color: var(--success-green);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service-price-tag {
    background: var(--light-blue);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.service-price-tag .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
}

.service-price-tag .price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

.btn-service {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 120px 0;
    background: var(--white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    min-width: 220px;
    max-width: 260px;
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.step-card:hover .step-icon i {
    color: var(--white);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 120px 0;
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--primary-blue);
    background: var(--gradient-glow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge-pricing {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-blue);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.pricing-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.pricing-features i {
    color: var(--success-green);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
    padding: 16px;
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-pricing:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-pricing.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
}

.btn-pricing.featured:hover {
    background: var(--dark-blue);
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-note i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.pricing-note a {
    color: var(--primary-blue);
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-us {
    padding: 120px 0;
    background: var(--white);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-feature-card {
    background: var(--off-white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.why-feature-card:hover::before {
    opacity: 1;
}

.why-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-feature-card:hover * {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.why-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.why-feature-card:hover .why-icon {
    background: var(--white);
    transform: rotateY(360deg);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition-fast);
}

.why-feature-card:hover .why-icon i {
    color: var(--primary-blue);
}

.why-feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

.why-feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 120px 0;
    background: var(--off-white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card-new {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-blue);
}

.author-avatar-new {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar-new i {
    font-size: 1.8rem;
    color: var(--white);
}

.author-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.author-details p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.google-rating {
    text-align: center;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.rating-badge i {
    font-size: 3rem;
    color: #4285F4;
}

.rating-details .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-details .stars i {
    color: #FFD700;
    font-size: 1.3rem;
}

.rating-details p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section-new {
    padding: 120px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--off-white);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--light-blue);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    flex: 1;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-blue);
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 25px 30px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section-new {
    padding: 120px 0;
    background: var(--off-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.section-header-left .section-badge {
    margin-bottom: 15px;
}

.section-header-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.section-header-left h2 .gradient-text {
    color: var(--primary-blue);
}

.section-header-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.method-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.method-details a {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 5px;
}

.method-details a:hover {
    text-decoration: underline;
}

.method-details p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.quick-links-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.quick-btns-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn-new {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--white);
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.quick-btn-new:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-new label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-new label i {
    color: var(--primary-blue);
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 14px 18px;
    border: 2px solid var(--light-blue);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.1);
}

.btn-submit-form {
    padding: 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-submit-form:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-new {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 82, 255, 0.1) 0%, transparent 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-col-main {
    position: relative;
    z-index: 1;
}

.footer-logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-trust {
    display: flex;
    gap: 20px;
}

.trust-item-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-item-footer i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-col ul li i {
    font-size: 0.7rem;
}

.contact-footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-footer-list i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--accent-blue);
}

.contact-footer-list div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-footer-list strong {
    color: var(--white);
    font-size: 0.95rem;
}

.contact-footer-list span,
.contact-footer-list a {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.contact-footer-list a:hover {
    color: var(--accent-blue);
}

.social-links-footer {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links-footer a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links-footer a:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

.footer-bottom-new i {
    color: #FF4D6D;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp-new:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-new i {
    font-size: 2.2rem;
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: var(--white);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-fast);
    pointer-events: none;
}

.floating-whatsapp-new:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-new {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.scroll-top-new.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-mega-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
        gap: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .services-mega-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-whatsapp-new {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp-new i {
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .scroll-top-new {
        bottom: 90px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .features-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}



/* ============================================
   FOOTER BOTTOM - WITH CREDIT
   ============================================ */
.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: var(--text-gray);
    margin: 0;
}

.footer-bottom-content i.fa-heart {
    color: #FF4D6D;
    animation: heartbeat 1.5s infinite;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.credit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition-fast);
    margin-left: 5px;
}

.credit-link:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 82, 255, 0.3);
}

.credit-brand {
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credit-link:hover .credit-brand {
    -webkit-text-fill-color: var(--white);
    color: var(--white);
}

.credit-link i {
    font-size: 0.85rem;
    color: var(--accent-blue);
    transition: var(--transition-fast);
}

.credit-link:hover i {
    color: var(--white);
    transform: translateX(3px);
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsive Footer Bottom */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credit {
        flex-direction: column;
        gap: 10px;
    }
}
