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

/* Responsive font sizing for consistent appearance across devices */
html {
    font-size: 16px; /* Base font size */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Ensure consistent scaling for different screen types */
@media screen and (min-width: 1920px) {
    html {
        font-size: 18px; /* Larger for high-resolution desktop monitors */
    }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
    html {
        font-size: 17px; /* Standard desktop monitors */
    }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
    html {
        font-size: 16px; /* Laptop screens */
    }
}

@media screen and (max-width: 1199px) {
    html {
        font-size: 15px; /* Smaller laptops and tablets */
    }
}

/* Better font rendering and consistent scaling */
body {
    font-size: var(--font-size-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Ensure consistent scaling across zoom levels handled by viewport meta tag */
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: var(--transition-theme);
}

/* Additional scaling fixes for different screen densities */
@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    html {
        font-size: calc(16px * 0.9); /* Slightly smaller on high DPI displays */
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    html {
        font-size: calc(16px * 0.85); /* Even smaller on retina displays */
    }
}

:root {
    /* Color Palette - Matched to Header Design */
    --light-blue: #76C7F0;      /* Header accent blue */
    --light-orange: #F9A65B;    /* Header accent orange */
    --orange-red: #F98A5D;      /* Header primary orange */
    --pink-red: #FF6B9D;        /* Header accent pink */
    
    /* Legacy color aliases for compatibility */
    --sky-blue: #76C7F0;        /* Same as light-blue */
    --warm-yellow: #F9A65B;     /* Same as light-orange */
    --soft-orange: #F98A5D;     /* Same as orange-red */
    --orange: #F98A5D;          /* Same as orange-red */
    --coral-pink: #FF6B9D;      /* Same as pink-red */
    
    --white: #FFFFFF;           /* Clean base color */
    --dark-text: #212529;       /* Dark text for light theme */
    --light-text: #6C757D;      /* Secondary dark text */
    --bg-light: #F8F9FA;        /* Light background */
    --bg-darker: #E9ECEF;       /* Lighter background */
    
    /* Theme-aware colors - Light Theme Default */
    --bg-primary: #FFFFFF;      /* Main light background */
    --bg-secondary: #F8F9FA;    /* Secondary light background */
    --bg-tertiary: #E9ECEF;     /* Tertiary light background */
    --text-primary: #212529;    /* Primary dark text */
    --text-secondary: #4B5563;  /* Secondary dark text */
    --card-bg: #FFFFFF;         /* Light card background */
    --border-color: #DEE2E6;    /* Light border color */
    --shadow-color: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --input-bg: #FFFFFF;
    --input-border: #CED4DA;
    --overlay-bg: rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Transitions */
    --transition-theme: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    
    /* Responsive Spacing */
    --container-max-width: min(1200px, 90vw);
    --section-padding: clamp(60px, 8vw, 100px) 0;
    --element-spacing: clamp(1rem, 3vw, 2rem);
    
    /* Responsive Typography Scale */
    --font-size-hero: clamp(2.5rem, 5vw, 4rem);
    --font-size-h1: clamp(2rem, 4vw, 2.8rem);
    --font-size-h2: clamp(1.5rem, 3vw, 2.2rem);
    --font-size-body: clamp(0.9rem, 2vw, 1.1rem);
}

/* Dark Theme Colors */
[data-theme="dark"] {
    /* Dark theme color overrides */
    --bg-primary: #0F1419;
    --bg-secondary: #1A1F2E;
    --bg-tertiary: #252A3A;
    --text-primary: #E5E7EB;
    --text-secondary: #6B7280;
    --card-bg: #1E293B;
    --border-color: #374151;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --nav-bg: rgba(15, 20, 25, 0.95);
    --input-bg: #1E293B;
    --input-border: #374151;
    --overlay-bg: rgba(0, 0, 0, 0.7);
    --bg-light: #1A1F2E;
    --bg-darker: #252A3A;
    --dark-text: #E5E7EB;
    --light-text: #9CA3AF;
    
    /* Adjust brand colors for dark theme */
    --light-blue: #76C7F0;
    --light-orange: #F9A65B;
    --orange-red: #F98A5D;
    --pink-red: #FF6B9D;
    --sky-blue: #76C7F0;
    --warm-yellow: #F9A65B;
    --soft-orange: #F98A5D;
    --orange: #F98A5D;
    --coral-pink: #FF6B9D;
}

/* Light Theme Colors */
[data-theme="light"] {
    /* Light theme color overrides */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #E9ECEF;
    --text-primary: #212529;
    --text-secondary: #4B5563;
    --card-bg: #FFFFFF;
    --border-color: #DEE2E6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --input-bg: #FFFFFF;
    --input-border: #CED4DA;
    --overlay-bg: rgba(0, 0, 0, 0.5);
    --bg-light: #F8F9FA;
    --bg-darker: #E9ECEF;
    --dark-text: #212529;
    --light-text: #6C757D;
    
    /* Adjust brand colors for light theme */
    --light-blue: #76C7F0;
    --light-orange: #F9A65B;
    --orange-red: #F98A5D;
    --pink-red: #FF6B9D;
    --sky-blue: #76C7F0;
    --warm-yellow: #F9A65B;
    --soft-orange: #F98A5D;
    --orange: #F98A5D;
    --coral-pink: #FF6B9D;
}

html {
    scroll-behavior: smooth;
}



.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(249, 138, 93, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 138, 93, 0.4);
}

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

.cta-btn.secondary:hover {
    background: var(--sky-blue);
    color: var(--white);
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 8px 25px rgba(93, 173, 226, 0.3);
}

.cta-btn.large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

/* ===== PRELOADER STYLES ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 50%, #34495e 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.preloader-content {
    text-align: center;
    position: relative;
    animation: preloaderFloat 3s ease-in-out infinite;
}

/* Logo Container */
.logo-container {
    position: relative;
    margin-bottom: 3rem;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    animation: logoSpin 4s linear infinite, logoPulse 2s ease-in-out infinite alternate;
    box-shadow: 0 0 40px rgba(118, 199, 240, 0.6), 0 0 80px rgba(249, 138, 93, 0.4);
    border: 4px solid transparent;
    background: linear-gradient(45deg, var(--sky-blue), var(--orange)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(118, 199, 240, 0.3) 0%, rgba(249, 138, 93, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite alternate, glowRotate 8s linear infinite;
    z-index: 1;
}

/* Company Name Animation */
.company-name {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.word {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: wordReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.word-1 {
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.2s;
}

.word-2 {
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
}

.word-3 {
    background: linear-gradient(135deg, var(--coral-pink), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.6s;
}

/* Loading Animation */
.loading-animation {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, 
        var(--light-blue) 0%, 
        var(--warm-yellow) 25%, 
        var(--orange) 50%, 
        var(--coral-pink) 75%, 
        var(--light-blue) 100%);
    border-radius: 10px;
    position: relative;
    animation: loadingProgress 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    box-shadow: 0 0 20px rgba(118, 199, 240, 0.6);
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 1.5s linear infinite;
}

.loading-text {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
}

.loading-dots {
    position: relative;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s linear infinite;
}

/* Floating Particles */
.preloader-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sky-blue);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px currentColor;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    background: var(--sky-blue);
    animation: particleFloat 6s linear infinite, particleFade 3s ease-in-out infinite;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    left: 80%;
    background: var(--warm-yellow);
    animation: particleFloat 7s linear infinite reverse, particleFade 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 15%;
    background: var(--orange);
    animation: particleFloat 8s linear infinite, particleFade 4s ease-in-out infinite;
    animation-delay: 1s;
}

.particle:nth-child(4) {
    top: 70%;
    left: 85%;
    background: var(--coral-pink);
    animation: particleFloat 5s linear infinite reverse, particleFade 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 50%;
    background: var(--sky-blue);
    animation: particleFloat 9s linear infinite, particleFade 2s ease-in-out infinite;
    animation-delay: 2s;
}

.particle:nth-child(6) {
    top: 80%;
    left: 30%;
    background: var(--warm-yellow);
    animation: particleFloat 6.5s linear infinite reverse, particleFade 3.8s ease-in-out infinite;
    animation-delay: 2.5s;
}

.particle:nth-child(7) {
    top: 40%;
    left: 70%;
    background: var(--orange);
    animation: particleFloat 7.5s linear infinite, particleFade 2.8s ease-in-out infinite;
    animation-delay: 3s;
}

.particle:nth-child(8) {
    top: 25%;
    left: 40%;
    background: var(--coral-pink);
    animation: particleFloat 8.5s linear infinite reverse, particleFade 4.2s ease-in-out infinite;
    animation-delay: 3.5s;
}

/* Preloader Animations */
@keyframes preloaderFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes logoPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(118, 199, 240, 0.6), 0 0 80px rgba(249, 138, 93, 0.4);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(118, 199, 240, 0.8), 0 0 120px rgba(249, 138, 93, 0.6);
    }
}

@keyframes glowPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes glowRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

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

@keyframes dots {
    0%, 20% {
        content: '';
    }
    40% {
        content: '.';
    }
    60% {
        content: '..';
    }
    80%, 100% {
        content: '...';
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) translateX(-15px) rotate(240deg);
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
    }
}

@keyframes particleFade {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--coral-pink), var(--light-blue));
    z-index: 10001;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(249, 138, 93, 0.3);
}

.scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s linear infinite;
}

/* ===== ENHANCED ANIMATION SYSTEM ===== */

/* Reveal Animation for Scroll-Triggered Elements */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation for Multiple Elements */
.reveal-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger:nth-child(6) { transition-delay: 0.6s; }

/* Typewriter Animation */
.typewriter {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.05em;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--orange); }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Bounce Animation */
.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Shake Animation for Errors */
.shake {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }
    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(249, 138, 93, 0.5);
    transition: box-shadow 0.3s ease-in-out;
}

.glow:hover {
    box-shadow: 0 0 30px rgba(249, 138, 93, 0.8), 0 0 40px rgba(249, 138, 93, 0.4);
}

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

.floating {
    animation: float 3s ease-in-out infinite;
}

.floating:nth-child(2) { animation-delay: 0.5s; }
.floating:nth-child(3) { animation-delay: 1s; }
.floating:nth-child(4) { animation-delay: 1.5s; }

/* ===== COMPREHENSIVE DEVICE OPTIMIZATION ===== */

/* High-DPI Displays (Retina, 4K) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .preloader-logo {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .word {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Ultra-Wide Screens (21:9, 32:9) */
@media (min-width: 2560px) {
    .preloader-content {
        transform: scale(1.2);
    }
    
    .word {
        font-size: 3rem;
    }
    
    .preloader-logo {
        width: 140px;
        height: 140px;
    }
    
    .loading-bar {
        width: 400px;
    }
}

/* Large Desktop (1440px - 2559px) */
@media (min-width: 1440px) and (max-width: 2559px) {
    .word {
        font-size: 2.8rem;
    }
    
    .preloader-logo {
        width: 130px;
        height: 130px;
    }
    
    .logo-glow {
        width: 200px;
        height: 200px;
    }
    
    .loading-bar {
        width: 350px;
    }
}

/* Standard Desktop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .word {
        font-size: 2.5rem;
    }
    
    .preloader-logo {
        width: 120px;
        height: 120px;
    }
    
    .loading-bar {
        width: 300px;
    }
}

/* Tablet Landscape (769px - 1023px) */
@media (min-width: 769px) and (max-width: 1023px) {
    .preloader-content {
        padding: 0 2rem;
    }
    
    .word {
        font-size: 2.2rem;
    }
    
    .company-name {
        gap: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .preloader-logo {
        width: 110px;
        height: 110px;
    }
    
    .logo-glow {
        width: 170px;
        height: 170px;
    }
    
    .loading-bar {
        width: 280px;
    }
    
    /* Optimize particle animations for tablets */
    .particle {
        animation-duration: 8s, 4s !important;
    }
}

/* Tablet Portrait (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .preloader-content {
        padding: 0 1.5rem;
        transform: scale(0.95);
    }
    
    .word {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .company-name {
        flex-direction: column;
        gap: 0.3rem;
        align-items: center;
    }
    
    .preloader-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    
    .logo-glow {
        width: 150px;
        height: 150px;
    }
    
    .loading-bar {
        width: 250px;
        height: 5px;
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    /* Reduce particle count for better performance */
    .particle:nth-child(n+6) {
        display: none;
    }
}

/* Mobile Landscape (481px - 576px) */
@media (min-width: 481px) and (max-width: 576px) {
    .preloader-content {
        transform: scale(0.9);
        padding: 0 1rem;
    }
    
    .word {
        font-size: 1.8rem;
        font-weight: var(--font-weight-bold);
    }
    
    .company-name {
        flex-direction: column;
        gap: 0.2rem;
    }
    
    .preloader-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 1.2rem;
    }
    
    .logo-glow {
        width: 135px;
        height: 135px;
    }
    
    .loading-bar {
        width: 220px;
        height: 4px;
    }
    
    .loading-animation {
        margin-bottom: 1.5rem;
    }
    
    /* Simplify animations for mobile landscape */
    .preloader-logo {
        animation: logoSpin 6s linear infinite, logoPulse 3s ease-in-out infinite alternate;
    }
}

/* Mobile Portrait (321px - 480px) */
@media (min-width: 321px) and (max-width: 480px) {
    .preloader-content {
        transform: scale(0.85);
        padding: 0 1rem;
    }
    
    .word {
        font-size: 1.6rem;
        font-weight: var(--font-weight-extrabold);
        letter-spacing: -1px;
    }
    
    .company-name {
        flex-direction: column;
        gap: 0.1rem;
        margin-bottom: 1.5rem;
    }
    
    .preloader-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .logo-glow {
        width: 120px;
        height: 120px;
    }
    
    .loading-bar {
        width: 200px;
        height: 4px;
    }
    
    .loading-text {
        font-size: 0.95rem;
    }
    
    /* Show only 4 particles for better performance */
    .particle:nth-child(n+5) {
        display: none;
    }
    
    /* Optimize animations */
    .preloader-logo {
        animation: logoSpin 8s linear infinite, logoPulse 4s ease-in-out infinite alternate;
    }
    
    .particle {
        animation-duration: 10s, 5s !important;
    }
}

/* Small Mobile (280px - 320px) */
@media (max-width: 320px) {
    .preloader-content {
        transform: scale(0.75);
        padding: 0 0.5rem;
    }
    
    .word {
        font-size: 1.4rem;
        font-weight: var(--font-weight-extrabold);
        letter-spacing: -1px;
    }
    
    .company-name {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1rem;
    }
    
    .preloader-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 0.8rem;
    }
    
    .logo-glow {
        width: 105px;
        height: 105px;
    }
    
    .loading-bar {
        width: 180px;
        height: 3px;
    }
    
    .loading-text {
        font-size: 0.9rem;
    }
    
    .loading-animation {
        margin-bottom: 1rem;
    }
    
    /* Minimal particles for very small screens */
    .particle:nth-child(n+4) {
        display: none;
    }
    
    /* Simplified animations */
    .preloader-logo {
        animation: logoSpin 10s linear infinite;
    }
    
    .logo-glow {
        animation: glowPulse 3s ease-in-out infinite alternate;
    }
}

/* Landscape Orientation Optimizations */
@media (orientation: landscape) and (max-height: 500px) {
    .preloader-content {
        transform: scale(0.8);
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        max-width: 90vw;
    }
    
    .logo-container {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .company-name {
        margin-bottom: 1rem;
    }
    
    .loading-animation {
        margin-bottom: 0;
    }
    
    .word {
        font-size: 1.5rem;
    }
    
    .preloader-logo {
        width: 80px;
        height: 80px;
    }
    
    .loading-bar {
        width: 200px;
    }
}

/* Touch Device Optimizations */
@media (pointer: coarse) {
    .preloader-content {
        -webkit-tap-highlight-color: transparent;
        touch-action: none;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .preloader-logo,
    .word,
    .particle {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
        will-change: transform;
    }
}

/* Performance Optimizations for Low-End Devices */
@media (prefers-reduced-motion: reduce) {
    .preloader-logo {
        animation: logoPulse 4s ease-in-out infinite alternate;
    }
    
    .particle {
        animation: particleFade 6s ease-in-out infinite;
    }
    
    .logo-glow {
        animation: none;
    }
    
    .loading-progress::after {
        animation: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    #preloader {
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2c2c2c 100%);
    }
}

/* Hover Device Optimizations */
@media (hover: hover) {
    .preloader-content:hover {
        transform: scale(1.02);
        transition: transform 0.3s ease;
    }
}

/* Print Styles (Hide Preloader) */
@media print {
    #preloader {
        display: none !important;
    }
}

/* Navigation - Animated & Eye-catching */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(118, 199, 240, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.navbar:hover::before {
    opacity: 1;
}

.navbar.transparent {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(1.8);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.solid {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 16px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateY(0);
}

.navbar.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
}

.navbar.hide {
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo .logo {
    height: 45px;
    width: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.nav-logo:hover .logo {
    transform: rotate(5deg) scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(118, 199, 240, 0.3));
}

.nav-logo .logo-text {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--orange) 50%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
}

.nav-logo:hover .logo-text {
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral-pink) 50%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--orange);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 138, 93, 0.3);
}

.nav-link.active {
    color: var(--orange);
    background: rgba(249, 138, 93, 0.15);
    box-shadow: 0 2px 8px rgba(249, 138, 93, 0.2);
}

.nav-cta {
    margin-left: 1.5rem;
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral-pink) 100%) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: var(--font-weight-semibold) !important;
    box-shadow: 0 4px 15px rgba(249, 138, 93, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::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.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: scale(1.08) translateY(-3px);
    background: linear-gradient(135deg, var(--coral-pink) 0%, var(--orange) 100%) !important;
    box-shadow: 0 12px 30px rgba(249, 138, 93, 0.5), 0 0 20px rgba(237, 85, 101, 0.3);
    filter: brightness(1.1);
}

.nav-cta:active {
    transform: scale(1.02) translateY(-1px);
    transition: all 0.1s ease;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.nav-hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, var(--dark-text) 0%, var(--orange) 100%);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-hamburger:hover span {
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral-pink) 100%);
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    display: block;
    padding: 15px 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: none;
    border-radius: 0;
}

.mobile-menu .nav-link:hover {
    color: var(--orange);
    background: rgba(249, 138, 93, 0.1);
    transform: translateX(10px);
    border-radius: 8px;
    padding-left: 15px;
}

.mobile-menu .nav-cta {
    margin: 30px 0 0 0 !important;
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 15px 24px !important;
}

/* Hero Section */
.hero {
    padding: clamp(100px, 15vh, 140px) 0 clamp(60px, 10vh, 100px);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(93, 173, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    text-align: left;
    max-width: 100%;
    position: relative;
    z-index: 2;
    padding: clamp(1rem, 3vw, 2rem) 0;
}

.hero-title {
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--text-primary);
    text-align: left;
    max-width: 90%;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 95%;
    text-align: left;
}

.hero-stats {
    display: flex;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
    flex-wrap: wrap;
    align-items: flex-start;
}

.stat {
    text-align: left;
    min-width: 120px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--orange);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    flex-wrap: wrap;
    align-items: center;
    margin-top: clamp(1rem, 3vw, 1.5rem);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.hero-card i {
    font-size: 1.5rem;
    color: var(--orange);
}

.hero-card span {
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.hero-card.card-1 {
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    color: white;
    animation-delay: 0s;
}

.hero-card.card-1 i,
.hero-card.card-1 span {
    color: white;
}

.hero-card.card-2 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: white;
    animation-delay: -2s;
}

.hero-card.card-2 i,
.hero-card.card-2 span {
    color: white;
}

.hero-card.card-3 {
    bottom: 0;
    right: 20%;
    background: linear-gradient(135deg, var(--warm-yellow), var(--light-blue));
    color: white;
    animation-delay: -4s;
}

.hero-card.card-3 i,
.hero-card.card-3 span {
    color: white;
}

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

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.highlight-text {
    color: var(--sky-blue);
    font-weight: var(--font-weight-bold);
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-orange));
    border-radius: 2px;
}

.section-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: var(--font-size-body);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Overview */
.services-overview {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
}

/* See More Services Button */
.services-more-section {
    text-align: center;
    margin-top: clamp(3rem, 6vw, 4rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--border-color);
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more-btn:hover {
    transform: translateY(-3px);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

/* What We Bring Section */
.what-we-bring {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.what-we-bring::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--sky-blue), transparent);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-color);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--shadow-color);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Force consistent animations for all service cards */
.services-overview .service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.services-overview .service-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 50px var(--shadow-color) !important;
}

.services-overview .service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg) !important;
}

.services-overview .service-card:hover .service-icon::before {
    opacity: 1 !important;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    /* Ensure all cards start visible */
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange), var(--coral-pink));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--sky-blue);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.service-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-orange));
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: calc(100% - 1.5rem);
}

.service-link:hover {
    color: var(--soft-orange);
    transform: translateX(5px);
}

/* Results Section */
.results {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(93, 173, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.results-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.results-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.highlight-item i {
    color: var(--orange);
    font-size: 1.2rem;
}

.results-visual {
    display: grid;
    gap: 1.5rem;
}

.result-metric {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px var(--shadow-color);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.result-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px var(--shadow-color);
}

.result-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-orange));
    border-radius: 0 0 10px 10px;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--shadow-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--sky-blue);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: var(--warm-yellow);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
}

.author-name {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-text), #34495e);
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cta-guarantee i {
    color: var(--warm-yellow);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 35px;
    width: auto;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-item i {
    color: var(--orange);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* Page Header */
.page-header {
    padding: clamp(100px, 15vh, 140px) 0 clamp(60px, 10vh, 100px);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(93, 173, 226, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    background: rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.page-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-title .highlight {
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.page-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sky-blue), var(--soft-orange));
    border-radius: 2px;
    opacity: 0.7;
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: var(--font-weight-regular);
}

/* Service Detail Sections */
.service-detail {
    padding: 80px 0;
    background: var(--bg-primary);
}

.service-detail.alternate {
    background: var(--bg-secondary);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-item i {
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(93, 173, 226, 0.3);
    transition: all 0.3s ease;
}

.service-icon-large:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(93, 173, 226, 0.4);
}

.service-icon-large i {
    font-size: 3rem;
    color: var(--white);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--bg-tertiary);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px var(--shadow-color);
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--white);
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--orange);
}

.step-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Our Proven Process Section */
.proven-process-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.process-steps-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
}

.process-step-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-color);
}

.process-step-box .step-number {
    position: static;
    transform: none;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.process-step-box .step-content {
    flex: 1;
}

.process-step-box .step-content p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive design for process steps */
@media (max-width: 768px) {
    .process-step-box {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    
    .process-step-box .step-number {
        align-self: flex-start;
    }
    
    .process-step-box .step-content p {
        font-size: 0.9rem;
    }
}

/* Optimized Custom Cursor Animations */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--orange-red), var(--pink-red));
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(249, 138, 93, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--pink-red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.5;
    transition: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px rgba(255, 107, 157, 0.3);
}

.cursor-trail:nth-child(2) {
    background: var(--light-orange);
    box-shadow: 0 0 8px rgba(249, 166, 91, 0.3);
}

.cursor-trail:nth-child(3) {
    background: var(--light-blue);
    box-shadow: 0 0 8px rgba(118, 199, 240, 0.3);
}

/* Optimized Cursor hover effects */
.cursor-hover {
    transform: translate(-50%, -50%) scale(1.8);
    background: linear-gradient(135deg, var(--pink-red), var(--orange-red));
    mix-blend-mode: normal;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Optimized Cursor click animation */
.cursor-click {
    transform: translate(-50%, -50%) scale(0.5);
    background: linear-gradient(135deg, var(--orange-red), var(--light-orange));
    box-shadow: 0 0 25px rgba(249, 138, 93, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Simplified cursor effects */
.cursor-magnetic {
    transform: translate(-50%, -50%) scale(1.2);
    background: linear-gradient(135deg, var(--light-blue), var(--pink-red));
    box-shadow: 0 0 20px rgba(118, 199, 240, 0.4);
}

.cursor-text {
    transform: translate(-50%, -50%) scale(1.5);
    background: linear-gradient(135deg, var(--light-orange), var(--orange-red));
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(249, 166, 91, 0.4);
}

/* Simplified cursor effects */
.cursor-glow {
    box-shadow: 0 0 25px rgba(249, 138, 93, 0.6);
}

/* Cursor particle effect */
.cursor-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--pink-red);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 1s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(var(--particle-x, 20px), var(--particle-y, -20px)) scale(0);
        opacity: 0;
    }
}

/* Cursor ripple effect */
.cursor-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--orange-red);
    border-radius: 50%;
    animation: rippleExpand 0.6s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Interactive elements cursor effects */
a:hover,
button:hover,
.cta-btn:hover,
.nav-link:hover,
.social-link:hover,
.footer-links a:hover {
    cursor: none;
}

/* Enhanced Cursor trail for interactive elements */
a:hover ~ .cursor-trail,
button:hover ~ .cursor-trail,
.cta-btn:hover ~ .cursor-trail,
.nav-link:hover ~ .cursor-trail,
.social-link:hover ~ .cursor-trail {
    transform: translate(-50%, -50%) scale(2);
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.6);
}

/* Cursor trail animation for different elements */
.service-card:hover ~ .cursor-trail {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.8;
    animation: trailBounce 0.6s ease;
}

.testimonial-card:hover ~ .cursor-trail {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0.9;
    animation: trailSpin 0.8s ease;
}

.pricing-card:hover ~ .cursor-trail {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0.85;
    animation: trailPulse 0.7s ease;
}

/* Cursor trail animations */
@keyframes trailBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1.8); }
    50% { transform: translate(-50%, -50%) scale(2.2); }
}

@keyframes trailSpin {
    0% { transform: translate(-50%, -50%) scale(1.6) rotate(0deg); }
    100% { transform: translate(-50%, -50%) scale(1.6) rotate(360deg); }
}

@keyframes trailPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1.7); opacity: 0.85; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 1; }
}

/* Smooth cursor movement */
* {
    cursor: none;
}

/* Cursor effects for different element types */
input:hover ~ .custom-cursor,
textarea:hover ~ .custom-cursor,
select:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.3);
    background: linear-gradient(135deg, var(--light-blue), var(--orange-red));
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(118, 199, 240, 0.6);
}

/* Cursor effect for draggable elements */
[draggable="true"]:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.4);
    background: linear-gradient(135deg, var(--pink-red), var(--light-orange));
    box-shadow: 0 0 30px rgba(255, 107, 157, 0.7);
}

/* Cursor effect for images */
img:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.6);
    background: linear-gradient(135deg, var(--light-orange), var(--pink-red));
    border-radius: 8px;
    box-shadow: 0 0 35px rgba(249, 166, 91, 0.6);
}

/* Cursor effect for links */
a:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.8);
    background: linear-gradient(135deg, var(--orange-red), var(--light-blue));
    box-shadow: 0 0 40px rgba(249, 138, 93, 0.7);
}

/* Cursor effect for buttons */
button:hover ~ .custom-cursor,
.cta-btn:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(2);
    background: linear-gradient(135deg, var(--pink-red), var(--orange-red));
    box-shadow: 0 0 45px rgba(255, 107, 157, 0.8);
}

/* Cursor effect for cards */
.service-card:hover ~ .custom-cursor,
.testimonial-card:hover ~ .custom-cursor,
.pricing-card:hover ~ .custom-cursor,
.blog-card:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
    background: linear-gradient(135deg, var(--light-blue), var(--pink-red));
    box-shadow: 0 0 30px rgba(118, 199, 240, 0.6);
}

/* Cursor effect for navigation */
.nav-link:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.7);
    background: linear-gradient(135deg, var(--orange-red), var(--light-orange));
    box-shadow: 0 0 35px rgba(249, 138, 93, 0.7);
}

/* Cursor effect for social links */
.social-link:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1.9);
    background: linear-gradient(135deg, var(--pink-red), var(--light-blue));
    box-shadow: 0 0 40px rgba(255, 107, 157, 0.8);
}

/* Show default cursor for mobile/touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .cursor-trail {
        display: none;
    }
    
    * {
        cursor: auto;
    }
    
    /* Disable complex animations on mobile for better performance */
    .hero-card {
        animation: none;
    }
    
    .particle {
        display: none;
    }
    
    /* Simplify preloader for mobile */
    .preloader-logo {
        animation: logoPulse 3s ease-in-out infinite alternate;
    }
    
    .logo-glow {
        display: none;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Positioned on the left as requested */
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--coral-pink) 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(249, 138, 93, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, var(--coral-pink) 0%, var(--orange) 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(249, 138, 93, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 30px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(249, 138, 93, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(249, 138, 93, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(249, 138, 93, 0.3);
    }
}

/* Responsive design for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px; /* Keep on left for mobile */
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 25px;
    }
}

/* Navigation Active State */
.nav-link.active {
    color: var(--orange);
    font-weight: var(--font-weight-semibold);
}

/* Mobile Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    width: 100%;
    height: 3px;
    background: var(--dark-text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Touch Improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-btn:hover,
    .nav-link:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .pricing-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .cta-btn:active,
    .nav-link:active {
        transform: scale(0.98);
    }
    
    .service-card:active,
    .testimonial-card:active,
    .pricing-card:active {
        transform: scale(0.99);
    }
}

/* Contact Page Styles */
.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.form-header {
    margin-bottom: 2rem;
}

/* Mobile Form Improvements */
@media (max-width: 767px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 12px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 1rem;
        border-radius: 12px;
    }
}

.form-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(118, 199, 240, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.form-guarantee i {
    color: var(--warm-yellow);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.method-info h4 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.method-info p {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.25rem;
}

.method-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item i {
    color: var(--orange);
    font-size: 1.1rem;
    width: 20px;
}

.benefit-item span {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateX(5px);
}

.social-link-large i {
    font-size: 1.1rem;
    width: 20px;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Page Styles */
.pricing-toggle-section {
    padding: 40px 0;
    background: var(--white);
    text-align: center;
}

.pricing-toggle {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid #e9ecef;
}

.toggle-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
    font-size: 1rem;
    padding: 0 0.5rem;
}

.discount-badge {
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-slider {
    background: var(--orange);
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

/* Pricing Plans */
.pricing-plans {
    padding: 60px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: var(--orange);
    transform: scale(1.05);
    position: relative;
    z-index: 10;
    animation: heroGlow 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(249, 138, 93, 0.3), 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Hero Glow Animation for Growth Plan */
@keyframes heroGlow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(249, 138, 93, 0.3), 0 20px 60px rgba(0, 0, 0, 0.15);
        transform: scale(1.05) translateY(0);
    }
    50% {
        box-shadow: 0 0 60px rgba(249, 138, 93, 0.5), 0 25px 80px rgba(0, 0, 0, 0.2);
        transform: scale(1.05) translateY(-8px);
    }
}

/* Minimal floating for Starter and Enterprise plans */
.pricing-card:not(.popular) {
    animation: minimalFloat 6s ease-in-out infinite;
}

.pricing-card:not(.popular):nth-child(1) {
    animation-delay: 0s;
}

.pricing-card:not(.popular):nth-child(3) {
    animation-delay: 2s;
}

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

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(249, 138, 93, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 20px rgba(249, 138, 93, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 6px 25px rgba(249, 138, 93, 0.6);
    }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.price-amount {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    margin: 0 0.25rem;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

.annual-savings {
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    text-align: center;
    margin-top: 0.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.plan-cta {
    width: 100%;
    justify-content: center;
}

/* Enhanced CTA for Growth Plan */
.pricing-card.popular .plan-cta {
    background: linear-gradient(135deg, var(--orange-red), var(--pink-red));
    border: none;
    box-shadow: 0 8px 25px rgba(249, 138, 93, 0.4);
    animation: ctaGlow 2s ease-in-out infinite;
}

/* Dark mode text color fixes */
[data-theme="dark"] .pricing-card {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .plan-name,
[data-theme="dark"] .price-amount,
[data-theme="dark"] .currency {
    color: var(--text-primary);
}

[data-theme="dark"] .plan-description,
[data-theme="dark"] .price-period {
    color: var(--text-secondary);
}

[data-theme="dark"] .feature-item span {
    color: var(--text-primary);
}

[data-theme="dark"] .pricing-toggle {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .toggle-label {
    color: var(--text-primary);
}

/* Dark mode fixes for Compare All Features section */
[data-theme="dark"] .features-comparison {
    background: var(--card-bg);
}

[data-theme="dark"] .comparison-table {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .table-header {
    background: var(--bg-darker);
    color: var(--text-primary);
}

[data-theme="dark"] .feature-column,
[data-theme="dark"] .plan-column {
    color: var(--text-primary);
}

[data-theme="dark"] .table-row {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .feature-name {
    color: var(--text-primary);
}

[data-theme="dark"] .feature-value {
    color: var(--text-primary);
}

[data-theme="dark"] .feature-value i.fa-check {
    color: var(--orange);
}

[data-theme="dark"] .feature-value i.fa-times {
    color: #666;
}

/* Dark mode fixes for Guarantee section */
[data-theme="dark"] .guarantee-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-darker) 100%);
}

[data-theme="dark"] .guarantee-title {
    color: var(--text-primary);
}

[data-theme="dark"] .guarantee-description {
    color: var(--text-primary);
}

[data-theme="dark"] .guarantee-item {
    color: var(--text-primary);
}

[data-theme="dark"] .guarantee-item i {
    color: var(--orange);
}

/* Dark mode fixes for Testimonials section */
[data-theme="dark"] .testimonials {
    background: var(--card-bg);
}

[data-theme="dark"] .testimonials .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .testimonials .section-subtitle {
    color: var(--text-primary);
}

[data-theme="dark"] .testimonial-card {
    background: var(--bg-darker);
    border-color: var(--border-color);
}

[data-theme="dark"] .testimonial-text {
    color: var(--text-primary);
}

[data-theme="dark"] .author-name {
    color: var(--text-primary);
}

[data-theme="dark"] .author-role {
    color: var(--text-primary);
}

/* Dark mode fixes for About page */
[data-theme="dark"] .our-story {
    background: var(--card-bg);
}

[data-theme="dark"] .story-description {
    color: var(--text-primary);
}

[data-theme="dark"] .highlight-item h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .highlight-item p {
    color: var(--text-primary);
}

[data-theme="dark"] .mission-values {
    background: var(--card-bg);
}

[data-theme="dark"] .mission-section,
[data-theme="dark"] .vision-section {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .mission-title,
[data-theme="dark"] .vision-title {
    color: var(--text-primary);
}

[data-theme="dark"] .mission-description,
[data-theme="dark"] .vision-description {
    color: var(--text-primary);
}

[data-theme="dark"] .core-values {
    background: var(--card-bg);
}

[data-theme="dark"] .value-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .value-title {
    color: var(--text-primary);
}

[data-theme="dark"] .value-description {
    color: var(--text-primary);
}

[data-theme="dark"] .value-card {
    background: var(--bg-darker);
    border-color: var(--border-color);
}

[data-theme="dark"] .team-section {
    background: var(--card-bg);
}

[data-theme="dark"] .team-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .team-member-name {
    color: var(--text-primary);
}

[data-theme="dark"] .team-member-role {
    color: var(--text-primary);
}

[data-theme="dark"] .team-member-bio {
    color: var(--text-primary);
}

/* Dark mode fixes for Company Stats section */
[data-theme="dark"] .company-stats {
    background: var(--card-bg);
}

[data-theme="dark"] .company-stats .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .company-stats .section-subtitle {
    color: var(--text-primary);
}

[data-theme="dark"] .stat-item {
    background: var(--bg-darker);
    border-color: var(--border-color);
}

[data-theme="dark"] .stat-item .stat-number {
    color: var(--text-primary);
}

[data-theme="dark"] .stat-item .stat-label {
    color: var(--text-primary);
}

[data-theme="dark"] .stat-description {
    color: var(--text-primary);
}

/* Dark mode fixes for Why Choose Us section */
[data-theme="dark"] .why-choose-us {
    background: var(--card-bg);
}

[data-theme="dark"] .why-choose-us .section-title {
    color: var(--text-primary);
}

[data-theme="dark"] .why-choose-us .section-subtitle {
    color: var(--text-primary);
}

[data-theme="dark"] .reason-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .reason-title {
    color: var(--text-primary);
}

[data-theme="dark"] .reason-description {
    color: var(--text-primary);
}

.pricing-card.popular .plan-cta:hover {
    background: linear-gradient(135deg, var(--pink-red), var(--orange-red));
    box-shadow: 0 12px 35px rgba(249, 138, 93, 0.6);
    transform: translateY(-2px);
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(249, 138, 93, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(249, 138, 93, 0.6);
    }
}

.custom-solution {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.custom-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Comparison */
.features-comparison {
    padding: var(--section-padding);
    background: var(--white);
}

.comparison-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--bg-light);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.feature-column,
.plan-column {
    padding: 1.5rem;
    text-align: center;
}

.feature-column {
    text-align: left;
}

.table-body {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 1.5rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-primary);
}

.feature-value {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
}

.feature-value i.fa-check {
    color: var(--orange);
    font-size: 1.2rem;
}

.feature-value i.fa-times {
    color: #ccc;
    font-size: 1.2rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-darker) 100%);
    text-align: center;
}

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

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.guarantee-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.guarantee-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
}

.guarantee-item i {
    color: var(--orange);
    font-size: 1.2rem;
}

/* Portfolio Page Styles */
.portfolio-stats {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

/* Case Studies Filter */
.case-studies-filter {
    padding: 40px 0;
    background: var(--bg-light);
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--sky-blue);
    background: transparent;
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--sky-blue);
    color: var(--white);
}

/* Case Studies Grid */
.case-studies {
    padding: 60px 0;
    background: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.case-study-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.case-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.case-study-image:hover .case-study-overlay {
    opacity: 1;
}

.view-case-btn {
    background: var(--white);
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
}

.view-case-btn:hover {
    background: var(--orange);
    color: var(--white);
}

.case-study-content {
    padding: 2rem;
}

.case-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.case-title {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.case-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--orange);
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

/* Case Study Modal */
.case-study-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-secondary);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--orange);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-category {
    color: var(--orange);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section:last-child {
    margin-bottom: 0;
}

.modal-section h3 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modal-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-section ul {
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: 1.5rem;
}

.modal-section li {
    margin-bottom: 0.5rem;
}

.modal-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.result-metric {
    text-align: center;
    background: var(--bg-light);
    padding: 1.5rem 1rem;
    border-radius: 10px;
}

.result-value {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--orange);
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-primary);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
}

/* Industry Expertise */
.industry-expertise {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.industry-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.industry-name {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.industry-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.industry-stat {
    background: var(--bg-light);
    color: var(--orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
}

/* About Page Styles */
.our-story {
    padding: var(--section-padding);
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.story-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: var(--text-secondary);
    margin: 0;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Ready for group photo replacement */
.story-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.story-image-placeholder .placeholder-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.story-image-placeholder i {
    font-size: 4rem;
}

.story-image-placeholder span {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
}

/* Mission & Values */
.mission-values {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.mission-section,
.vision-section {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-title,
.vision-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mission-description,
.vision-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Core Values */
.core-values {
    padding: var(--section-padding);
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: var(--font-weight-medium);
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.photo-placeholder i {
    font-size: 2.5rem;
    color: var(--white);
}

.member-name {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--orange);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.member-expertise {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.expertise-tag {
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social .social-link {
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    color: var(--text-primary);
}

.member-social .social-link:hover {
    background: var(--orange);
    color: var(--white);
}

/* Blog Page Styles */
.blog-categories {
    padding: 40px 0;
    background: var(--bg-light);
    text-align: center;
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    border: 2px solid var(--sky-blue);
    background: transparent;
    color: var(--text-primary);
    border-radius: 50px;
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover,
.category-btn.active {
    background: var(--sky-blue);
    color: var(--white);
}

/* Featured Post */
.featured-post {
    padding: 60px 0;
    background: var(--white);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.post-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.featured-title {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.post-meta i {
    color: var(--orange);
    font-size: 0.8rem;
}

.featured-image {
    display: flex;
    justify-content: center;
}

.blog-image-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, var(--light-blue), var(--warm-yellow));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
}

.blog-image-placeholder i {
    font-size: 2.5rem;
}

.blog-image-placeholder span {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
}

/* Blog Posts Grid */
.blog-posts {
    padding: 60px 0;
    background: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image .blog-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.post-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-content {
    padding: 2rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--orange);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-meta span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.read-more {
    color: var(--orange);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--coral-pink);
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 10px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50%;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-number:hover,
.page-number.active {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.pagination-dots {
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    margin: 0 0.5rem;
}

/* Newsletter Subscription */
.newsletter-subscription {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-text) 0%, #34495e 100%);
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 14px 24px;
    white-space: nowrap;
}

.newsletter-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    justify-content: center;
}

.newsletter-guarantee i {
    color: var(--warm-yellow);
}

/* Company Stats */
.company-stats {
    padding: var(--section-padding);
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-item .stat-content {
    flex: 1;
}

.stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Mobile responsiveness for stats */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-item .stat-icon {
        margin: 0 auto;
    }
    
    .stat-item .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-label {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-item .stat-number {
        font-size: 1.8rem;
    }
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--sky-blue), var(--soft-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
}

.reason-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.reason-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* Large Desktop Screens (1440px+) */
@media (min-width: 1440px) {
    :root {
        --container-max-width: 1400px;
        --section-padding: 120px 0;
    }
    
    /* Responsive sizes handled by CSS custom properties */
    
    .featured-title {
        font-size: 2.6rem;
    }
}

/* Standard Desktop (1200px - 1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
    :root {
        --container-max-width: 1200px;
    }
}

/* Small Desktop / Large Laptop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    :root {
        --container-max-width: 960px;
        --section-padding: 80px 0;
    }
    
    /* Responsive sizes handled by CSS custom properties */
    
    .featured-title {
        font-size: 2rem;
    }
}

/* Tablet Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    :root {
        --container-max-width: 720px;
        --section-padding: 70px 0;
    }
    
    /* Typography adjustments */
    /* Responsive sizes handled by CSS custom properties */
    
    /* Grid adjustments for tablet landscape */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reduce hero visual cards for tablet */
    .hero-card {
        padding: 1.2rem;
    }
    
    .hero-card span {
        font-size: 0.9rem;
    }
    
    /* Newsletter form adjustment */
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Tablet Portrait & Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    :root {
        --container-max-width: 540px;
        --section-padding: 60px 0;
    }
    
    /* Navigation - Mobile Menu */
    .nav-menu {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .nav-hamburger span {
        background: var(--dark-text) !important;
    }
    
    /* Mobile Menu Styles */
    .nav-menu.active {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        gap: 2rem;
        z-index: 999;
        animation: slideInDown 0.3s ease;
    }
    
    .nav-menu.active .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        margin: 0;
        color: var(--dark-text) !important;
        font-weight: var(--font-weight-semibold);
    }
    
    .nav-menu.active .nav-cta {
        margin: 1rem 0 0 0;
        width: 100%;
        max-width: 280px;
    }
    
    /* Dark mode mobile menu override */
    [data-theme="dark"] .nav-menu.active {
        background: rgba(15, 20, 25, 0.98);
    }
    
    [data-theme="dark"] .nav-menu.active .nav-link {
        color: var(--light-text) !important;
    }
    
    @keyframes slideInDown {
        from {
            transform: translateY(-100%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    /* Typography */
    /* Responsive sizes handled by CSS custom properties */
    
    .featured-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    /* Hero Section - Mobile First */
    .hero-container {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 8vw, 3rem);
        text-align: left;
        min-height: auto;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-stats {
        justify-content: flex-start;
        gap: clamp(1rem, 5vw, 2rem);
    }
    
    .stat {
        text-align: left;
        min-width: 100px;
    }
    
    .hero-visual {
        order: -1;
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat {
        min-width: 100px;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-actions .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Grid Layouts - Single Column */
    .results-content,
    .service-detail-content,
    .story-content,
    .mission-content,
    .featured-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .pricing-grid,
    .case-studies-grid,
    .blog-grid,
    .stats-grid,
    .industries-grid,
    .values-grid,
    .team-grid,
    .reasons-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Process Grid - 2 columns on tablet portrait */
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Service Cards */
    .service-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-title {
        font-size: 1.8rem;
    }
    
    /* CTA Actions */
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-actions .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Footer */
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Pricing Table - Horizontal Scroll */
    .comparison-table {
        overflow-x: auto;
        min-width: 600px;
    }
    
    /* Modal adjustments */
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    /* Blog pagination */
    .blog-pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-numbers {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    /* Newsletter form */
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

/* Large Mobile (480px - 575px) */
@media (max-width: 575px) {
    :root {
        --container-max-width: 100%;
        --section-padding: 50px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    /* Mobile Touch Improvements */
    .cta-btn,
    .nav-link,
    .filter-btn,
    .category-btn,
    .service-link {
        min-height: 44px; /* iOS touch target minimum */
        touch-action: manipulation;
    }
    
    /* Mobile Card Improvements */
    .service-card,
    .testimonial-card,
    .pricing-card,
    .case-study-card,
    .blog-card {
        margin: 0 10px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile Form Improvements */
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px;
        border-radius: 12px;
    }
    
    /* Mobile Hero Improvements */
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Typography - Further reduced */
    /* Responsive sizes handled by CSS custom properties */
    
    .featured-title {
        font-size: 1.6rem;
    }
    
    /* Process Grid - Single column */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Cards padding reduction */
    .service-card,
    .testimonial-card,
    .pricing-card,
    .case-study-content,
    .blog-content,
    .contact-card,
    .faq-item,
    .value-card,
    .team-member,
    .reason-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    /* Result metrics */
    .result-metric {
        padding: 1.5rem;
    }
    
    .metric-value,
    .stat-number {
        font-size: 2rem;
    }
    
    /* Hero visual height */
    .hero-visual {
        height: 200px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile hero cards - stack vertically instead of absolute positioning */
    .hero-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        animation: mobileCardFadeIn 0.6s ease-out forwards;
        opacity: 0;
        transform: translateY(20px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .hero-card:nth-child(1) { animation-delay: 0.1s; }
    .hero-card:nth-child(2) { animation-delay: 0.2s; }
    .hero-card:nth-child(3) { animation-delay: 0.3s; }
    
    @keyframes mobileCardFadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }
    
    .hero-card i {
        font-size: 1.2rem;
    }
    
    .hero-card span {
        font-size: 0.9rem;
        font-weight: var(--font-weight-semibold);
    }
    
    /* Filter buttons - wrap */
    .filter-buttons,
    .categories-filter {
        gap: 0.5rem;
    }
    
    .filter-btn,
    .category-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Case study metrics - 2 columns */
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Guarantee features - column */
    .guarantee-features {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    :root {
        --section-padding: 40px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    /* Ultra Mobile Optimizations */
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat {
        width: 100%;
        text-align: center;
    }
    
    /* Ultra mobile hero visual improvements */
    .hero-visual {
        height: 180px;
        gap: 0.8rem;
    }
    
    .hero-card {
        max-width: 250px;
        padding: 0.8rem;
    }
    
    .hero-card i {
        font-size: 1rem;
    }
    
    .hero-card span {
        font-size: 0.85rem;
    }
    
    /* Mobile Navigation Logo */
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-logo .logo-text {
        font-size: 1.1rem;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Mobile WhatsApp Button */
.whatsapp-float {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
}

.whatsapp-float i {
    font-size: 24px;
}

/* Mobile Pricing Improvements */
@media (max-width: 767px) {
    .pricing-toggle {
        margin: 2rem 0;
    }
    
    .pricing-card {
        margin: 0 10px 2rem 10px;
        border-radius: 16px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 0 10px 2rem 10px;
    }
    
    .pricing-card.featured::before {
        display: none;
    }
}

/* Mobile Portfolio Improvements */
@media (max-width: 767px) {
    .filter-buttons {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 25px;
    }
    
    .case-study-card {
        margin: 0 10px 2rem 10px;
        border-radius: 16px;
    }
    
    .case-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Mobile Blog Improvements */
@media (max-width: 767px) {
    .blog-card {
        margin: 0 10px 2rem 10px;
        border-radius: 16px;
    }
    
    .blog-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .blog-meta span {
        font-size: 0.8rem;
    }
}

/* Mobile Services Improvements */
@media (max-width: 767px) {
    .service-detail {
        padding: 1.5rem;
        border-radius: 16px;
        margin: 0 10px 2rem 10px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-feature {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .process-step-box {
        margin: 0 10px 1.5rem 10px;
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* Mobile About Page Improvements */
@media (max-width: 767px) {
    .team-member {
        margin: 0 10px 2rem 10px;
        border-radius: 16px;
    }
    
    .value-card {
        margin: 0 10px 2rem 10px;
        border-radius: 16px;
    }
    
    .story-content {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

/* Mobile FAQ Improvements */
@media (max-width: 767px) {
    .faq-item {
        margin: 0 10px 1rem 10px;
        border-radius: 16px;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Mobile Theme Toggle */
@media (max-width: 767px) {
    .theme-toggle {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .theme-toggle-inner {
        width: 40px;
        height: 40px;
    }
    
    .theme-toggle i {
        font-size: 18px;
    }
}

/* Mobile Scroll Progress */
@media (max-width: 767px) {
    .scroll-progress {
        height: 3px;
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 767px) {
    /* Reduce animations for better performance */
    .hero-card {
        animation-duration: 8s;
    }
    
    .particle {
        display: none;
    }
    
    /* Optimize images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve text readability */
    .text-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Better spacing for mobile */
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}
    
    /* Further typography reduction */
    .hero {
        padding: 100px 0 50px;
    }
    
    /* Responsive sizes handled by CSS custom properties */
    
    .featured-title {
        font-size: 1.4rem;
    }
    
    /* Minimal padding for cards */
    .service-card,
    .testimonial-card,
    .case-study-content,
    .blog-content {
        padding: 1.2rem;
    }
    
    .contact-form {
        padding: 1.2rem;
    }
    
    /* Hero stats - single row */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .stat {
        min-width: auto;
        width: 100px;
    }
    
    /* Case study metrics - single column */
    .case-metrics {
        grid-template-columns: 1fr;
    }
    
    /* Pricing - minimal padding */
    .pricing-card {
        padding: 1.5rem;
    }
    
    /* Blog meta - column */
    .blog-meta,
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Form buttons full width */
    .cta-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* Newsletter title */
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    /* Modal adjustments for small screens */
    .modal-content {
        width: 98%;
        margin: 1% auto;
        border-radius: 15px;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Page header */
    .page-header {
        padding: clamp(80px, 12vh, 100px) 0 clamp(40px, 8vh, 60px);
    }
    
    .page-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
        line-height: 1.3;
    }
    
    .page-header-content {
        padding: 0 1rem;
    }
}

/* Ultra Small Screens (below 320px) */
@media (max-width: 319px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    /* Responsive sizes handled by CSS custom properties */
    
    .service-card,
    .benefit-card,
    .testimonial-card,
    .contact-form {
        padding: 1rem;
    }
    
    .cta-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .page-header {
        padding: clamp(60px, 10vh, 80px) 0 clamp(30px, 6vh, 40px);
    }
    
    :root {
        --section-padding: 40px 0;
    }
    
    .modal-content {
        max-height: 90vh;
        margin: 2% auto;
    }
}

/* High DPI / Retina Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Ensure crisp edges on high-DPI displays */
    .service-icon,
    .stat-icon,
    .method-icon,
    .industry-icon,
    .value-icon {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* ===== DARK THEME TOGGLE BUTTON ===== */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-theme);
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-color), 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
    -webkit-user-select: none;
}

.theme-toggle:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-color), 0 4px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--orange);
}

.theme-toggle:active {
    transform: translateY(-1px) scale(1.02);
    transition: all 0.1s ease;
}

/* Theme Toggle Icon Container */
.theme-toggle-inner {
    position: relative;
    width: 24px;
    height: 24px;
    transition: var(--transition-theme);
}

/* Sun Icon (Light Mode) */
.theme-toggle .sun-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    color: var(--orange);
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Moon Icon (Dark Mode) */
.theme-toggle .moon-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    opacity: 0;
    transform: rotate(180deg) scale(0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark theme state */
[data-theme="dark"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
}

[data-theme="dark"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    color: #60A5FA;
}

/* Theme Toggle Animation Ring */
.theme-toggle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--orange), var(--light-blue), var(--orange));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: themeToggleRotate 3s linear infinite;
}

.theme-toggle:hover::before {
    opacity: 1;
}

@keyframes themeToggleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Theme Toggle Tooltip */
.theme-toggle::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: var(--text-primary);
    color: var(--bg-primary);
    font-size: 12px;
    font-weight: var(--font-weight-medium);
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
}

.theme-toggle:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Small triangle for tooltip */
.theme-toggle:hover::after {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Apply theme transition to all elements */
* {
    transition: var(--transition-theme);
}

/* Ensure smooth theme transitions for specific elements */
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-theme);
}

.navbar {
    background: var(--nav-bg);
    border-bottom-color: var(--border-color);
}

.nav-link {
    color: var(--text-primary);
}

.nav-link:hover {
    background: rgba(var(--orange), 0.1);
}

.hero {
    background: var(--bg-secondary);
}

.service-card,
.testimonial-card,
.pricing-card,
.case-study-card,
.blog-card,
.contact-card,
.faq-item,
.value-card,
.team-member,
.reason-card,
.stat-card,
.industry-card {
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 5px 25px var(--shadow-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--input-bg);
    border-color: var(--input-border);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

p {
    color: var(--text-secondary);
}

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

.section-title,
.page-title,
.hero-title {
    color: var(--text-primary);
}

.service-title,
.testimonial-card .author-name,
.case-title,
.blog-title a,
.member-name,
.value-title,
.reason-title {
    color: var(--text-primary);
}

.service-description,
.testimonial-text,
.case-description,
.blog-excerpt,
.member-bio,
.value-description,
.reason-description {
    color: var(--text-secondary);
}

/* Dark theme specific overrides */
[data-theme="dark"] .footer {
    background: var(--bg-secondary);
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

[data-theme="dark"] .newsletter-subscription {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

/* Mobile responsive adjustments for theme toggle */
@media (max-width: 768px) {
    .theme-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .theme-toggle-inner {
        width: 20px;
        height: 20px;
    }
    
    .theme-toggle .sun-icon,
    .theme-toggle .moon-icon {
        width: 20px;
        height: 20px;
    }
    
    .theme-toggle::after {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .theme-toggle {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .theme-toggle-inner {
        width: 18px;
        height: 18px;
    }
    
    .theme-toggle .sun-icon,
    .theme-toggle .moon-icon {
        width: 18px;
        height: 18px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-hamburger,
    .cta-btn,
    .footer,
    .theme-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .hero,
    .page-header {
        padding: 20pt 0;
    }
}

/* Mobile Comparison Table - Card Layout */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: hidden;
        width: 50%;
        max-width: 50%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .table-header {
        display: none;
    }
    
    .table-body {
        display: block;
    }
    
    .table-row {
        display: none;
    }
    
    /* Mobile plan cards */
    .comparison-table::before {
        content: "Plan Comparison";
        display: block;
        text-align: left;
        font-size: 1.3rem;
        font-weight: var(--font-weight-bold);
        color: var(--text-primary);
        margin-bottom: 2rem;
        padding: 0 20px;
    }
    
    /* Mobile text color fixes */
    .mobile-plan-card {
        color: var(--text-primary);
    }
    
    .mobile-plan-header {
        color: white !important;
    }
    
    .mobile-feature-name {
        color: var(--text-primary) !important;
    }
    
    .mobile-feature-value {
        color: var(--text-secondary) !important;
    }
    
    .mobile-feature-value i.fa-check {
        color: var(--orange) !important;
    }
    
    .mobile-feature-value i.fa-times {
        color: #dc3545 !important;
    }
    
    /* Create mobile plan cards using CSS */
    .comparison-table::after {
        content: "";
        display: block;
        clear: both;
    }
    
    /* Mobile plan card styles */
    .mobile-plan-card {
        display: block; /* Show on mobile */
        background: var(--card-bg);
        border: 2px solid var(--border-color);
        border-radius: 15px;
        margin: 0 0 1.2rem 0;
        width: calc(100% - 20px);
        max-width: 320px;
        min-width: 280px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
    }
    
    .mobile-plan-header {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 1rem;
        text-align: center;
        font-weight: var(--font-weight-bold);
        font-size: 1.1rem;
    }
    
    .mobile-plan-features {
        padding: 1rem;
    }
    
    .mobile-feature-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-feature-item:last-child {
        border-bottom: none;
    }
    
    .mobile-feature-name {
        font-weight: var(--font-weight-medium);
        color: var(--text-primary) !important;
        font-size: 0.85rem;
        flex: 1;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .mobile-feature-value {
        color: var(--text-secondary) !important;
        font-size: 0.8rem;
        text-align: right;
        margin-left: 0.8rem;
        font-weight: var(--font-weight-medium);
        flex-shrink: 0;
        min-width: 60px;
    }
    
    .mobile-feature-value i.fa-check {
        color: var(--orange) !important;
        font-size: 1rem;
    }
    
    .mobile-feature-value i.fa-times {
        color: #dc3545 !important;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-plan-card {
        margin: 0 0 1rem 0;
        width: calc(100% - 16px);
        max-width: 280px;
        min-width: 250px;
    }
    
    .mobile-plan-header {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .mobile-plan-features {
        padding: 0.8rem;
    }
    
    .mobile-feature-item {
        padding: 0.6rem 0;
    }
    
    .mobile-feature-name {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    .mobile-feature-value {
        font-size: 0.75rem;
        margin-left: 0.6rem;
    }
}

/* Extra small mobile optimization */
@media (max-width: 360px) {
    .mobile-plan-card {
        width: calc(100% - 12px);
        max-width: 260px;
        min-width: 240px;
        margin: 0 0 0.8rem 0;
    }
    
    .mobile-plan-header {
        padding: 0.7rem;
        font-size: 0.95rem;
    }
    
    .mobile-plan-features {
        padding: 0.7rem;
    }
    
    .mobile-feature-item {
        padding: 0.5rem 0;
    }
    
    .mobile-feature-name {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .mobile-feature-value {
        font-size: 0.7rem;
        margin-left: 0.5rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .mobile-plan-card {
        width: calc(100% - 30px);
        max-width: 350px;
        margin: 0 0 1rem 0;
    }
    
    .mobile-plan-header {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .mobile-plan-features {
        padding: 0.8rem;
    }
}

/* Container overflow prevention */
@media (max-width: 768px) {
    .features-comparison .container {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow: hidden;
        text-align: left;
    }
    
    .features-comparison {
        overflow: hidden;
        width: 100%;
        text-align: left;
    }
    
    .comparison-table {
        text-align: left;
    }
    
    /* Pricing toggle mobile fixes */
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
        padding: 12px;
    }
    
    .toggle-switch {
        order: -1;
    }
    
    /* Pricing cards mobile optimization */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    /* FAQ mobile optimization */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    /* Dark theme mobile text color overrides */
    [data-theme="dark"] .mobile-plan-card {
        background: var(--card-bg);
        border-color: var(--border-color);
    }
    
    [data-theme="dark"] .mobile-feature-name {
        color: var(--text-primary) !important;
    }
    
    [data-theme="dark"] .mobile-feature-value {
        color: var(--text-secondary) !important;
    }
    
    [data-theme="dark"] .mobile-feature-value i.fa-check {
        color: var(--orange) !important;
    }
    
    [data-theme="dark"] .mobile-feature-value i.fa-times {
        color: #dc3545 !important;
    }
    
    [data-theme="dark"] .comparison-table::before {
        color: var(--text-primary) !important;
    }
}

/* Desktop: Hide mobile plan cards */
@media (min-width: 769px) {
    .mobile-plan-card {
        display: none !important;
    }
}
