/* ============================================
   INBIDE LOGO - CORRECT COLORS FROM BRAND
   ============================================ */

/* Logo container */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
}

/* Logo bars container */
.logo-bars {
    display: flex !important;
    align-items: flex-end !important;
    gap: 5px !important;
    height: 32px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Base bar styles with rounded tops */
.bar {
    display: block !important;
    width: 10px !important;
    border-radius: 5px 5px 0 0 !important;
    transform-origin: bottom !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: raiseBars 1.5s ease-in-out infinite !important;
}

/* Bar 1 - ORANGE */
.bar-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%) !important;
    height: 16px !important;
    animation-delay: 0s !important;
}

/* Bar 2 - YELLOW */
.bar-2 {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%) !important;
    height: 20px !important;
    animation-delay: 0.2s !important;
}

/* Bar 3 - GREEN */
.bar-3 {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%) !important;
    height: 24px !important;
    animation-delay: 0.4s !important;
}

/* Bar 4 - CYAN/LIGHT BLUE */
.bar-4 {
    background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%) !important;
    height: 28px !important;
    animation-delay: 0.6s !important;
}

/* Rising bars animation */
@keyframes raiseBars {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.3);
    }
}

/* Logo text group */
.logo-text-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Logo main text - Dark Blue like in brand logo */
.logo-text {
    display: block !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #1A4D7C !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Logo tagline - Dark Blue */
.logo-tagline {
    display: block !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #1A4D7C !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo {
        gap: 12px !important;
    }
    
    .logo-bars {
        height: 28px !important;
        gap: 4px !important;
    }
    
    .bar {
        width: 8px !important;
    }
    
    .bar-1 { height: 14px !important; }
    .bar-2 { height: 17px !important; }
    .bar-3 { height: 20px !important; }
    .bar-4 { height: 23px !important; }
    
    .logo-text {
        font-size: 15px !important;
    }
    
    .logo-tagline {
        font-size: 8px !important;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo {
        gap: 14px !important;
    }
    
    .bar {
        width: 9px !important;
    }
    
    .logo-text {
        font-size: 16px !important;
    }
    
    .logo-tagline {
        font-size: 9px !important;
    }
}

/* ============================================
   FOOTER LOGO - ANIMATED
   ============================================ */

.footer-logo {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    text-decoration: none !important;
}

.footer-logo .logo-bars {
    display: flex !important;
    align-items: flex-end !important;
    gap: 5px !important;
    height: 32px !important;
}

.footer-logo .bar {
    display: block !important;
    width: 10px !important;
    border-radius: 5px 5px 0 0 !important;
    transform-origin: bottom !important;
    animation: raiseBars 1.5s ease-in-out infinite !important;
}

.footer-logo .bar-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%) !important;
    height: 16px !important;
    animation-delay: 0s !important;
}

.footer-logo .bar-2 {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%) !important;
    height: 20px !important;
    animation-delay: 0.2s !important;
}

.footer-logo .bar-3 {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%) !important;
    height: 24px !important;
    animation-delay: 0.4s !important;
}

.footer-logo .bar-4 {
    background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%) !important;
    height: 28px !important;
    animation-delay: 0.6s !important;
}

.footer-logo .logo-text-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.footer-logo .logo-text {
    display: block !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
}

.footer-logo .logo-tagline {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    line-height: 1.2 !important;
}

/* Footer logo mobile */
@media (max-width: 768px) {
    .footer-logo {
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    
    .footer-logo .logo-bars {
        height: 28px !important;
        gap: 4px !important;
    }
    
    .footer-logo .bar {
        width: 8px !important;
    }
    
    .footer-logo .bar-1 { height: 14px !important; }
    .footer-logo .bar-2 { height: 17px !important; }
    .footer-logo .bar-3 { height: 20px !important; }
    .footer-logo .bar-4 { height: 23px !important; }
    
    .footer-logo .logo-text {
        font-size: 16px !important;
    }
    
    .footer-logo .logo-tagline {
        font-size: 9px !important;
    }
}
/* ============================================
   ANIMATED RISING BARS LOGO - RESTORED
   ============================================ */

/* Logo container */
.logo {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    text-decoration: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
}

/* Logo bars container */
.logo-bars {
    display: flex !important;
    align-items: flex-end !important;
    gap: 4px !important;
    height: 32px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Animated bars - RESTORE ANIMATION */
.bar {
    display: block !important;
    width: 8px !important;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%) !important;
    border-radius: 2px !important;
    transform-origin: bottom !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: raiseBars 1.5s ease-in-out infinite !important;
}

.bar-1 {
    height: 16px !important;
    animation-delay: 0s !important;
}

.bar-2 {
    height: 20px !important;
    animation-delay: 0.2s !important;
}

.bar-3 {
    height: 24px !important;
    animation-delay: 0.4s !important;
}

.bar-4 {
    height: 28px !important;
    animation-delay: 0.6s !important;
}

/* Rising bars animation - RESTORED */
@keyframes raiseBars {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(1.3);
    }
}

/* Logo text group */
.logo-text-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Logo main text */
.logo-text {
    display: block !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #0F172A !important;
    letter-spacing: 0.5px !important;
    line-height: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Logo tagline */
.logo-tagline {
    display: block !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    color: #64748B !important;
    letter-spacing: 0.3px !important;
    line-height: 1.2 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .logo {
        gap: 12px !important;
    }
    
    .logo-bars {
        height: 28px !important;
    }
    
    .bar {
        width: 6px !important;
    }
    
    .bar-1 { height: 14px !important; }
    .bar-2 { height: 17px !important; }
    .bar-3 { height: 20px !important; }
    .bar-4 { height: 23px !important; }
    
    .logo-text {
        font-size: 15px !important;
    }
    
    .logo-tagline {
        font-size: 8px !important;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo {
        gap: 14px !important;
    }
    
    .bar {
        width: 7px !important;
    }
    
    .logo-text {
        font-size: 16px !important;
    }
    
    .logo-tagline {
        font-size: 9px !important;
    }
}

/* Ensure nav container shows logo */
.nav-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 40px !important;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px !important;
    }
}
    nav.main-nav .nav-container .logo,
    .main-nav .nav-container .logo,
    .nav-container .logo,
    .logo {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        z-index: 1001 !important;
    }
    
    /* Force logo bars container visible */
    nav.main-nav .logo-bars,
    .main-nav .logo-bars,
    .logo .logo-bars,
    .logo-bars {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        align-items: flex-end !important;
        gap: 4px !important;
        height: 30px !important;
    }
    
    /* Force each bar visible - NO ANIMATION ON MOBILE */
    nav.main-nav .bar,
    .main-nav .bar,
    .logo .bar,
    .bar {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
        animation: none !important;
        width: 6px !important;
        border-radius: 2px !important;
    }
    
    /* Individual bar colors and heights */
    .bar-1,
    .logo .bar-1 {
        background: linear-gradient(to top, #2563EB, #3B82F6) !important;
        height: 14px !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .bar-2,
    .logo .bar-2 {
        background: linear-gradient(to top, #2563EB, #3B82F6) !important;
        height: 18px !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .bar-3,
    .logo .bar-3 {
        background: linear-gradient(to top, #2563EB, #3B82F6) !important;
        height: 22px !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .bar-4,
    .logo .bar-4 {
        background: linear-gradient(to top, #2563EB, #3B82F6) !important;
        height: 26px !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    /* Force logo text group visible */
    nav.main-nav .logo-text-group,
    .main-nav .logo-text-group,
    .logo .logo-text-group,
    .logo-text-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 2px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Force logo text visible */
    nav.main-nav .logo-text,
    .main-nav .logo-text,
    .logo .logo-text,
    .logo-text-group .logo-text,
    .logo-text {
        display: block !important;
        font-size: 15px !important;
        font-weight: 900 !important;
        color: #0F172A !important;
        line-height: 1 !important;
        letter-spacing: 0.3px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Force logo tagline visible */
    nav.main-nav .logo-tagline,
    .main-nav .logo-tagline,
    .logo .logo-tagline,
    .logo-text-group .logo-tagline,
    .logo-tagline {
        display: block !important;
        font-size: 8px !important;
        font-weight: 600 !important;
        color: #64748B !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        line-height: 1.2 !important;
        margin-top: 2px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Nav container adjustments */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 16px !important;
        height: 80px !important;
    }
    
    /* Remove any transforms or animations that might hide logo */
    .logo,
    .logo *,
    .logo-bars,
    .logo-bars *,
    .bar,
    .logo-text-group,
    .logo-text-group * {
        transform: none !important;
        animation: none !important;
    }
}

/* Force logo visible on all screen sizes as backup */
.logo,
.logo-bars,
.logo-text-group,
.logo-text,
.logo-tagline,
.bar {
    opacity: 1;
    visibility: visible;
}
/* ============================================
   CREATIVE FLOATING TRUST CARDS
   ============================================ */

.trust-section-creative {
    padding: 100px 40px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.trust-section-creative::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite;
}

.trust-cards-floating {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.floating-trust-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.floating-trust-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.floating-trust-card:hover::before {
    left: 100%;
}

.floating-trust-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
    border-color: #2563EB;
}

/* Floating animations */
.card-1 {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 0s;
}

.card-2 {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.card-3 {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 3s;
}

.card-4 {
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: 4.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Decorative circle */
.card-decorative-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(37, 99, 235, 0.1) 100%);
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: 0;
}

/* Icon circle */
.card-icon-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.floating-trust-card:hover .card-icon-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

/* Text styling */
.floating-trust-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.floating-trust-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Shine effect */
.card-shine {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2563EB, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.floating-trust-card:hover .card-shine {
    opacity: 1;
}

/* ============================================
   CREATIVE HERO STAT CARDS
   ============================================ */

.hero-stats-grid-creative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    animation: slideInRight 0.8s ease-out;
}

.creative-stat-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 2px solid #E2E8F0;
}

.creative-stat-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-color: #2563EB;
}

/* Background gradients */
.stat-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    opacity: 0.1;
    z-index: 0;
}

.gradient-1 {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.gradient-2 {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.gradient-3 {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
}

.gradient-4 {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

/* Icon */
.stat-icon-large {
    font-size: 56px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
    z-index: 0;
}

/* Content */
.stat-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

.stat-number-big {
    font-size: 48px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label-bold {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 4px;
}

.stat-sublabel-text {
    font-size: 13px;
    color: #64748B;
    font-weight: 600;
}

/* Decorative dots */
.stat-decorative-dots {
    position: absolute;
    bottom: 16px;
    left: 24px;
    display: flex;
    gap: 6px;
    z-index: 1;
}

.stat-decorative-dots span {
    width: 8px;
    height: 8px;
    background: #2563EB;
    border-radius: 50%;
    opacity: 0.3;
}

/* Card animations */
.card-animated-1 {
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: 0s;
}

.card-animated-2 {
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.card-animated-3 {
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: 2s;
}

.card-animated-4 {
    animation: cardFloat 4s ease-in-out infinite;
    animation-delay: 3s;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(2deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-cards-floating {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-stats-grid-creative {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-cards-floating {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-stats-grid-creative {
        grid-template-columns: 1fr;
    }
    
    .floating-trust-card {
        padding: 32px 24px;
    }
    
    .card-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}
/* ===================================
   INBIDE DIGITAL - MAIN STYLESHEET
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Original Color Scheme - Professional Blue */
    --primary-blue: #2563EB;
    --primary-blue-dark: #1D4ED8;
    --primary-blue-light: #3B82F6;
    --secondary-blue: #1E40AF;
    --accent-blue: #60A5FA;
    
    /* Neutral Colors */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --gray: #475569;
    --gray-light: #94A3B8;
    --light: #F1F5F9;
    --white: #FFFFFF;
    
    /* Functional Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Typography */
    --font-display: 'Zodiak', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* Body Padding for Fixed Bars */
body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    font-size: 16px;
    background: var(--white);
    padding-top: 120px;
}


/* Custom Scrollbar - Visible and Styled */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-left: 1px solid #e2e8f0;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #2563EB, #8B5CF6);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1D4ED8, #7C3AED);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #2563EB #f1f5f9;
}


/* Scrolling Announcement Bar - Fixed Position */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2563EB 0%, #8B5CF6 100%);
    padding: 10px 0;
    overflow: hidden;
    z-index: 1001;
}

.announcement-track {
    display: flex;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.announcement-icon {
    font-size: 16px;
}

/* Animated Logo Bars */
.logo {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.logo-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 36px;
}

.bar {
    width: 10px;
    border-radius: 4px;
    animation: raise 0.6s ease-out forwards;
    transform-origin: bottom;
}

.bar-1 {
    background: linear-gradient(to top, #FF6B35, #FF8C42);
    height: 18px;
    animation-delay: 0s;
}

.bar-2 {
    background: linear-gradient(to top, #F7B731, #FED766);
    height: 24px;
    animation-delay: 0.1s;
}

.bar-3 {
    background: linear-gradient(to top, #5FD068, #7AE582);
    height: 28px;
    animation-delay: 0.2s;
}

.bar-4 {
    background: linear-gradient(to top, #2BBCF5, #56CCF2);
    height: 36px;
    animation-delay: 0.3s;
}

@keyframes raise {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-group .logo-text {
    font-size: 20px;
    font-weight: 900;
    color: #0F172A;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text-group .logo-tagline {
    font-size: 10px;
    font-weight: 600;
    color: #64748B;
    letter-spacing: 1px;
    text-transform: uppercase;
}



.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    line-height: 1.7;
    color: var(--gray);
}

.large-text {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* Navigation - Below Announcement Bar */
.main-nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 65px;
    width: auto;
    display: block;
}

.logo-text-wrapper {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: all var(--transition-base);
}

/* Hero Section */


.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 600px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
}

.hero-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.check {
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.badge-1 {
    top: 20px;
    right: -20px;
}

.badge-2 {
    bottom: 40px;
    right: 30px;
    animation-delay: 1s;
}

.badge-emoji {
    font-size: 1.2rem;
}

/* Trust Section */
.trust-section {
    padding: 60px 24px;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.trust-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.trust-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.trust-content p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}


/* Creative 3D Hero Section */
.hero-home, .about-hero, .services-hero, .portfolio-hero, .blog-hero { padding-top: 180px !important; } .hero-home {
    position: relative;
    padding: 140px 24px 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    overflow: hidden;
    min-height: 600px;
}

.hero-home::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -250px;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    margin-bottom: 28px;
    color: white;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    color: white;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.highlight {
    background: linear-gradient(120deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* 3D Visual Cards */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform-style: preserve-3d;
    animation: float3D 6s ease-in-out infinite;
}

.visual-card:nth-child(1) {
    top: 20px;
    left: 20px;
    width: 240px;
    animation-delay: 0s;
}

.visual-card:nth-child(2) {
    top: 180px;
    right: 40px;
    width: 260px;
    animation-delay: 2s;
}

.visual-card:nth-child(3) {
    bottom: 40px;
    left: 80px;
    width: 220px;
    animation-delay: 4s;
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0) translateZ(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) translateZ(30px) rotateY(5deg);
    }
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.card-value {
    font-size: 36px;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


/* Services Section */
.services-home {
    padding: var(--section-padding) 24px;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 48px 36px;
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 28px;
    display: block;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--dark);
}

.service-card > p {
    margin-bottom: 28px;
    color: var(--gray);
    line-height: 1.7;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 10px 0;
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    font-size: 1rem;
    margin-top: auto;
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-blue-dark);
}

/* Why Choose Section */
.why-choose {
    padding: var(--section-padding) 24px;
    background: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.why-text .section-label {
    margin-bottom: 16px;
}

.why-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.why-text .large-text {
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.why-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray);
}

.stats-showcase {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: var(--shadow-xl);
}

.showcase-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.showcase-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.showcase-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 8px;
}

.showcase-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Portfolio Section */
.portfolio-showcase {
    padding: var(--section-padding) 24px;
    background: var(--light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    opacity: 0.3;
}

.portfolio-content {
    padding: 32px;
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.portfolio-content p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 12px;
    background: var(--light);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials-home {
    padding: var(--section-padding) 24px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--light);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding) 24px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: 24px;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--primary-blue);
}

.cta-actions .btn-primary:hover {
    background: var(--light);
}

.cta-actions .btn-secondary {
    border-color: white;
    color: white;
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Footer */
.main-footer {
    padding: 80px 24px 32px;
    background: var(--dark);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 48px;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
}

.footer-brand .footer-logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand .logo-tagline {
    color: var(--gray-light);
}

.footer-description {
    color: var(--gray-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--dark-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

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

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Contact Icons Bar - Visible throughout page */
.contact-bar {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.contact-icon-btn {
    width: 56px;
    height: 56px;
    background: white;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    text-decoration: none;
    color: var(--primary-blue);
}

.contact-icon-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.contact-icon-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-icon-btn .icon-label {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.contact-icon-btn:hover .icon-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-bar {
        left: 20px;
        bottom: 100px;
    }
    
    .contact-icon-btn {
        width: 48px;
        height: 48px;
    }
    
    .contact-icon-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-icon-btn .icon-label {
        display: none;
    }
}

/* Portfolio Icons */
.portfolio-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.5rem;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.1);
}

/* Unique portfolio item backgrounds */
.portfolio-item:nth-child(1) .portfolio-icon {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
}

.portfolio-item:nth-child(2) .portfolio-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.portfolio-item:nth-child(3) .portfolio-icon {
    background: linear-gradient(135deg, #FFA07A 0%, #FF8C69 100%);
}

.portfolio-item:nth-child(4) .portfolio-icon {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
}

.portfolio-item:nth-child(5) .portfolio-icon {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.portfolio-item:nth-child(6) .portfolio-icon {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Creative Service Cards - Complete Redesign */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border-radius: 24px;
    padding: 48px 32px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
    border-color: #667eea;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.service-card:hover .service-icon {
    transform: scale(1.2) translateY(-10px);
    filter: drop-shadow(0 8px 16px rgba(255,255,255,0.5));
}

.service-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0F172A;
    transition: color 0.4s ease;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.service-card:hover p {
    color: rgba(255,255,255,0.9);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563EB;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    color: white;
    gap: 12px;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

/* Unique Portfolio Images with SVG Illustrations */
.portfolio-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.portfolio-svg-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Each portfolio card gets unique gradient background */
.portfolio-card:nth-child(1) .portfolio-image {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
}

.portfolio-card:nth-child(2) .portfolio-image {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
}

.portfolio-card:nth-child(3) .portfolio-image {
    background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
}

.portfolio-card:nth-child(4) .portfolio-image {
    background: linear-gradient(135deg, #FFA07A 0%, #FF8C69 100%);
}

.portfolio-card:nth-child(5) .portfolio-image {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.portfolio-card:nth-child(6) .portfolio-image {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.portfolio-illustration-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 120px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-illustration-icon {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
}

/* Decorative elements for portfolio */
.portfolio-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    filter: blur(40px);
}

.portfolio-decoration-1 {
    top: 20%;
    left: 10%;
}

.portfolio-decoration-2 {
    bottom: 20%;
    right: 10%;
}

/* Unique Portfolio SVG Illustrations */
.portfolio-unique-svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-unique-svg {
    transform: scale(1.05);
}

.portfolio-unique-svg text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 2px;
}

.portfolio-unique-svg rect,
.portfolio-unique-svg circle,
.portfolio-unique-svg path,
.portfolio-unique-svg polyline,
.portfolio-unique-svg line {
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-unique-svg rect {
    opacity: 0.9;
}

/* Professional service cards styling */
.service-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 22px;
    line-height: 1.3;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   COMPLETELY REDESIGNED HERO SECTION
   ============================================ */

.hero-home-new {
    position: relative;
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, #0F172A 0%, #1e3a8a 50%, #2563EB 100%);
    overflow: hidden;
    min-height: 700px;
}

.hero-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-content-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-label-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.badge-icon-svg {
    width: 20px;
    height: 20px;
    color: #60A5FA;
}

.hero-main-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -1px;
}

.title-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-action-row {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: white;
    color: #0F172A;
}

.btn-hero-primary:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary svg,
.btn-hero-secondary svg {
    width: 20px;
    height: 20px;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-trust-badges {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: #60A5FA;
}

/* Right Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card-1 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.stat-card-2 {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-card-3 {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat-card-4 {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

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

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.stat-sublabel {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* Background Circles */
.hero-bg-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
    animation: float 10s ease-in-out infinite 2s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite 4s;
}

/* Portfolio Hero SVG Styling */
.portfolio-hero-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.portfolio-hero-svg text {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Team Skills Lists in About Page */
.team-skills {
    list-style: none;
    margin-top: 16px;
    padding: 0;
}

.team-skills li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray);
}

.team-skills li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563EB;
    font-weight: 700;
    font-size: 18px;
}

.value-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-main-title {
        font-size: 48px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 36px;
    }
    
    .hero-action-row {
        flex-direction: column;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Adjust Hero Sections for Fixed Bars */
.hero-home-new,
.hero-home,
.about-hero,
.services-hero,
.portfolio-hero,
.blog-hero {
    padding-top: 80px !important;
}

/* ============================================
   FLOATING ICONS SECTION
   ============================================ */

.floating-icons-section {
    padding: 40px 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
    overflow: hidden;
}

.floating-icon-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.floating-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFFFFF 0%, #F1F5F9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.floating-icon-item:hover .icon-circle {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

.floating-icon-item span {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
}

/* ============================================
   PORTFOLIO SECTION IMPROVEMENTS
   ============================================ */

.portfolio-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.portfolio-section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0F172A 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* Fix stats section emoticon alignment */
.stat-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* ============================================
   MOBILE/TABLET RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .floating-icon-container {
        gap: 32px;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .portfolio-section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .floating-icons-section {
        padding: 32px 16px;
    }
    
    .floating-icon-container {
        gap: 24px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .floating-icon-item span {
        font-size: 12px;
    }
    
    .portfolio-section-header h2 {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SERVICES PAGE - COMPLETE REDESIGN
   ============================================ */

.services-hero-new {
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, #0F172A 0%, #1e3a8a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-new::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.services-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    margin-bottom: 32px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.services-hero-new h1 {
    font-size: 56px;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-lead {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-quick-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-num {
    font-size: 32px;
    font-weight: 900;
    color: #60A5FA;
}

.stat-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Services Grid */
.services-grid-section {
    padding: 100px 40px;
    background: #F8FAFC;
}

.services-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card-modern {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #60A5FA);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.service-icon-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-icon-large {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
}

.service-tag {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
}

.service-card-modern h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 28px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    font-size: 14px;
    color: #475569;
    font-weight: 600;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 2px solid #F1F5F9;
}

.price-from {
    font-size: 13px;
    color: #64748B;
    font-weight: 600;
}

.price-amount {
    font-size: 36px;
    font-weight: 900;
    color: #2563EB;
}

.btn-service-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%);
    color: white;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Why Choose Section */
.why-choose-services {
    padding: 100px 40px;
    background: white;
}

.why-choose-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-content h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 64px;
    color: #0F172A;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.why-item h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0F172A;
}

.why-item p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Responsive Services Page */
@media (max-width: 1024px) {
    .services-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-hero-new h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .services-grid-container {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .services-hero-new {
        padding: 100px 24px 60px;
    }
    
    .services-hero-new h1 {
        font-size: 32px;
    }
    
    .services-lead {
        font-size: 16px;
    }
    
    .services-quick-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content h2 {
        font-size: 32px;
    }
}

/* Why Choose / Stats Section - Fixed Emoticon Alignment */
.why-choose {
    padding: 100px 40px;
    background: white;
}

.why-choose .section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 64px;
    color: #0F172A;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: #F8FAFC;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: #EFF6FF;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.stat-item .stat-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.stat-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Service cards without pricing - add more space before button */
.service-card-modern .service-features + .btn-service-cta {
    margin-top: 32px;
}

/* Responsive Stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-choose {
        padding: 80px 24px;
    }
    
    .why-choose .section-title {
        font-size: 32px;
        margin-bottom: 48px;
    }
    
    .stat-item {
        padding: 24px 20px;
    }
}

/* Trust Section - Emoticon Fix */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    padding: 32px 24px;
    background: #F8FAFC;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-8px);
    background: #EFF6FF;
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.trust-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.trust-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
}

.trust-content p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* Responsive Trust Grid */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-item {
        padding: 24px 20px;
    }
    
    .trust-icon {
        font-size: 56px;
    }
}

/* ============================================
   WHY CHOOSE - COMPLETE REDESIGN
   ============================================ */

.why-choose-redesigned {
    padding: 100px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-centered h2 {
    font-size: 48px;
    font-weight: 900;
    color: #0F172A;
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 20px;
    color: #64748B;
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-box {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.benefit-box:hover {
    transform: translateY(-8px);
    border-color: #2563EB;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%);
}

.benefit-emoji {
    font-size: 72px;
    margin-bottom: 24px;
    display: block;
    line-height: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.benefit-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.benefit-box p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
}

/* ============================================
   FIX HERO STAT CARDS VISIBILITY
   ============================================ */

.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    animation: slideInRight 0.8s ease-out;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.stat-icon {
    font-size: 56px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    display: block;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-sublabel {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .benefit-box {
        padding: 40px 24px;
    }
    
    .benefit-emoji {
        font-size: 64px;
    }
    
    .section-header-centered h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-box {
        padding: 32px 24px;
    }
    
    .benefit-emoji {
        font-size: 56px;
    }
    
    .section-header-centered h2 {
        font-size: 32px;
    }
    
    .section-header-centered p {
        font-size: 16px;
    }
    
    .why-choose-redesigned {
        padding: 80px 24px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
}
/* TRUST SECTION - GUARANTEED FIX */
.trust-section {
    padding: 100px 40px;
    background: #F8FAFC;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    background: white;
    border: 3px solid #2563EB;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-icon {
    font-size: 80px;
    margin-bottom: 24px;
    display: block;
    width: 100%;
    text-align: center;
}

.trust-content {
    width: 100%;
    text-align: center;
}

.trust-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    margin-top: 0;
}

.trust-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}
/* HERO STAT CARDS - SUPER VISIBLE FIX */
.hero-stats-grid .stat-card {
    background: #FFFFFF !important;
    border: 3px solid #2563EB !important;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

.hero-stats-grid .stat-card:hover {
    background: #EFF6FF !important;
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.3) !important;
}

.hero-stats-grid .stat-icon {
    font-size: 56px;
    margin-bottom: 16px;
    display: block;
}

.hero-stats-grid .stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #0F172A !important;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats-grid .stat-label {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A !important;
    margin-bottom: 4px;
}

.hero-stats-grid .stat-sublabel {
    font-size: 14px;
    color: #64748B !important;
    font-weight: 600;
}
/* ============================================
   FONT UPDATE - Inter (WordPress Standard)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

/* ============================================
   HERO TRUST BADGES - BLACK TEXT
   ============================================ */

.hero-trust-badges {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: #2563EB;
}

.trust-badge-item span {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A !important;
    letter-spacing: 0.3px;
}

/* ============================================
   HERO STAT CARDS - FIX STARTING PRICE
   ============================================ */

.stat-label-bold {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A !important;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat-sublabel-text {
    font-size: 13px;
    color: #64748B !important;
    font-weight: 600;
    line-height: 1.4;
}

.stat-number-big {
    font-size: 52px;
    font-weight: 900;
    color: #0F172A !important;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: -2px;
}

/* Fix card backgrounds to ensure text visibility */
.creative-stat-card {
    background: #FFFFFF !important;
}

/* ============================================
   MOBILE OPTIMIZATION - COMPLETE
   ============================================ */

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-home-new {
        padding: 80px 24px 60px;
    }
    
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-main-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-lead-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-action-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
        font-size: 16px;
    }
    
    /* Trust Badges Mobile */
    .hero-trust-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-badge-item {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .trust-badge-item span {
        font-size: 15px;
    }
    
    /* Hero Stat Cards Mobile */
    .hero-stats-grid-creative {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .creative-stat-card {
        padding: 28px 20px;
    }
    
    .stat-number-big {
        font-size: 44px;
    }
    
    .stat-label-bold {
        font-size: 17px;
    }
    
    .stat-sublabel-text {
        font-size: 12px;
    }
    
    .stat-icon-large {
        font-size: 48px;
        top: 16px;
        right: 16px;
    }
    
    /* Trust Cards Mobile */
    .trust-cards-floating {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .floating-trust-card {
        padding: 32px 24px;
    }
    
    .card-icon-circle {
        width: 80px;
        height: 80px;
        font-size: 40px;
        margin-bottom: 20px;
    }
    
    .floating-trust-card h3 {
        font-size: 20px;
    }
    
    .floating-trust-card p {
        font-size: 14px;
    }
    
    /* Services Grid Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio Grid Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Floating Icons Mobile */
    .floating-icon-container {
        gap: 16px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .floating-icon-item span {
        font-size: 12px;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-main-title {
        font-size: 48px;
    }
    
    .hero-stats-grid-creative {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .trust-cards-floating {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .trust-badge-item span {
        font-size: 13px;
    }
}

/* ============================================
   ENHANCED READABILITY
   ============================================ */

/* Better line heights */
h1 { line-height: 1.2; }
h2 { line-height: 1.3; }
h3 { line-height: 1.4; }
p { line-height: 1.6; }

/* Better letter spacing */
.hero-main-title {
    letter-spacing: -1px;
}

.section-title {
    letter-spacing: -0.5px;
}

/* Touch-friendly targets on mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 48px;
        display: inline-flex;
        align-items: center;
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */

/* Focus states */
a:focus,
button:focus {
    outline: 3px solid #2563EB;
    outline-offset: 2px;
}

/* Better contrast ratios */
.stat-sublabel-text {
    color: #475569 !important;
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Hide Resources menu item */
.nav-menu li a[href="blog.html"] {
    display: none !important;
}

.nav-menu li:has(a[href="blog.html"]) {
    display: none !important;
}

/* ============================================
   US VERSION OPTIMIZATIONS
   ============================================ */

/* Ensure USD pricing is prominent */
.stat-number-big {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'tnum' on, 'lnum' on; /* Tabular numbers */
}

/* US-specific badge styling */
.hero-label-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(12px);
}

/* Patriotic subtle accents (optional - can be removed) */
.btn-hero-primary {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.btn-hero-primary:hover {
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Enhanced trust indicators */
.trust-badge-item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* US-friendly spacing and readability */
.hero-lead-text {
    max-width: 600px;
}

/* Price emphasis */
.price-amount {
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'tnum' on;
}

.stat-number {
    font-family: 'Inter', sans-serif;
}

/* Better CTA visibility */
.btn-service-cta {
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Professional US market styling */
.service-card-modern {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-card-modern:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.18);
}
/* ============================================
   MOBILE OPTIMIZATION - COMPLETE FIX
   ============================================ */

/* Fix mobile menu functionality */
@media (max-width: 768px) {
    
    /* Hide announcement bar on mobile to reduce clutter */
    .announcement-bar {
        display: none;
    }
    
    /* Adjust nav for mobile without announcement bar */
    .main-nav {
        top: 0 !important;
        position: fixed;
        width: 100%;
        z-index: 1000;
    }
    
    /* Adjust body padding */
    body {
        padding-top: 80px !important;
    }
    
    /* Logo optimization for mobile */
    .logo {
        font-size: 14px;
    }
    
    .logo-bars {
        width: 20px;
        gap: 3px;
    }
    
    .bar {
        width: 20px;
        height: 3px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    /* Hide nav actions on mobile (Get Started button) */
    .nav-actions {
        display: none;
    }
    
    /* Mobile menu toggle - MAKE IT WORK */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #0F172A;
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }
    
    /* Mobile menu toggle active state */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Nav menu mobile styles */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }
    
    /* Show menu when active */
    .nav-menu.active {
        left: 0;
    }
    
    /* Nav menu items mobile */
    .nav-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #E2E8F0;
    }
    
    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 20px 0;
        font-size: 18px;
        font-weight: 600;
        color: #0F172A;
    }
    
    .nav-menu li a.active {
        color: #2563EB;
    }
    
    /* Hero section mobile optimization */
    .hero-home-new {
        padding: 60px 20px 40px !important;
        min-height: auto !important;
    }
    
    .hero-grid-container {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    /* Hero title mobile */
    .hero-main-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
    }
    
    .title-gradient {
        font-size: 32px !important;
    }
    
    /* Hero lead text */
    .hero-lead-text {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }
    
    /* Hero badge */
    .hero-label-badge {
        font-size: 12px !important;
        padding: 10px 16px !important;
        margin-bottom: 20px !important;
    }
    
    .badge-icon-svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Hero buttons */
    .hero-action-row {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100% !important;
        padding: 16px 24px !important;
        font-size: 15px !important;
        justify-content: center !important;
    }
    
    /* Trust badges mobile */
    .hero-trust-badges {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 24px !important;
    }
    
    .trust-badge-item {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 12px 16px !important;
    }
    
    .trust-badge-item span {
        font-size: 13px !important;
    }
    
    .badge-icon {
        width: 18px !important;
        height: 18px !important;
    }
    
    /* Hero stat cards mobile */
    .hero-stats-grid-creative {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-top: 32px !important;
    }
    
    .creative-stat-card {
        padding: 24px 20px !important;
    }
    
    .stat-number-big {
        font-size: 36px !important;
        margin-bottom: 8px !important;
    }
    
    .stat-label-bold {
        font-size: 16px !important;
        margin-bottom: 4px !important;
    }
    
    .stat-sublabel-text {
        font-size: 12px !important;
    }
    
    .stat-icon-large {
        font-size: 40px !important;
        top: 12px !important;
        right: 12px !important;
    }
    
    /* Floating icons mobile */
    .floating-icons-section {
        padding: 32px 20px !important;
    }
    
    .floating-icon-container {
        gap: 16px !important;
    }
    
    .icon-circle {
        width: 56px !important;
        height: 56px !important;
        font-size: 26px !important;
    }
    
    .floating-icon-item span {
        font-size: 11px !important;
    }
    
    /* Trust cards mobile */
    .trust-section-creative {
        padding: 60px 20px !important;
    }
    
    .trust-cards-floating {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .floating-trust-card {
        padding: 28px 20px !important;
    }
    
    .card-icon-circle {
        width: 80px !important;
        height: 80px !important;
        font-size: 40px !important;
        margin-bottom: 20px !important;
    }
    
    .floating-trust-card h3 {
        font-size: 19px !important;
        margin-bottom: 10px !important;
    }
    
    .floating-trust-card p {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Services section mobile */
    .services-home {
        padding: 60px 20px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .service-card {
        padding: 28px 20px !important;
    }
    
    /* Portfolio section mobile */
    .portfolio-home {
        padding: 60px 20px !important;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 20px 20px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    
    /* Section titles mobile */
    .section-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }
    
    .section-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
    
    /* Container mobile */
    .container {
        padding: 0 20px !important;
    }
    
    /* Hide background circles on mobile for performance */
    .hero-bg-circles,
    .bg-circle {
        display: none !important;
    }
}

/* Tablet optimization (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    
    /* Show announcement bar on tablet */
    .announcement-bar {
        display: block;
    }
    
    /* Adjust nav */
    .main-nav {
        top: 40px;
    }
    
    body {
        padding-top: 120px;
    }
    
    /* Hide mobile menu toggle on tablet */
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Show normal nav menu */
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        background: transparent;
        padding: 0;
        height: auto;
    }
    
    /* Hero adjustments */
    .hero-main-title {
        font-size: 42px;
    }
    
    .hero-stats-grid-creative {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-cards-floating {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop - ensure menu toggle is hidden */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        height: auto !important;
        width: auto !important;
    }
}
/* ============================================
   MOBILE LOGO FIX + CONTACT OPTIONS
   ============================================ */

/* Fix logo visibility on mobile */
@media (max-width: 768px) {
    
    /* Logo container */
    .logo {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1001 !important;
    }
    
    /* Logo bars - make them visible */
    .logo-bars {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        width: 24px !important;
        opacity: 1 !important;
    }
    
    .bar {
        display: block !important;
        width: 24px !important;
        height: 4px !important;
        background: linear-gradient(135deg, #2563EB 0%, #3B82F6 100%) !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .bar-1 { height: 3px !important; }
    .bar-2 { height: 4px !important; }
    .bar-3 { height: 5px !important; }
    .bar-4 { height: 6px !important; }
    
    /* Logo text - make it visible */
    .logo-text-group {
        display: flex !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .logo-text {
        font-size: 16px !important;
        font-weight: 900 !important;
        color: #0F172A !important;
        letter-spacing: 0.5px !important;
        line-height: 1 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .logo-tagline {
        font-size: 9px !important;
        font-weight: 600 !important;
        color: #64748B !important;
        letter-spacing: 0.3px !important;
        line-height: 1.2 !important;
        margin-top: 2px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Nav container spacing */
    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
        height: 80px !important;
    }
    
    /* HIDE EMAIL AND CALL BUTTONS ON MOBILE */
    .contact-bar {
        display: none !important;
    }
    
    /* KEEP WHATSAPP BUTTON VISIBLE ON MOBILE */
    .whatsapp-float {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        bottom: 24px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
        background: #25D366 !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
        z-index: 999 !important;
        transition: all 0.3s ease !important;
    }
    
    .whatsapp-float:hover,
    .whatsapp-float:active {
        transform: scale(1.1) !important;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
    }
    
    .whatsapp-float svg {
        width: 32px !important;
        height: 32px !important;
        fill: white !important;
    }
}

/* Tablet - show all contact options */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Show all contact options on tablet */
    .contact-bar {
        display: flex !important;
    }
    
    .whatsapp-float {
        display: flex !important;
    }
}

/* Desktop - show all contact options */
@media (min-width: 1025px) {
    /* Show all contact options on desktop */
    .contact-bar {
        display: flex !important;
    }
    
    .whatsapp-float {
        display: flex !important;
    }
}

/* Ensure logo is always visible across all breakpoints */
.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    opacity: 1;
    visibility: visible;
}

.logo * {
    opacity: 1;
    visibility: visible;
}
/* ============================================
   MENU VISIBILITY FIX - CRITICAL
   ============================================ */

/* Desktop - Ensure menu is always visible */
@media (min-width: 1025px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        height: auto !important;
        width: auto !important;
        left: 0 !important;
        gap: 40px !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
    }
    
    .nav-menu li {
        border-bottom: none !important;
        width: auto !important;
    }
    
    .nav-menu li a {
        padding: 0 !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
    }
}

/* Tablet - Ensure menu is visible */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-menu {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        padding: 0 !important;
        height: auto !important;
        width: auto !important;
        left: 0 !important;
        gap: 32px !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
    }
    
    .nav-menu li {
        border-bottom: none !important;
        width: auto !important;
    }
    
    .nav-menu li a {
        padding: 0 !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
    }
}

/* Mobile - Hamburger menu */
@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        position: fixed !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ============================================
   LOGO FIX - Ensures logo bars are always vertical
   and have correct colors on ALL screen sizes
   ============================================ */

/* Logo bars container - always flex horizontal, items align to bottom */
.logo-bars,
.logo .logo-bars,
.footer-logo .logo-bars,
.desktop-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-end !important;
    gap: 4px !important;
    height: 45px !important;
}

/* Individual bars - VERTICAL orientation, specific colors */
.logo-bars .bar,
.logo .bar,
.footer-logo .bar,
.desktop-logo .bar {
    display: block !important;
    width: 10px !important;
    border-radius: 4px 4px 0 0 !important;
    transform-origin: bottom !important;
    animation: raiseBars 1.5s ease-in-out infinite !important;
}

/* Bar 1 - ORANGE */
.logo-bars .bar-1,
.logo .bar-1,
.footer-logo .bar-1,
.desktop-logo .bar-1 {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8E53 100%) !important;
    height: 22px !important;
    animation-delay: 0s !important;
}

/* Bar 2 - YELLOW */
.logo-bars .bar-2,
.logo .bar-2,
.footer-logo .bar-2,
.desktop-logo .bar-2 {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%) !important;
    height: 28px !important;
    animation-delay: 0.15s !important;
}

/* Bar 3 - GREEN */
.logo-bars .bar-3,
.logo .bar-3,
.footer-logo .bar-3,
.desktop-logo .bar-3 {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%) !important;
    height: 34px !important;
    animation-delay: 0.3s !important;
}

/* Bar 4 - CYAN */
.logo-bars .bar-4,
.logo .bar-4,
.footer-logo .bar-4,
.desktop-logo .bar-4 {
    background: linear-gradient(135deg, #00BCD4 0%, #4DD0E1 100%) !important;
    height: 42px !important;
    animation-delay: 0.45s !important;
}

/* Mobile - slightly smaller but still VERTICAL */
@media (max-width: 768px) {
    .logo-bars,
    .logo .logo-bars,
    .footer-logo .logo-bars,
    .desktop-logo {
        height: 38px !important;
        gap: 3px !important;
    }
    
    .logo-bars .bar,
    .logo .bar,
    .footer-logo .bar,
    .desktop-logo .bar {
        width: 8px !important;
    }
    
    .logo-bars .bar-1,
    .desktop-logo .bar-1 { height: 18px !important; }
    
    .logo-bars .bar-2,
    .desktop-logo .bar-2 { height: 24px !important; }
    
    .logo-bars .bar-3,
    .desktop-logo .bar-3 { height: 30px !important; }
    
    .logo-bars .bar-4,
    .desktop-logo .bar-4 { height: 36px !important; }
}

/* Ensure hamburger menu is NOT affected by bar styles */
.mobile-menu-toggle span {
    width: 25px !important;
    height: 3px !important;
    background: #0F172A !important;
    border-radius: 2px !important;
    animation: none !important;
}

/* ============================================
   FOOTER TEXT ALIGNMENT IMPROVEMENTS
   ============================================ */

/* Footer content grid - better alignment */
.footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 2.5fr !important;
    gap: 60px !important;
    align-items: start !important;
    margin-bottom: 48px !important;
}

/* Footer brand section */
.footer-brand {
    display: flex !important;
    flex-direction: column !important;
}

.footer-brand .footer-logo {
    margin-bottom: 20px !important;
}

/* Add description under logo if not present */
.footer-brand .footer-description {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    margin-bottom: 0 !important;
}

/* Footer links - better grid alignment */
.footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px !important;
}

/* Column headers - consistent styling */
.footer-column h4 {
    color: #FFFFFF !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Column list items - better spacing and readability */
.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column ul li {
    margin-bottom: 14px !important;
}

.footer-column ul li:last-child {
    margin-bottom: 0 !important;
}

.footer-column ul li a,
.footer-column ul li {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    transition: color 0.2s ease !important;
}

.footer-column ul li a:hover {
    color: #FFFFFF !important;
}

/* Footer bottom - better alignment */
.footer-bottom {
    padding-top: 32px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}
