/* Modern Professional CSS with Brand Color System - Optimized */
:root {
    /* Brand Color Palette */
    --electric-blue: #5A5FEF;
    --digital-purple: #A336EC;
    --bright-magenta: #D642B6;
    --midnight-black: #1A1A1A;
    --cloud-white: #FFFFFF;

    /* Primary Brand Gradients */
    --primary-gradient: linear-gradient(135deg, #5A5FEF 0%, #A336EC 50%, #D642B6 100%);
    --secondary-gradient: linear-gradient(135deg, #A336EC 0%, #D642B6 50%, #5A5FEF 100%);
    --accent-gradient: linear-gradient(135deg, #D642B6 0%, #A336EC 100%);

    /* Color Variations */
    --electric-blue-light: #7B7FF2;
    --electric-blue-dark: #4248CC;
    --digital-purple-light: #B854EF;
    --digital-purple-dark: #8E2BD3;
    --bright-magenta-light: #DE5BC3;
    --bright-magenta-dark: #C92FA1;
    --midnight-black-light: #2D2D2D;
    --midnight-black-dark: #0F0F0F;

    /* Enhanced Neutral Colors */
    --gray-50: #F8F9FF;
    --gray-100: #F1F3FE;
    --gray-200: #E5E8FD;
    --gray-300: #D1D6FC;
    --gray-400: #9CA5F8;
    --gray-500: #6B73E6;
    --gray-600: #5A5FEF;
    --gray-700: #4248CC;
    --gray-800: #2D31A6;
    --gray-900: #1A1A1A;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(90, 95, 239, 0.1);
    --shadow-md: 0 4px 6px rgba(90, 95, 239, 0.15);
    --shadow-lg: 0 10px 15px rgba(90, 95, 239, 0.2);
    --shadow-xl: 0 20px 25px rgba(90, 95, 239, 0.25);
    --shadow-2xl: 0 25px 50px rgba(90, 95, 239, 0.3);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(90, 95, 239, 0.2);
    --glass-shadow: 0 8px 32px rgba(90, 95, 239, 0.3);
}

/* Critical CSS Reset - Optimized */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent layout shift */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Improve font rendering */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', 'SF Pro Display', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--midnight-black);
    background: linear-gradient(135deg, var(--cloud-white) 0%, #F8F9FF 25%, #F1F3FE 50%, #F8F9FF 75%, var(--cloud-white) 100%);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(90, 95, 239, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(163, 54, 236, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(214, 66, 182, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(90, 95, 239, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 600"><defs><style>.topo{fill:none;stroke:%235A5FEF;stroke-width:0.3;opacity:0.08;}</style></defs><path class="topo" d="M50,50 Q150,30 250,50 T450,70 T550,50"/><path class="topo" d="M40,120 Q140,100 240,120 T440,140 T540,120"/><path class="topo" d="M60,190 Q160,170 260,190 T460,210 T560,190"/><path class="topo" d="M30,260 Q130,240 230,260 T430,280 T530,260"/><path class="topo" d="M70,330 Q170,310 270,330 T470,350 T570,330"/><path class="topo" d="M20,400 Q120,380 220,400 T420,420 T520,400"/><path class="topo" d="M80,470 Q180,450 280,470 T480,490 T580,470"/><circle class="topo" cx="150" cy="150" r="8"/><circle class="topo" cx="300" cy="250" r="12"/><circle class="topo" cx="450" cy="180" r="6"/><circle class="topo" cx="200" cy="350" r="10"/><circle class="topo" cx="400" cy="400" r="15"/></svg>');
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 600px 600px;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, repeat;
    background-attachment: fixed;
    scroll-behavior: smooth;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Enhanced Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(90, 95, 239, 0.12);
    box-shadow: 0 10px 40px rgba(90, 95, 239, 0.1), 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 25px 25px;
    margin-bottom: -1px;
}

.navbar-brand {
    font-size: 1.85rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(90, 95, 239, 0.1);
}

.navbar-nav .nav-link {
    color: var(--midnight-black) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--electric-blue) !important;
    transform: translateY(-1px);
}

/* Enhanced Hero Section */
header {
    padding: 10rem 0 12rem;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
    background: var(--primary-gradient);
    background-size: 400% 400%;
    animation: enhancedGradientFlow 20s ease infinite, pulseBackground 10s ease-in-out infinite alternate;
    box-shadow: 0 25px 100px rgba(90, 95, 239, 0.3), 0 15px 50px rgba(163, 54, 236, 0.2);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.12) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(214, 66, 182, 0.15) 0%, transparent 70%),
                radial-gradient(circle at 10% 80%, rgba(90, 95, 239, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 20%, rgba(163, 54, 236, 0.08) 0%, transparent 45%);
    animation: floatSoft 30s ease-in-out infinite;
    z-index: 4;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    animation: floatSoft 15s ease-in-out infinite reverse;
}

.hero-particles::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 60% 10%, rgba(90, 95, 239, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 90%, rgba(214, 66, 182, 0.08) 0%, transparent 45%);
    animation: floatSoft 18s ease-in-out infinite;
    z-index: 4;
}

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

@keyframes enhancedGradientFlow {
    0% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1) contrast(1);
    }
    25% { 
        background-position: 100% 50%;
        filter: hue-rotate(30deg) brightness(1.1) contrast(1.1);
    }
    50% { 
        background-position: 100% 100%;
        filter: hue-rotate(60deg) brightness(1.2) contrast(1.2);
    }
    75% { 
        background-position: 0% 100%;
        filter: hue-rotate(30deg) brightness(1.1) contrast(1.1);
    }
    100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg) brightness(1) contrast(1);
    }
}

@keyframes pulseBackground {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    50% { 
        transform: scale(1.02) rotate(0.5deg);
        opacity: 1;
    }
    100% { 
        transform: scale(1.01) rotate(-0.3deg);
        opacity: 0.95;
    }
}

@keyframes floatSoft {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) rotate(2deg);
        opacity: 0.8;
    }
}

@keyframes enhancedCardFloat {
    0%, 100% { 
        transform: translateY(-25px) scale(1.08) rotate(1deg);
        border-radius: 32px;
        filter: brightness(1) saturate(1);
    }
    20% { 
        transform: translateY(-30px) scale(1.09) rotate(0.5deg);
        border-radius: 38px;
        filter: brightness(1.02) saturate(1.1);
    }
    40% { 
        transform: translateY(-22px) scale(1.1) rotate(1.5deg);
        border-radius: 35px;
        filter: brightness(1.05) saturate(1.2);
    }
    60% { 
        transform: translateY(-28px) scale(1.08) rotate(-0.5deg);
        border-radius: 40px;
        filter: brightness(1.03) saturate(1.15);
    }
    80% { 
        transform: translateY(-26px) scale(1.09) rotate(0deg);
        border-radius: 33px;
        filter: brightness(1.01) saturate(1.05);
    }
}

@keyframes prismaticGlow {
    0% { 
        box-shadow: 0 60px 120px rgba(90, 95, 239, 0.3), 0 35px 70px rgba(163, 54, 236, 0.2), 0 0 60px rgba(214, 66, 182, 0.15);
        filter: hue-rotate(0deg);
    }
    33% {
        box-shadow: 0 65px 130px rgba(214, 66, 182, 0.3), 0 40px 75px rgba(90, 95, 239, 0.2), 0 0 70px rgba(163, 54, 236, 0.15);
        filter: hue-rotate(120deg);
    }
    66% {
        box-shadow: 0 70px 140px rgba(163, 54, 236, 0.3), 0 45px 80px rgba(214, 66, 182, 0.2), 0 0 80px rgba(90, 95, 239, 0.15);
        filter: hue-rotate(240deg);
    }
    100% { 
        box-shadow: 0 60px 120px rgba(90, 95, 239, 0.3), 0 35px 70px rgba(163, 54, 236, 0.2), 0 0 60px rgba(214, 66, 182, 0.15);
        filter: hue-rotate(360deg);
    }
}

@keyframes glowPulse {
    0% { 
        box-shadow: 0 45px 100px rgba(90, 95, 239, 0.25), 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(90, 95, 239, 0.3);
    }
    100% { 
        box-shadow: 0 50px 120px rgba(90, 95, 239, 0.35), 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 50px rgba(90, 95, 239, 0.5);
    }
}

@keyframes enhancedButtonMorph {
    0% { 
        transform: translateY(-8px) scale(1.08) rotate(0deg);
        border-radius: 35px;
        background-position: 0% 50%;
        filter: brightness(1.1) saturate(1.2) hue-rotate(0deg);
    }
    20% { 
        transform: translateY(-10px) scale(1.1) rotate(1deg);
        border-radius: 40px;
        background-position: 100% 0%;
        filter: brightness(1.15) saturate(1.3) hue-rotate(72deg);
    }
    40% { 
        transform: translateY(-6px) scale(1.12) rotate(-0.5deg);
        border-radius: 45px;
        background-position: 100% 100%;
        filter: brightness(1.2) saturate(1.4) hue-rotate(144deg);
    }
    60% { 
        transform: translateY(-9px) scale(1.09) rotate(0.5deg);
        border-radius: 38px;
        background-position: 0% 100%;
        filter: brightness(1.18) saturate(1.35) hue-rotate(216deg);
    }
    80% { 
        transform: translateY(-7px) scale(1.11) rotate(0deg);
        border-radius: 42px;
        background-position: 50% 50%;
        filter: brightness(1.13) saturate(1.25) hue-rotate(288deg);
    }
    100% { 
        transform: translateY(-8px) scale(1.08) rotate(0deg);
        border-radius: 35px;
        background-position: 0% 50%;
        filter: brightness(1.1) saturate(1.2) hue-rotate(360deg);
    }
}

@keyframes sparkleEffect {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes textShimmer {
    0% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.1);
    }
    100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
}

@keyframes underlineGlow {
    0% { 
        box-shadow: 0 4px 15px rgba(90, 95, 239, 0.4), 0 2px 8px rgba(163, 54, 236, 0.3);
        transform: scaleX(1);
    }
    100% { 
        box-shadow: 0 6px 25px rgba(90, 95, 239, 0.6), 0 3px 12px rgba(163, 54, 236, 0.5), 0 0 20px rgba(214, 66, 182, 0.3);
        transform: scaleX(1.1);
    }
}

@keyframes floatingParticles {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-15px) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.9;
    }
}

@keyframes textGlow {
    0% { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    100% { text-shadow: 0 2px 8px rgba(90, 95, 239, 0.3), 0 0 20px rgba(90, 95, 239, 0.1); }
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

header .container {
    position: relative;
    z-index: 5;
}

header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--cloud-white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2);
    animation: bounceIn 1.2s ease forwards;
    letter-spacing: 1px;
    opacity: 0;
}

header .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInFromLeft 1s ease 0.3s forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.hero-tool {
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: slideInFromRight 1s ease 0.5s forwards;
    opacity: 0;
    z-index: 10;
    position: relative;
}

.hero-tool .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-tool .input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.hero-tool .form-control {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--midnight-black);
    transition: all 0.3s ease;
}

.hero-tool .form-control:focus {
    background: rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 0 2px rgba(90, 95, 239, 0.3);
    transform: scale(1.02);
}

.btn-hero-tool {
    background: linear-gradient(135deg, var(--cloud-white) 0%, #f8f9fa 100%);
    border: none;
    color: var(--electric-blue);
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-hero-tool:hover::before {
    left: 100%;
}

.btn-hero-tool:hover {
    transform: scale(1.08) translateY(-2px);
    color: var(--midnight-black);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.hero-buttons {
    animation: bounceIn 1.2s ease 0.7s forwards;
    opacity: 0;
    z-index: 10;
    position: relative;
    margin-top: 2rem;
}

.btn-hero {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: var(--midnight-black);
    animation: pulseGlow 2s infinite;
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-hero-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-hero-outline:hover::after {
    left: 100%;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px) scale(1.02);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-testimonial {
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 1;
    z-index: 10;
    position: relative;
    margin-top: 3rem;
}

.testimonial-stars {
    color: var(--bright-magenta);
    margin-bottom: 1rem;
}

.hero-testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--midnight-black);
}

.hero-testimonial small {
    opacity: 0.7;
    color: var(--midnight-black);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--midnight-black-light) 100%);
    padding: 4rem 0;
    color: white;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--electric-blue);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8F9FF 0%, #F1F3FE 100%);
}

.tool-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px) saturate(160%);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 0 25px 80px rgba(90, 95, 239, 0.12), 0 12px 35px rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(90, 95, 239, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transform: translateY(0) scale(1);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 95, 239, 0.02) 0%, rgba(163, 54, 236, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.tool-card:hover {
    transform: translateY(-25px) scale(1.08) rotate(1deg);
    box-shadow: 0 60px 120px rgba(90, 95, 239, 0.3), 0 35px 70px rgba(163, 54, 236, 0.2), 0 0 60px rgba(214, 66, 182, 0.15);
    border-color: rgba(90, 95, 239, 0.8);
    z-index: 1;
    animation: enhancedCardFloat 5s ease-in-out infinite, prismaticGlow 3s ease-in-out infinite alternate;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 255, 0.96) 50%, rgba(255, 255, 255, 0.98) 100%);
}

.tool-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 35px rgba(90, 95, 239, 0.25);
    position: relative;
    overflow: hidden;
}

.tool-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.tool-card:hover .tool-icon::before {
    transform: translateX(100%);
}

.tool-icon::after {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon::after {
    animation: sparkleEffect 2s ease-in-out infinite;
}

.tool-card:hover .tool-icon i {
    animation: iconSpin 2s ease-in-out infinite;
}

.tool-icon i {
    font-size: 2rem;
    color: white;
}

.tool-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--midnight-black);
    position: relative;
    overflow: hidden;
}

.tool-card:hover h3 {
    color: var(--electric-blue);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.tool-card p {
    color: #4a5568;
    text-align: center;
    margin-bottom: 2rem;
}

.tool-input {
    margin-top: auto;
}

.btn-tool {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 35px;
    font-weight: 700;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(90, 95, 239, 0.4), 0 4px 15px rgba(163, 54, 236, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-tool:hover::before {
    opacity: 1;
}

.btn-tool:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 60px rgba(90, 95, 239, 0.6), 0 10px 35px rgba(163, 54, 236, 0.4), 0 0 40px rgba(214, 66, 182, 0.3);
    color: white;
    animation: enhancedButtonMorph 4s ease-in-out infinite;
    background: var(--secondary-gradient);
    background-size: 400% 400%;
    filter: brightness(1.1) saturate(1.2);
}

.tool-result {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    min-height: 60px;
    display: none;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06), 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(90, 95, 239, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 95, 239, 0.02) 0%, rgba(214, 66, 182, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card.popular {
    border-color: var(--bright-magenta);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(90, 95, 239, 0.1), 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(90, 95, 239, 0.3);
    z-index: 3;
}

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

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-3px);
    z-index: 3;
}

.popular-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--midnight-black);
}

.period {
    font-size: 1rem;
    color: #4a5568;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--bright-magenta);
    margin-right: 10px;
}

.btn-pricing {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 66, 182, 0.4);
    color: white;
}

/* Clients Section */
.clients-section {
    padding: 3rem 0;
    background: #F1F3FE;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.client-logo {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-2px);
    color: var(--bright-magenta);
}

/* Main Content */
.main-content {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8F9FF 0%, var(--cloud-white) 50%, #F8F9FF 100%);
}

/* Glass morphism containers */
.glass-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(90, 95, 239, 0.18);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(90, 95, 239, 0.2);
}

h2.section-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--midnight-black-light) 25%, #4a5568 50%, var(--midnight-black-light) 75%, var(--midnight-black) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -1px;
    line-height: 1.1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Reset any inherited alignment */
    text-align: center;
    direction: ltr;
    unicode-bidi: normal;
    text-indent: 0;
}

/* Remove animation specifically for Meet Your SEO Expert section */
.founder-section h2.section-title {
    animation: none;
}

.btn-read-more {
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--midnight-black-light) 100%);
    border: none;
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.4);
    color: white;
}

/* Sidebar */
.sidebar-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(90, 95, 239, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
    margin-bottom: 2rem;
    min-height: fit-content;
}

/* Show the SEO services sidebar box*/
.sidebar-card[id="services"] {
    display: block;
}

.sidebar-card h2,
.sidebar-card h3 {
    color: var(--midnight-black);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
    decoding: async;
}

/* Critical images that should load immediately */
.hero-image,
.founder-headshot,
.logo {
    loading: eager !important;
}

/* Lazy loading fallback */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Enhanced Mobile Optimization */

/* Ensure proper viewport handling */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    touch-action: manipulation;
}

/* Improved touch targets */
a, button, .btn, input, textarea, select {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

/* Prevent iOS zoom on input focus */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    font-size: 16px !important;
}

/* Enhanced tap highlighting */
* {
    -webkit-tap-highlight-color: rgba(90, 95, 239, 0.2);
    -webkit-touch-callout: none;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .sidebar-card {
        position: relative;
        top: auto;
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .sidebar-card h2,
    .sidebar-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Enhanced mobile FAQ styles */
    .accordion {
        margin-top: 1.5rem;
    }

    .accordion-item {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 1.25rem 1rem;
        border-radius: 12px;
        line-height: 1.4;
    }

    .accordion-button:not(.collapsed) {
        border-radius: 12px 12px 0 0;
    }

    .accordion-body {
        padding: 1.25rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .accordion-collapse {
        border-radius: 0 0 12px 12px;
    }

    .accordion-collapse.show .accordion-body {
        border-radius: 0 0 10px 10px;
    }

    .sidebar-card .accordion-button {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .sidebar-card .accordion-body {
        padding: 1rem;
        font-size: 0.85rem;
    }

    /* FAQ Section Mobile Optimization */
    .faq-section .accordion {
        margin-top: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .faq-section .accordion-item {
        margin-bottom: 1.25rem;
        border-radius: 16px;
    }

    .faq-section .accordion-button {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
        border-radius: 16px;
        line-height: 1.4;
    }

    .faq-section .accordion-button:not(.collapsed) {
        border-radius: 16px 16px 0 0;
    }

    .faq-section .accordion-button::after {
        margin-left: 1rem;
        transform: scale(1.1);
    }

    .faq-section .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg) scale(1.1);
    }

    .faq-section .accordion-body {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .faq-section .accordion-body::before {
        left: 1.25rem;
        right: 1.25rem;
    }

    .faq-section .accordion-collapse {
        border-radius: 0 0 16px 16px;
    }

    .faq-section .accordion-collapse.show .accordion-body {
        border-radius: 0 0 14px 14px;
    }
}

/* Extra small devices FAQ adjustments */
@media (max-width: 480px) {
    .faq-section .accordion {
        padding: 0 0.5rem;
    }

    .faq-section .accordion-item {
        margin-bottom: 1rem;
        border-radius: 14px;
    }

    .faq-section .accordion-button {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    .faq-section .accordion-button:not(.collapsed) {
        border-radius: 14px 14px 0 0;
    }

    .faq-section .accordion-body {
        padding: 1.25rem 1rem;
        font-size: 0.95rem;
    }

    .faq-section .accordion-body::before {
        left: 1rem;
        right: 1rem;
    }

    .faq-section .accordion-collapse {
        border-radius: 0 0 14px 14px;
    }

    .faq-section .accordion-collapse.show .accordion-body {
        border-radius: 0 0 12px 12px;
    }
}

    /* Improved mobile navigation */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Better mobile forms */
    .form-control {
        padding: 12px 16px;
        border-radius: 12px;
    }

    /* Optimized mobile buttons */
    .btn {
        padding: 14px 24px;
        font-weight: 600;
        border-radius: 12px;
        font-size: 16px;
    }
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #F8F9FF 0%, #F1F3FE 100%);
    border-radius: 12px;
    border-left: 4px solid var(--bright-magenta);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.features-list li:hover {
    transform: translateX(5px);
    background: var(--accent-gradient);
    color: white;
}

.features-list li i {
    margin-right: 12px;
    font-size: 1.1rem;
    color: var(--bright-magenta);
    transition: color 0.3s ease;
}

.features-list li:hover i {
    color: white;
}

/* Enhanced FAQ Accordion Layout */
.faq-section .accordion {
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section Styles */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(90, 95, 239, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(214, 66, 182, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    background: transparent;
    box-shadow: 0 8px 25px rgba(90, 95, 239, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-section .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(90, 95, 239, 0.15);
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, #F8F9FF 100%);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    color: var(--midnight-black);
    padding: 2rem 2.5rem;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    line-height: 1.4;
    text-align: left;
    border: 2px solid rgba(90, 95, 239, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.faq-section .accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 95, 239, 0.05) 0%, rgba(163, 54, 236, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 18px;
}

.faq-section .accordion-button:hover::before {
    opacity: 1;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(90, 95, 239, 0.3);
    border-color: rgba(90, 95, 239, 0.3);
    border-radius: 20px 20px 0 0;
}

.faq-section .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(90, 95, 239, 0.2);
    border-color: var(--electric-blue);
    outline: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235A5FEF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.3);
    margin-left: 1.5rem;
    flex-shrink: 0;
    width: 1.2rem;
    height: 1.2rem;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg) scale(1.3);
}

.faq-section .accordion-body {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, #F8F9FF 100%);
    border-radius: 0;
    margin-top: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    box-shadow: inset 0 4px 8px rgba(90, 95, 239, 0.05);
    border: 2px solid rgba(90, 95, 239, 0.1);
    border-top: none;
    position: relative;
}

.faq-section .accordion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2.5rem;
    right: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 95, 239, 0.2), transparent);
}

.faq-section .accordion-collapse {
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.faq-section .accordion-collapse.show .accordion-body {
    border-radius: 0 0 18px 18px;
}

/* Legacy sidebar FAQ styles - kept for other pages */
.sidebar-card .accordion {
    margin-top: 1.5rem;
}

.sidebar-card .accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: transparent;
    box-shadow: 0 4px 15px rgba(90, 95, 239, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-card .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 95, 239, 0.15);
}

.sidebar-card .accordion-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, #F8F9FF 100%);
    border: none;
    border-radius: 16px;
    font-weight: 600;
    color: var(--midnight-black);
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;
    border: 2px solid rgba(90, 95, 239, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.sidebar-card .accordion-button:not(.collapsed) {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 8px 25px rgba(90, 95, 239, 0.3);
    border-color: rgba(90, 95, 239, 0.3);
    border-radius: 16px 16px 0 0;
}

.sidebar-card .accordion-body {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, #F8F9FF 100%);
    border-radius: 0;
    margin-top: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a5568;
    box-shadow: inset 0 4px 8px rgba(90, 95, 239, 0.05);
    border: 2px solid rgba(90, 95, 239, 0.1);
    border-top: none;
    position: relative;
}

/* Contact Section */
.contact-section {
    background: var(--primary-gradient);
    color: white;
    padding: 4rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    margin-right: 1rem;
    width: 20px;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#contact-form-container {
    width: 100%;
    display: block !important;
}

/* Zoho Form Container */
#zf_div_eMQKLs_lMCDzGFG8C7MhzpFzMGOV5KtlWRj2Dw1cLFM {
    width: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

#zf_div_eMQKLs_lMCDzGFG8C7MhzpFzMGOV5KtlWRj2Dw1cLFM iframe {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: block !important;
    width: 100%;
}

.contact-form .form-control {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

/* Contact success message styling */
.contact-success-message {
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.btn-contact {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.btn-floating {
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 4px 12px rgba(90, 95, 239, 0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 95, 239, 0.5);
    color: white;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* Map Container Styling */
.map-container {
    margin: 2rem 0;
}

.map-container h3 {
    color: var(--cloud-white);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.map-container iframe {
    max-width: 100%;
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }
}

.service-card {
    background: linear-gradient(135deg, rgba(90, 95, 239, 0.05) 0%, rgba(163, 54, 236, 0.05) 100%);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(90, 95, 239, 0.1), 0 5px 20px rgba(163, 54, 236, 0.08);
    border: 1px solid rgba(90, 95, 239, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 95, 239, 0.05) 0%, rgba(163, 54, 236, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03) rotate(-0.5deg);
    box-shadow: 0 30px 80px rgba(90, 95, 239, 0.2), 0 15px 35px rgba(163, 54, 236, 0.15);
    border-color: rgba(90, 95, 239, 0.5);
    animation: pulseGlow 2s infinite;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 12px 35px rgba(90, 95, 239, 0.3);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--midnight-black);
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--electric-blue), var(--bright-magenta));
    color: white;
}

.dropdown-divider {
    border-color: rgba(102, 126, 234, 0.3);
}

/* Service Card Link Styles */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.service-card-link:hover .service-card {
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2), 0 8px 30px rgba(118, 75, 162, 0.15);
}

/* Old sidebar services styles (kept for compatibility) */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.service-link {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.service-link:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.service-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bright-magenta);
}

.service-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.alacarte-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(90, 95, 239, 0.08);
    border: 2px solid rgba(90, 95, 239, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.alacarte-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(90, 95, 239, 0.12);
    border-color: var(--bright-magenta);
}

.alacarte-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bright-magenta);
    margin-bottom: 1.5rem;
    text-align: center;
}

.per-page {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--bright-magenta);
    margin-right: 10px;
    width: 16px;
}

.btn-alacarte {
    background: var(--accent-gradient);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-alacarte:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 66, 182, 0.4);
    color: white;
}

.btn-alacarte.added {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

/* Quote Summary */
.contact-info-card {
    background: transparent;
    border: none;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    position: sticky;
    top: 20px,
    z-index: 100;
    box-shadow: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--electric-blue);
}

.contact-header h3 {
    color: var(--midnight-black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.contact-item div {
    flex-grow: 1;
}

.contact-item strong {
    display: block;
    color: var(--midnight-black);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-item a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--digital-purple);
    text-decoration: underline;
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.quote-summary h3 {
    color: var(--midnight-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.selected-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(90, 95, 239, 0.1);
    border-left: 4px solid var(--bright-magenta);
}

.service-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-name {
    font-weight: 600;
    color: var(--midnight-black);
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bright-magenta);
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

.total-price {
    font-size: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--midnight-black);
}

.quote-actions {
    text-align: center;
}

.quote-actions .btn {
    margin: 0.25rem;
}

.cart-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bright-magenta);
}

.cart-total {
    text-align: center;
    padding: 1rem;
    background: #F8F9FF;
    border-radius: 8px;
    margin: 1rem 0;
    border: 2px solid var(--bright-magenta);
}

.cart-total .total-price {
    font-size: 1.5rem;
    color: var(--midnight-black);
    margin-bottom: 0.5rem;
}

/* Cart Counter */
.cart-counter {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 5px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .category-title i {
        margin: 0 0 0.5rem 0;
    }

    .alacarte-card {
        margin-bottom: 2rem;
    }

    .quote-summary {
        position: static;
        margin-top: 2rem;
    }
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Zoho Contact Form Styling */
#zf_div_B2zxFpujrtruEqmdKrHx7oflzhgeVJxtSxTl9zBk8eE {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(90, 95, 239, 0.1);
}

#zf_div_B2zxFpujrtruEqmdKrHx7oflzhgeVJxtSxTl9zBk8eE iframe {
    border-radius: 20px;
}

/* Blog Post Styles */
.post-container {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-radius: 28px !important;
    padding: 2rem !important;
    box-shadow: 0 15px 50px rgba(90, 95, 239, 0.06), 0 5px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(90, 95, 239, 0.1) !important;
    overflow: hidden;
}

.post-featured-image {
    margin: -2rem -2rem 2rem -2rem;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.post-breadcrumb {
    margin-bottom: 1.5rem;
}

.post-breadcrumb .breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    margin: 0;
    font-size: 0.9rem;
}

.post-breadcrumb .breadcrumb-item a {
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 500;
}

.post-breadcrumb .breadcrumb-item.active {
    color: #4a5568;
    font-weight: 500;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--midnight-black);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bright-magenta);
}

.meta-item {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--bright-magenta);
    margin-right: 0.5rem;
    width: 16px;
}

.category-badge {
    background: var(--accent-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
}

.post-content {
    color: #4a5568;
    line-height: 1.8;
    margin: 2rem 0;
    font-size: 1.1rem;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: var(--midnight-black);
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.post-content h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(90, 95, 239, 0.1);
}

.post-content blockquote {
    background: #F8F9FF;
    border-left: 4px solid var(--bright-magenta);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 3rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .post-container {
        padding: 1.5rem !important;
        border-radius: 20px !important;
        margin: 1rem !important;
    }

    .post-featured-image {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        border-radius: 20px 20px 0 0;
    }

    .post-featured-image img {
        height: 200px;
    }

    .post-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .meta-item {
        font-size: 0.9rem;
    }

    .post-content {
        font-size: 1rem;
        margin: 1.5rem 0;
    }

    .post-content h2 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.75rem 0;
    }

    .post-content h3 {
        font-size: 1.3rem;
        margin: 1.25rem 0 0.5rem 0;
    }

    .post-content p {
        margin-bottom: 1.25rem;
    }

    .post-content blockquote {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .post-breadcrumb .breadcrumb {
        font-size: 0.85rem;
    }

    .post-breadcrumb .breadcrumb-item.active {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .post-container {
        padding: 1rem !important;
        margin: 0.5rem !important;
        border-radius: 16px !important;
    }

    .post-featured-image {
        margin: -1rem -1rem 1rem -1rem;
        border-radius: 16px 16px 0 0;
    }

    .post-featured-image img {
        height: 180px;
    }

    .post-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .post-content {
        font-size: 0.95rem;
    }

    .post-content h2 {
        font-size: 1.3rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }
}

/* Blog Index Styles */
.blog-post-image {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: #F8F9FF;
}

.blog-post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .blog-post-image img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .blog-post-image {
        border-radius: 12px;
        margin-bottom: 1rem;
    }

    .blog-post-image img {
        height: 160px;
    }
}

/* Enhanced Tool Results Styling */
.analysis-results-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(90, 95, 239, 0.15);
    border: 1px solid rgba(90, 95, 239, 0.2);
    margin-top: 2rem;
}

.analysis-results h4 {
    color: var(--midnight-black);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.score-item {
    text-align: center;
    padding: 1rem;
    background: #F8F9FF;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.score-item:hover {
    border-color: var(--bright-magenta);
    transform: translateY(-2px);
}

.score-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.score-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.recommendations {
    background: #F8F9FF;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--bright-magenta);
}

.recommendations h5 {
    color: var(--midnight-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.recommendations ul {
    margin: 0;
    padding-left: 1.5rem;
}

.recommendations li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.cta-section {
    text-align: center;
    padding: 1.5rem;
    background: var(--primary-gradient);
    border-radius: 12px;
    color: white;
    margin-top: 1.5rem;
}

.cta-section p {
    margin-bottom: 1rem;
}

.speed-result, .keyword-analysis, .seo-score-result {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.speed-result h5, .keyword-analysis h5, .seo-score-result h5 {
    color: var(--midnight-black);
    font-weight: 600;
    margin-bottom: 1rem;
}

.speed-metrics, .analysis-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #F8F9FF;
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.keyword-list {
    max-height: 300px;
    overflow-y: auto;
}

.keyword-item {
    background: #F8F9FF;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid var(--bright-magenta);
}

.keyword-word {
    font-weight: 500;
    color: var(--midnight-black);
}

.overall-score {
    margin: 2rem 0;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 6px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 15px rgba(90, 95, 239, 0.1);
}

.score-circle.text-success {
    border-color: #10b981;
}

.score-circle.text-info {
    border-color: var(--electric-blue);
}

.score-circle.text-warning {
    border-color: #f59e0b;
}

.score-circle.text-danger {
    border-color: #ef4444;
}

.score-number {
    font-size: 2rem;
    font-weight: 700;
}

.score-grade {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.8;
}

.factor-breakdown {
    margin: 1.5rem 0;
}

.factor-item {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #F8F9FF;
    border-radius: 8px;
}

.score-bar-container {
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 200px;
}

.score-bar {
    width: 100px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 0.5rem;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    transition: width 0.3s ease;
    border-radius: 4px;
}

.speed-recommendations, .keyword-tips, .improvement-tips {
    background: #F0F9FF;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--electric-blue);
}

.speed-recommendations h6, .keyword-tips h6, .improvement-tips h6 {
    color: var(--electric-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.speed-recommendations li, .keyword-tips li, .improvement-tips li {
    margin-bottom: 0.25rem;
    color: var(--electric-blue);
    font-size: 0.9rem;
}

/* AI Urgency Card Styles */
.ai-urgency-card {
    position: relative;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--digital-purple) 50%, var(--bright-magenta) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(90, 95, 239, 0.4), 0 0 30px rgba(90, 95, 239, 0.2);
    animation: aiCardPulse 3s ease-in-out infinite alternate;
    transform: translateY(-5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ai-urgency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: aiCardShimmer 2s infinite;
}

.ai-urgency-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--primary-gradient);
    border-radius: 25px;
    filter: blur(15px);
    opacity: 0.6;
    z-index: -1;
    animation: aiGlowPulse 2s ease-in-out infinite alternate;
}

.ai-urgency-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    animation: aiIconFloat 2s ease-in-out infinite;
}

.ai-urgency-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: aiTitleGlow 2s ease-in-out infinite alternate;
}

.ai-urgency-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.ai-urgency-cta {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-ai-urgency {
    background: rgba(255, 255, 255, 0.9);
    color: var(--electric-blue);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-ai-urgency:hover {
    background: white;
    color: var(--bright-magenta);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

@keyframes aiCardPulse {
    0% {
        transform: translateY(-5px) scale(1);
        box-shadow: 0 20px 40px rgba(90, 95, 239, 0.4), 0 0 30px rgba(90, 95, 239, 0.2);
    }
    100% {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(90, 95, 239, 0.5), 0 0 40px rgba(90, 95, 239, 0.3);
    }
}

@keyframes aiCardShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes aiGlowPulse {
    0% {
        opacity: 0.6;
        filter: blur(15px);
    }
    100% {
        opacity: 0.8;
        filter: blur(20px);
    }
}

@keyframes aiIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes aiTitleGlow {
    0% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    100% {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@media (max-width: 768px) {
    .ai-urgency-card {
        padding: 2rem;
        margin: 2rem 0;
    }

    .ai-urgency-title {
        font-size: 1.2rem;
    }

    .ai-urgency-text {
        font-size: 0.95rem;
    }

    .ai-urgency-icon {
        font-size: 1.5rem;
        top: 10px;
        right: 15px;
    }
}

/* Enhanced Mobile Optimization */

/* Base mobile styles */
@media (max-width: 1024px) {
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Improved touch targets */
    .btn, .nav-link, .accordion-button {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* Better spacing */
    .section-padding {
        padding: 3rem 0;
    }
}

/* Tablet styles */
@media (max-width: 768px) {
    /* Hero section mobile optimization */
    header {
        padding: 6rem 0 8rem;
        border-radius: 0 0 40px 40px;
    }

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    header .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Navigation improvements */
    .navbar {
        padding: 1rem 0;
        border-radius: 0 0 20px 20px;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    /* Tool cards mobile optimization */
    .tool-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        border-radius: 20px;
    }

    .tool-card:hover {
        transform: translateY(-5px) scale(1.01);
        animation: none;
    }

    .tool-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .tool-icon i {
        font-size: 1.5rem;
    }

    /* Pricing cards mobile */
    .pricing-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .price .amount {
        font-size: 2.5rem;
    }

    /* Service cards mobile */
    .service-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    /* Section titles */
    h2.section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        text-align: center;
    }

    /* Stats section mobile */
    .stats-section {
        padding: 3rem 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Contact section mobile */
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form .form-control {
        padding: 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer mobile */
    footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    /* Mobile-specific utility classes */
    .text-center-mobile {
        text-align: center;
    }

    /* Analysis results mobile optimization */
    .analysis-results-container {
        padding: 1.5rem;
        margin: 1rem 0;
        border-radius: 15px;
    }

    .score-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .speed-metrics {
        flex-direction: column;
    }

    .metric {
        min-width: 100%;
    }

    .score-circle {
        width: 100px;
        height: 100px;
    }

    .score-number {
        font-size: 1.5rem;
    }

    .score-bar-container {
        max-width: 150px;
    }

    .score-bar {
        width: 80px;
    }

    /* Disable hover animations on mobile */
    .floating-element {
        animation: none;
    }
}

/* Mobile phone styles */
@media (max-width: 480px) {
    /* Container adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }

    /* Hero section phone optimization */
    header {
        padding: 4rem 0 6rem;
        border-radius: 0 0 30px 30px;
    }

    header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    header .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Hero tool mobile */
    .hero-tool {
        margin-bottom: 1.5rem;
    }

    .hero-tool .form-control {
        padding: 12px 20px;
        font-size: 16px;
    }

    .btn-hero-tool {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Navigation mobile */
    .navbar {
        padding: 0.75rem 0;
        border-radius: 0 0 15px 15px;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

    /* Cards mobile optimization */
    .tool-card, .service-card, .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 16px;
    }

    .tool-icon, .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .tool-icon i, .service-icon i {
        font-size: 1.3rem;
    }

    /* Typography mobile */
    h2.section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    /* Button improvements */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 25px;
    }

    .btn-tool {
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    /* Pricing mobile */
    .price .amount {
        font-size: 2rem;
    }

    .pricing-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    /* Stats mobile */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Contact form mobile */
    .contact-form {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .contact-form .form-control {
        margin-bottom: 1rem;
        font-size: 16px;
    }

    /* Footer mobile */
    footer {
        text-align: center;
    }

    .footer-areas li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }

    .footer-contact .contact-item {
        font-size: 0.9rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    /* Hide complex animations on mobile */
    .hero-particles {
        display: none;
    }

    /* Accordion mobile */
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* Floating CTA mobile */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-floating {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Analysis tools mobile */
    .tool-result {
        padding: 1rem;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    /* Improve touch experience */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    /* Better spacing for mobile */
    .mb-4 {
        margin-bottom: 2rem !important;
    }

    .mb-5 {
        margin-bottom: 2.5rem !important;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    header h1 {
        font-size: 1.6rem;
    }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .tool-card, .service-card, .pricing-card {
        padding: 1rem;
    }

    h2.section-title {
        font-size: 1.6rem;
    }

    /* Extra small FAQ adjustments */
    .accordion {
        margin-top: 1rem;
    }

    .accordion-item {
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 1rem 0.75rem;
        border-radius: 10px;
    }

    .accordion-button:not(.collapsed) {
        border-radius: 10px 10px 0 0;
    }

    .accordion-body {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
    }

    .accordion-collapse {
        border-radius: 0 0 10px 10px;
    }
}

/* Mobile-first utility classes */
.mobile-only {
    display: block;
}

.desktop-only {
    display: none;
}

@media (min-width: 769px) {
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: block;
    }
}

/* Enhanced mobile contact button */
.mobile-contact-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-gradient);
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-contact-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.mobile-contact-buttons .btn {
    flex: 1;
    max-width: 120px;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--midnight-black);
    border: none;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-contact-buttons .btn:hover {
    background: white;
    transform: translateY(-2px);
    color: var(--midnight-black);
}

@media (max-width: 768px) {
    .mobile-contact-bar {
        display: block;
    }

    /* Add bottom padding to body to account for fixed mobile bar */
    body {
        padding-bottom: 80px;
    }
}

/* Progressive Web App enhancements */
@media (display-mode: standalone) {
    /* Styles when app is installed as PWA */
    .navbar {
        padding-top: env(safe-area-inset-top);
    }

    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: calc(env(safe-area-inset-bottom) + 80px);
    }
}

/* Safe area adjustments for notched devices */
@supports (padding: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(1rem + env(safe-area-inset-top));
    }

    .mobile-contact-bar {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
}

/* Landscape phone optimization */
@media (max-width: 896px) and (orientation: landscape) {
    header {
        padding: 3rem 0 4rem;
    }

    header h1 {
        font-size: 2rem;
    }

    .hero-tool {
        max-width: 500px;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .tool-card:hover,
    .service-card:hover,
    .pricing-card:hover {
        transform: none;
        animation: none;
    }

    .btn:hover {
        transform: none;
    }

    /* Better touch targets */
    .nav-link {
        padding: 15px 20px;
    }

    .btn {
        min-height: 48px;
        min-width: 48px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--midnight-black) 0%, var(--midnight-black-light) 100%);
    padding: 3rem 0 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Chamber Badge Styling */
.chamber-badges img {
    max-width: 100%;
    height: auto;
    min-height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.chamber-badges img:hover {
    transform: scale(1.05);
}

.chamber-badges a {
    display: inline-block;
    margin: 5px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(90, 95, 239, 0.03) 0%, rgba(214, 66, 182, 0.03) 100%);
    pointer-events: none;
}

footer h5 {
    color: var(--bright-magenta);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

footer .footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', monospace;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

footer .footer-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-areas {
    list-style: none;
    padding: 0;
}

.footer-areas li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.footer-areas li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--bright-magenta);
    font-size: 0.7rem;
}

.footer-areas li:hover {
    color: var(--bright-magenta);
    transform: translateX(3px);
}

.footer-content {
    text-align: center;
}

footer .footer-contact .contact-item {
    color: var(--bright-magenta);
    font-size: 1rem;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

footer .footer-contact .contact-item:hover {
    background: rgba(214, 66, 182, 0.1);
    transform: translateX(5px);
}

footer .footer-contact .contact-item span {
    color: var(--bright-magenta);
    font-weight: 500;
}

footer .footer-contact .contact-item i {
    color: var(--bright-magenta);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

/* Founder Section Styles */
.founder-content-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(90, 95, 239, 0.15);
    border: 1px solid rgba(90, 95, 239, 0.1);
}

.founder-headshot {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-image-container:hover .founder-headshot {
    transform: scale(1.05);
}

.founder-image-container:hover .image-backdrop {
    filter: blur(25px);
    opacity: 0.8;
}

.founder-image-container:hover .image-frame {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(214, 66, 182, 0.6);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .founder-section {
        padding: 3rem 0 !important;
        margin: 2rem 0 !important;
    }

    .founder-content-box {
        padding: 2rem !important;
        margin: 1rem !important;
    }

    .founder-image-container {
        margin-bottom: 2rem !important;
        text-align: center;
    }

    .founder-image-container .image-frame {
        display: inline-block;
        margin: 0 auto;
    }

    .founder-image-container .image-frame img {
        width: 200px !important;
        height: 200px !important;
        transform: scale(1.2) !important;
    }

    .founder-image-container .image-backdrop {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .founder-content-box h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }

    .founder-content-box p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }

    .founder-stats {
        margin-top: 2rem !important;
        text-align: center;
    }

    .founder-stats .row {
        margin: 0 !important;
    }

    .founder-stats .col-4 {
        padding: 0.5rem !important;
        margin-bottom: 1rem;
    }

    .founder-stats .col-4 h4 {
        font-size: 1.2rem !important;
        margin-bottom: 0.25rem !important;
    }

    .founder-stats .col-4 small {
        font-size: 0.85rem !important;
        display: block;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .founder-section {
        padding: 2rem 0 !important;
        margin: 1rem 0 !important;
    }

    .founder-content-box {
        padding: 1.5rem !important;
        margin: 0.5rem !important;
        border-radius: 20px !important;
    }

    .founder-image-container .image-frame img {
        width: 180px !important;
        height: 180px !important;
        transform: scale(1.1) !important;
    }

    .founder-content-box h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .founder-content-box p {
        font-size: 0.95rem !important;
        margin-bottom: 1.25rem !important;
    }

    .founder-stats .col-4 {
        padding: 0.25rem !important;
        margin-bottom: 0.75rem;
    }

    .founder-stats .col-4 h4 {
        font-size: 1.1rem !important;
    }

    .founder-stats .col-4 small {
        font-size: 0.8rem !important;
    }

    /* Fix any potential row overflow */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

.founder-content-box h2 {
    color: var(--cloud-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.founder-section h2.section-title {
    color: var(--cloud-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.founder-content-box p {
    color: #4a5568 !important;
    text-shadow: none !important;
}

/* Enhanced Founder Section Styles */
.founder-image-container {
    position: relative;
    display: inline-block;
    z-index: 10;
}

.founder-image-container .image-backdrop {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.founder-image-container .image-frame {
    position: relative;
    z-index: 2;
    background: var(--accent-gradient);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(214, 66, 182, 0.4);
    transition: all 0.3s ease;
}

.founder-image-container .image-frame img {
    width: 300px !important;
    height: 300px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.4);
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: block;
}

.founder-headshot {
    width: 300px !important;
    height: 300px !important;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.4);
    border: 4px solid white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

/* Additional mobile layout fixes */
@media (max-width: 768px) {
    .founder-section .row {
        flex-direction: column-reverse;
    }

    .founder-section .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 15px !important;
    }

    .founder-section .text-center {
        margin-bottom: 2rem !important;
    }

    /* Ensure no overflow */
    .founder-section {
        overflow-x: hidden !important;
    }

    .founder-content-box {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .founder-section .container {
        max-width: 100% !important;
        padding: 0 10px !important;
    }

    .founder-image-container {
        overflow: hidden !important;
    }

    .founder-image-container .image-frame {
        max-width: 100% !important;
    }
}

/* Our Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #F8F9FF 0%, #F1F3FE 100%);
}

/* Force center the services title with brute force CSS */
.services-section .container,
.services-section .text-center,
section#services .container,
section#services .text-center {
    text-align: center !important;
}

/* Nuclear option - force center everything in services section */
.services-section h2,
.services-section .section-title,
#services-main-title,
section#services h2,
.services-section .container h2,
.services-section .text-center h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    position: static !important;
    transform: none !important;
}

/* Remove any conflicting styles */
.services-section * {
    text-align: inherit !important;
}

.services-section h2 * {
    text-align: center !important;
}