/* 7Fix Landing Page - Modern High Performance CSS */

/* Enhanced CSS Variables for consistent theming and performance */
:root {
    --primary-orange: #ff5e0f;
    --primary-yellow: #ffb400;
    --secondary-blue: #2563eb;
    --secondary-dark: #1e40af;
    --accent-color: #ff8f4a;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --danger-red: #ef4444;
    --light-bg: #f8fafc;
    --dark-text: #0f172a;
    --gray-text: #64748b;
    --gray-light: #94a3b8;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue), var(--secondary-dark));
    --gradient-hero: linear-gradient(135deg, 
        rgba(255, 94, 15, 0.95) 0%, 
        rgba(255, 180, 0, 0.9) 50%,
        rgba(37, 99, 235, 0.95) 100%
    );
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 0.3s;
    --z-navbar: 1000;
    --z-modal: 1050;
    --z-tooltip: 1070;
    
    /* Responsive Design Variables */
    --mobile-padding: 1rem;
    --tablet-padding: 1.5rem;
    --desktop-padding: 2rem;
    --section-mobile: 3rem;
    --section-tablet: 4rem;
    --section-desktop: 5rem;
}

/* Enhanced Reset and Modern Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.75;
    color: var(--dark-text);
    background-color: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    font-display: swap;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
    hyphens: auto;
}

body[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

body[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

/* RTL specific styles */
body[dir="rtl"] .me-1 {
    margin-left: 0.25rem !important;
    margin-right: 0 !important;
}

body[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

body[dir="rtl"] .ms-1 {
    margin-right: 0.25rem !important;
    margin-left: 0 !important;
}

body[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

body[dir="rtl"] .float-end {
    float: left !important;
}

body[dir="rtl"] .float-start {
    float: right !important;
}

/* LTR specific styles */
body[dir="ltr"] .me-1 {
    margin-right: 0.25rem !important;
    margin-left: 0 !important;
}

body[dir="ltr"] .me-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

body[dir="ltr"] .ms-1 {
    margin-left: 0.25rem !important;
    margin-right: 0 !important;
}

body[dir="ltr"] .ms-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

body[dir="ltr"] .float-end {
    float: right !important;
}

body[dir="ltr"] .float-start {
    float: left !important;
}

/* Improved focus styles for accessibility */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Enhanced link styles */
a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--primary-yellow);
    text-decoration: none;
}

/* Improved button base styles */
button,
.btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    white-space: nowrap;
}

/* Enhanced disabled state */
button:disabled,
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced Modern Typography */
.fw-900 { font-weight: 900; }
.lh-1 { line-height: 1; }
.lh-lg { line-height: 1.8; }

/* Enhanced Navbar Styles */
.navbar {
    padding: 0.75rem 0;
    transition: var(--transition);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: var(--z-navbar);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-text);
    transition: var(--transition);
    gap: 0.5rem;
}

.navbar-brand:hover {
    color: var(--primary-orange);
    transform: scale(1.02);
}

.navbar-brand .logo-img {
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover .logo-img {
    transform: rotate(5deg) scale(1.1);
}

.brand-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Enhanced Navigation Links */
.nav-links .nav-link {
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    margin: 0 0.25rem;
}

.nav-links .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--primary-orange);
}

.nav-links .nav-link:hover::before,
.nav-links .nav-link.active::before {
    width: 80%;
}

/* Enhanced Navigation Buttons */
.nav-buttons .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-btn {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.contact-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-btn {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

/* Enhanced Mobile Menu Styles */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(255, 94, 15, 0.1);
}

.navbar-toggler:hover {
    background: rgba(255, 94, 15, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 94, 15, 0.25);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        padding: 1.5rem;
        box-shadow: var(--shadow-xl);
        border: 1px solid var(--border-color);
    }
    
    .nav-links {
        margin-bottom: 1rem;
    }
    
    .nav-links .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin: 0.25rem 0;
    }
    
    .nav-links .nav-link:hover {
        background: rgba(255, 94, 15, 0.1);
    }
    
    .nav-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Ultra-Modern Hero Section */
.hero-ultra-modern {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-advanced {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

/* Enhanced Gradient Orbs with Better Performance */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: float-orbs 12s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    filter: blur(0.5px);
}

.orb-1 { 
    width: 400px; 
    height: 400px; 
    top: -10%; 
    left: -5%; 
    animation-delay: 0s;
}

.orb-2 { 
    width: 300px; 
    height: 300px; 
    top: 50%; 
    right: -10%; 
    animation-delay: 4s;
}

.orb-3 { 
    width: 250px; 
    height: 250px; 
    bottom: 10%; 
    left: 60%; 
    animation-delay: 8s;
}

@keyframes float-orbs {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
        opacity: 0.6; 
    }
    33% { 
        transform: translate(30px, -40px) scale(1.1) rotate(120deg); 
        opacity: 0.8; 
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9) rotate(240deg); 
        opacity: 0.7; 
    }
}

/* Enhanced Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floating-shapes 20s linear infinite;
    will-change: transform;
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation-delay: 7s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    top: 80%;
    left: 30%;
    animation-delay: 14s;
}

@keyframes floating-shapes {
    0% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0; 
    }
    10%, 90% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(-100px) rotate(360deg); 
        opacity: 0; 
    }
}

/* Enhanced Hero Content Animations */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    animation: slideInFromLeft 1.2s ease-out;
}

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

/* Enhanced Fade In Animations */
.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-up.delay-1 {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.animate-slide-up.delay-2 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

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

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

/* Enhanced Hero Badge with Advanced Effects */
.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.badge-content {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.badge-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.badge-pulse {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translateY(-50%) scale(1.2);
    }
}

.text-highlight {
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ffb400, #ff8f4a, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 900;
}

.text-glow {
    color: #ff5e0f;
    text-shadow:
            0 0 15px rgba(255, 94, 15, 0.65),
            0 0 30px rgba(255, 94, 15, 0.38),
            0 0 45px rgba(255, 94, 15, 0.5),
            0 0 60px rgba(255, 94, 15, 0.3),
            2px 2px 10px rgba(0, 0, 0, 0.4);
    animation: glow-pulse 2.5s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow:
                0 0 10px rgba(255, 94, 15, 0.7),
                0 0 20px rgba(255, 94, 15, 0.5),
                0 0 30px rgba(255, 94, 15, 0.3);
    }
    to {
        text-shadow:
                0 0 20px rgba(255, 94, 15, 1),
                0 0 40px rgba(255, 94, 15, 0.8),
                0 0 60px rgba(255, 94, 15, 0.6),
                0 0 80px rgba(255, 94, 15, 0.4);
    }
}

/* Enhanced Hero Subtitle */
.hero-subtitle h2 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.4;
}

/* Enhanced Pain Points & Solutions */
.pain-solutions {
    margin-bottom: 1rem;
}

.solution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.solution:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.solution i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.solution span {
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Enhanced Hero Buttons and CTAs */
.btn-hero-primary,
.btn-hero-secondary {
    position: relative;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    text-shadow: none;
    will-change: transform;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-orange);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
    color: var(--primary-orange);
}

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

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
}

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn-hero-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 1);
}

.btn-hero-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Enhanced CTA Actions */
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideUp 1s ease-out 0.6s both;
}

.cta-primary,
.cta-secondary {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-secondary {
    justify-content: flex-start;
}

/* Phone Number Highlight */
.phone-highlight {
    font-family: 'Courier New', monospace;
    font-weight: 800;
    font-size: 1.05em;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2em 0.5em;
    border-radius: 6px;
    margin-right: 0.25em;
}

/* Enhanced Button Variants */
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
    backdrop-filter: blur(10px);
}

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

/* Responsive Hero Actions */
@media (max-width: 768px) {
    .hero-actions {
        align-items: center;
        text-align: center;
    }
    
    .cta-primary,
    .cta-secondary {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .solution {
        text-align: right;
    }
}

/* Additional B2B Landing Page Styles with Performance Optimizations */

/* Performance Optimizations */
.section-padding {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 600px;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    will-change: transform;
}

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

.service-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    transition: var(--transition);
}

.service-card:hover .service-image-container {
    transform: scale(1.02);
}

.service-icon-large {
    transition: var(--transition);
}

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

.service-content {
    background: white;
}

.service-title {
    color: var(--dark-text);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Enhanced Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.feature-icon-container {
    margin-bottom: 1.5rem;
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-orange));
}

/* Selection Styles */
::selection {
    background: var(--primary-orange);
    color: white;
}

::-moz-selection {
    background: var(--primary-orange);
    color: white;
}

/* Loading States */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.border-radius-custom {
    border-radius: var(--border-radius);
}

/* Accessibility Improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn,
    .card {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gradient-orb,
    .floating-shapes .shape {
        animation: none;
    }
}

/* Dark Mode Support (Future Ready) */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-text: #f8fafc;
        --light-bg: #1e293b;
        --border-color: #374151;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .service-image-container {
        min-height: 150px !important;
        max-height: 150px !important;
    }
}

/* Enhanced Contact Section Styles */
.contact-header {
    position: relative;
    margin-bottom: 4rem;
}

.contact-badge-wrapper {
    position: relative;
    display: inline-block;
}

.contact-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.contact-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-orange), var(--primary-yellow), var(--secondary-blue));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-badge:hover::before {
    opacity: 1;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.title-part {
    color: var(--dark-text);
}

.title-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transform: scaleX(0);
    animation: underlineGrow 1.5s ease 0.5s forwards;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-image-container {
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.contact-illustration {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
}

.contact-details-container {
    padding: 2.5rem 2rem;
}

.contact-info-grid {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.contact-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.contact-icon-wrapper.primary {
    background: var(--gradient-primary);
}

.contact-icon-wrapper.success {
    background: linear-gradient(135deg, var(--success-green), #059669);
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-weight: 600;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info-value {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.1rem;
    margin: 0;
}

/* Social Networks Row */
.social-networks-row {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    margin-bottom: 0.75rem;
}

.social-icons-container {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.social-icon:hover::before {
    transform: scale(1);
}

/* Individual Social Network Colors */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.twitter {
    background: linear-gradient(45deg, #000000, #1a1a1a);
}

.social-icon.snapchat {
    background: linear-gradient(45deg, #fffc00, #fff700);
    color: #000 !important;
}

.social-icon.tiktok {
    background: linear-gradient(45deg, #ff0050, #000000);
}

.social-icon.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
}

/* Hover Effects for Each Network */
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #e6683c, #f09433);
}

.social-icon.twitter:hover {
    background: linear-gradient(45deg, #1a1a1a, #333333);
}

.social-icon.snapchat:hover {
    background: linear-gradient(45deg, #fff700, #fffc00);
}

.social-icon.tiktok:hover {
    background: linear-gradient(45deg, #000000, #ff0050);
}

.social-icon.whatsapp:hover {
    background: linear-gradient(45deg, #128c7e, #25d366);
}

/* Enhanced Contact Form Styles */
.contact-form-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.contact-form-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.form-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Enhanced Form Controls */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: block;
    transition: var(--transition);
}

.form-label.required::after {
    content: ' *';
    color: var(--danger-red);
    font-weight: 700;
}

.enhanced-input,
.enhanced-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.enhanced-input:focus,
.enhanced-textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 94, 15, 0.1);
    transform: translateY(-1px);
}

.enhanced-input:hover,
.enhanced-textarea:hover {
    border-color: var(--gray-light);
}

.enhanced-input.is-valid,
.enhanced-textarea.is-valid {
    border-color: var(--success-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2310b981' d='m2.3 6.73.94-.94 2.94-2.94-1.88-1.88L2.3 3.01zm0 0'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 1rem 1rem;
    padding-left: 3rem;
}

.enhanced-input.is-invalid,
.enhanced-textarea.is-invalid {
    border-color: var(--danger-red);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4M8.2 4.6l-2.4 2.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.75rem center;
    background-size: 1rem 1rem;
    padding-left: 3rem;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.invalid-feedback {
    display: block;
    color: var(--danger-red);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Enhanced Submit Button */
.btn-enhanced-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.btn-enhanced-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    filter: brightness(1.05);
}

.btn-enhanced-submit:active {
    transform: translateY(0);
}

.btn-enhanced-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-enhanced-submit.loading {
    pointer-events: none;
}

/* Form Messages */
.form-messages {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    animation: slideDown 0.3s ease-out;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border-left: 4px solid var(--success-green);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border-left: 4px solid var(--danger-red);
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .enhanced-input,
    .enhanced-textarea {
        padding: 0.875rem 1rem;
    }
    
    .btn-enhanced-submit {
        padding: 1rem 1.5rem;
    }
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.form-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Enhanced Form Styles */
.enhanced-contact-form {
    position: relative;
}

.form-messages {
    margin-bottom: 2rem;
}

.form-messages .alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: block;
}

.form-label.required::after {
    content: '*';
    color: var(--danger-red);
    margin-right: 0.25rem;
}

.enhanced-input,
.enhanced-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
    color: var(--dark-text);
}

.enhanced-input:focus,
.enhanced-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 94, 15, 0.1);
    transform: translateY(-2px);
}

.enhanced-input.is-invalid,
.enhanced-textarea.is-invalid {
    border-color: var(--danger-red);
}

.enhanced-input.is-valid,
.enhanced-textarea.is-valid {
    border-color: var(--success-green);
}

.invalid-feedback {
    color: var(--danger-red);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

/* Enhanced Submit Button */
.btn-enhanced-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.btn-enhanced-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 94, 15, 0.3);
}

.btn-enhanced-submit:hover::before {
    left: 100%;
}

.btn-enhanced-submit:active {
    transform: translateY(-1px);
}

.btn-enhanced-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
}

.btn-enhanced-submit.loading .btn-text {
    display: none;
}

.btn-enhanced-submit.loading .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main-title {
        font-size: 2.8rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-item {
        padding: 1rem;
    }
    
    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    /* Social Networks Responsive */
    .social-networks-row {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .social-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .social-icons-container {
        gap: 0.5rem;
        justify-content: flex-start;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Enhanced Footer Styles */
.enhanced-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #1a202c 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    pointer-events: none;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    height: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    color: #e2e8f0;
    font-size: 0.9rem;
}

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

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

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

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: var(--transition);
    padding: 0.25rem 0;
}

.footer-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 50%;
    margin-left: 0.5rem;
    transform: scale(0);
    transition: var(--transition);
}

.footer-links a:hover {
    color: #ffffff;
    padding-right: 0.5rem;
}

.footer-links a:hover::before {
    transform: scale(1);
}

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.app-download-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

.app-download-btn i {
    font-size: 1.5rem;
}

.app-download-btn.apple i {
    color: #ffffff;
}

.app-download-btn.google i {
    color: #34a853;
}

.app-info small {
    display: block;
    font-size: 0.75rem;
    color: #cbd5e0;
}

.app-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Footer Social Icons */
.social-footer-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.footer-social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Individual Social Network Colors for Footer */
.footer-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c);
    border-color: #f09433;
    color: white;
}

.footer-social-icon.twitter:hover {
    background: linear-gradient(45deg, #000000, #1a1a1a);
    border-color: #000000;
    color: white;
}

.footer-social-icon.snapchat:hover {
    background: linear-gradient(45deg, #fffc00, #fff700);
    border-color: #fffc00;
    color: #000;
}

.footer-social-icon.tiktok:hover {
    background: linear-gradient(45deg, #ff0050, #000000);
    border-color: #ff0050;
    color: white;
}

.footer-social-icon.whatsapp:hover {
    background: linear-gradient(45deg, #25d366, #128c7e);
    border-color: #25d366;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    margin: 0;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-legal-links .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .app-download-buttons {
        flex-direction: row;
    }
    
    .app-download-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-brand-name {
        font-size: 1.5rem;
    }
    
    .footer-description {
        text-align: center;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-download-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .footer-legal-links {
        justify-content: center;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
        margin-bottom: 1rem;
    }
}

/* Enhanced Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.delay-1 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.delay-2 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.delay-3 {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Section Headers */
.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-text);
    max-width: 600px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 0;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-orange);
}

.service-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-large {
    transform: translate(-50%, -50%) scale(1.1);
}

.service-content {
    background: white;
    text-align: center;
    box-sizing: border-box;
}

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

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.service-description {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: right;
}

.service-features li {
    padding: 0.25rem 0;
    color: var(--gray-text);
}

.service-features i {
    color: var(--success-green);
    margin-left: 0.5rem;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.feature-card.enhanced {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-icon-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card.enhanced:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card.enhanced:hover .feature-icon-circle::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.feature-icon-large {
    margin: 0 auto;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    transition: color 0.3s ease;
}

.feature-card.enhanced:hover .feature-title {
    color: var(--primary-orange);
}

.feature-description {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-card.enhanced:hover .feature-description {
    color: var(--dark-text);
}

/* About Section */
.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-features .feature-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-lg);
}

.stats-overlay .stat-item {
    text-align: center;
    margin-bottom: 0.5rem;
}

.stats-overlay .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
}

.stats-overlay .stat-label {
    font-size: 0.875rem;
    color: var(--gray-text);
}

/* Business Section */
.business-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.business-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-feature h5 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.business-feature p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.875rem;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 94, 15, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: var(--dark-text);
}

.contact-details p {
    margin: 0;
    color: var(--gray-text);
}

.contact-details a {
    color: var(--primary-orange);
    text-decoration: none;
}

.contact-form .form-control {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 94, 15, 0.25);
}

/* Statistics Section */
.stat-item {
    text-align: center;
    color: white;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 800;
    display: inline;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark-text);
}

.testimonial-position {
    font-size: 0.875rem;
    color: var(--gray-text);
    margin: 0;
}

.testimonial-rating {
    font-size: 1.125rem;
}

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

/* FAQ Section */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.125rem;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
}

.faq-accordion .accordion-body {
    padding: 1.5rem;
    color: var(--gray-text);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d) !important;
}

.footer-logo {
    display: flex;
    align-items: center;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

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

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    background: #20b858;
}

/* Navigation Enhancements */
.navbar {
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
}

.nav-links .nav-link {
    font-weight: 500;
    color: var(--dark-text);
    transition: var(--transition);
    position: relative;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--primary-orange);
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
    width: 100%;
}

/* Button Enhancements */
.btn-hero-primary,
.btn-hero-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-orange);
    box-shadow: var(--shadow-md);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: scale(1.1);
}

/* Responsive Design Improvements */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .business-feature,
    .about-features .feature-item,
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Performance - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float,
    .scroll-indicator,
    .navbar {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
}

/* Additional utility classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ========================================
   ENHANCED HERO SECTION STYLES
======================================== */

/* Hero Badge Enhancements */
.hero-badge .badge-content {
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Enhanced Typography */
.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-subtitle-text {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

.highlight-percentage {
    font-size: 1.3em;
    font-weight: 800;
    color: #ffeb3b;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.highlight-percentage-enhanced {
    font-size: 1.4em;
    font-weight: 900;
    color: #fff700;
    text-shadow: 0 0 15px rgba(255, 247, 0, 0.8), 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #fff700, #ffeb3b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: rgba(255, 247, 0, 0.2);
}

/* Enhanced Text Elements */
.description-text-enhanced {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.brand-highlight-enhanced {
    color: #fff700;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(255, 247, 0, 0.6), 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.pain-text {
    color: rgba(255, 255, 255, 0.8) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
}

.solution-text {
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-size: 1rem;
}

.feature-text {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    font-size: 0.95rem;
}

/* Phone Number Enhancements */
.btn[href^="tel:"] {
    background: linear-gradient(45deg, #25d366, #128c7e) !important;
    border: 2px solid #25d366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.btn[href^="tel:"]:hover {
    background: linear-gradient(45deg, #128c7e, #075e54) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.btn[href^="tel:"]::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;
}

.btn[href^="tel:"]:hover::before {
    left: 100%;
}

/* CTA Button Phone Styling */
.cta-secondary .btn {
    margin: 0.25rem;
    min-width: 200px;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

/* Enhanced Phone Display */
.phone-highlight {
    font-family: 'Courier New', monospace;
    font-weight: 900;
    font-size: 1.1em;
    letter-spacing: 1px;
    direction: ltr;
    display: inline-block;
}

body[dir="rtl"] .phone-highlight {
    direction: ltr;
    text-align: left;
}

body[dir="ltr"] .phone-highlight {
    direction: ltr;
    text-align: left;
}

/* Mobile Phone Number Optimization */
@media (max-width: 768px) {
    .btn[href^="tel:"] {
        width: 100%;
        margin: 0.5rem 0;
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .phone-highlight {
        font-size: 1.2em;
    }
    
    .cta-secondary {
        text-align: center;
    }
    
    .cta-secondary .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Pain Points & Solutions */
.pain-solutions {
    margin: 1rem 0;
}

.pain-point {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.solution {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* CTA Enhancements */
.cta-primary .btn-hero-primary {
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: var(--primary-orange);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    position: relative;
    overflow: hidden;
}

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

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

/* Urgency Indicator */
.urgency-indicator {
    background: rgba(255, 193, 7, 0.2);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    backdrop-filter: blur(10px);
    animation: urgency-glow 2s infinite alternate;
}

@keyframes urgency-glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    }
}

.urgency-text {
    color: #fff;
    font-weight: 600;
}

.spots-left {
    color: #ffeb3b;
    font-weight: 700;
    animation: pulse-text 1.5s infinite;
}

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

/* Enhanced Stats */
.stat-highlight {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.05);
}

.stats-header {
    text-align: center;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.trust-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dashboard Mockup */
.hero-dashboard-mockup {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-screen {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    animation: float-dashboard 6s ease-in-out infinite;
}

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

.dashboard-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-content {
    background: #f8f9fa;
    min-height: 300px;
}

.metric-card {
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.activities-section {
    background: white;
    border-radius: 12px;
    padding: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.activity-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #333;
}

.activity-time {
    font-size: 0.75rem;
    color: #666;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 200px;
}

.success-card {
    top: 20%;
    right: -20px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

.floating-card.metric-card {
    top: 60%;
    left: -30px;
    background: linear-gradient(135deg, #cce5ff, #b3d9ff);
}

.alert-card {
    bottom: 30%;
    right: -10px;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
}

.animate-float-1 {
    animation: float-1 4s ease-in-out infinite;
}

.animate-float-2 {
    animation: float-2 5s ease-in-out infinite 1s;
}

.animate-float-3 {
    animation: float-3 6s ease-in-out infinite 2s;
}

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

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

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

/* Testimonial Bubble */
.testimonial-bubble {
    position: absolute;
    bottom: 10%;
    left: -50px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 280px;
    border: 1px solid rgba(255, 94, 15, 0.2);
}

.animate-float-4 {
    animation: float-4 7s ease-in-out infinite 1.5s;
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-25px) scale(1.02);
    }
}

.testimonial-text {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-orange);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: #333;
}

.author-title {
    font-size: 0.75rem;
    color: #666;
}

.rating {
    font-size: 0.875rem;
}

/* Mobile Responsiveness for Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .floating-card {
        position: relative;
        margin: 1rem 0;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .testimonial-bubble {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-primary .btn-hero-primary,
    .cta-secondary .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .urgency-indicator {
        text-align: center;
        padding: 1rem;
    }
}
.stat-card-advanced:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffb400;
    text-shadow: 0 4px 20px rgba(255, 180, 0, 0.4);
}

.hero-image-container-ultra {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.hero-image-container-ultra:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.02);
}

.floating-element {
    position: absolute;
    z-index: 3;
}

.element-content {
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-text);
    backdrop-filter: blur(15px);
    animation: float-element 3s ease-in-out infinite;
}

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

.element-1 { top: 15%; right: -30px; }
.element-2 { bottom: 30%; left: -40px; animation-delay: 1s; }
.element-3 { top: 65%; right: -20px; animation-delay: 2s; }
.element-4 { top: 35%; left: -30px; animation-delay: 1.5s; }

/* Enhanced FAQ Styles */
.faq-illustration-ultra {
    position: relative;
    padding: 3rem;
    animation: illustration-float 6s ease-in-out infinite;
}

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

.illustration-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 94, 15, 0.3);
    margin: 0 auto;
}

.pulse-ring {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse-ring-animation 3s ease-out infinite;
}

.ring-1 { width: 120%; height: 120%; }
.ring-2 { width: 140%; height: 140%; animation-delay: 1s; }

@keyframes pulse-ring-animation {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.orbiting-icons .orbit-item {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: orbit-rotation 20s linear infinite;
}

.orbit-1 { top: -30px; left: 50%; margin-left: -30px; }
.orbit-2 { top: 50%; right: -30px; margin-top: -30px; animation-delay: -7s; }
.orbit-3 { bottom: -30px; left: 50%; margin-left: -30px; animation-delay: -14s; }

@keyframes orbit-rotation {
    0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

.service-icon-bubble {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: bubble-float 3s ease-in-out infinite;
}

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

.accordion-item-ultra {
    border: none;
    border-radius: 20px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    margin-bottom: 1rem;
}

.accordion-item-ultra:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.accordion-button-ultra {
    background: white;
    border: none;
    padding: 2rem;
    color: var(--dark-text);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.accordion-button-ultra:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;
}

.question-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.accordion-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-button-ultra:not(.collapsed) .accordion-arrow {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(180deg);
}

.accordion-body-ultra {
    padding: 2rem;
    background: white;
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 1.1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .hero-title-spectacular { font-size: 3rem; }
    .btn-hero-primary-ultra, .btn-hero-secondary-ultra {
        min-width: 250px;
        padding: 16px 32px;
        font-size: 1rem;
    }
    .illustration-circle { width: 200px; height: 200px; }
}

/* Enhanced Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modern Button Styles */
.btn-primary-modern {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-secondary-modern {
    background: var(--gradient-secondary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-secondary-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-modern:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modern Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Modern Card Styles */
.card-modern {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

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

/* Service Cards Enhancement */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    background: var(--gradient-primary);
    transition: var(--transition);
}

/* Legacy compatibility */
.btn-primary-custom, .btn-secondary-custom {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-primary-custom:hover, .btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-secondary-custom {
    background: var(--gradient-secondary);
}

/* Section styling */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    transition: transform var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-modern {
        text-align: center;
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .btn-primary-modern, .btn-secondary-modern, .btn-outline-modern {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* Service Cards with Enhanced Hover Effects */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::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.6s;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    background: var(--gradient-primary);
    position: relative;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background: var(--gradient-secondary);
}

/* Button Enhancements */
.btn-primary-custom, .btn-secondary-custom {
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom {
    background: var(--gradient-primary);
}

.btn-secondary-custom {
    background: var(--gradient-secondary);
}

.btn-primary-custom:hover, .btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-primary-custom:hover::before, .btn-secondary-custom:hover::before {
    left: 100%;
}

/* Loading Animation */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 4rem 0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray-text);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Responsive Optimizations */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .floating-animation {
        animation: none; /* Disable on mobile for performance */
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2.5rem !important;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .btn-primary-custom, .btn-secondary-custom {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

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

/* Print Styles */
@media print {
    .navbar, .btn, .floating-animation {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        background: none !important;
        color: black !important;
    }
}

/* Modern About Us Section - Completely New Design */
#about {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff5e0f" fill-opacity="0.04"><rect x="0" y="0" width="40" height="40" rx="8"/><rect x="40" y="40" width="40" height="40" rx="8"/></g></g></svg>') repeat;
    pointer-events: none;
}

/* Section Header Modern */
.section-header-modern {
    position: relative;
    z-index: 2;
}

.section-badge-new {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 94, 15, 0.3);
    margin-bottom: 1.5rem;
}

.section-title-new {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-description-new {
    font-size: 1.2rem;
    color: var(--gray-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Cards */
.info-card-modern,
.stats-card-modern {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 94, 15, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

.info-card-modern:hover,
.stats-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.card-header-modern {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.card-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="20" cy="20" r="3"/></g></g></svg>') repeat;
    pointer-events: none;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.card-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    z-index: 2;
}

.card-content-modern {
    padding: 2rem;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
    margin-bottom: 2rem;
}

/* Features List Modern */
.features-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-item-modern:hover {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-color: var(--primary-orange);
    transform: translateX(-5px);
}

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

.feature-item-modern span {
    font-weight: 600;
    color: var(--dark-text);
}

/* Stats Grid Modern */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.stat-box-modern {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 94, 15, 0.1);
}

.stat-box-modern:hover {
    transform: scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 94, 15, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Highlight Boxes Modern */
.highlight-box-modern {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 94, 15, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.highlight-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-box-modern:hover::before {
    transform: scaleX(1);
}

.highlight-box-modern:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 35px rgba(255, 94, 15, 0.15);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

/* CTA Section Modern */
.cta-section-modern {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}

.cta-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.btn-primary-modern {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary-modern:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-orange);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title-new {
        font-size: 2.5rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #about {
        padding: 4rem 0;
    }
    
    .section-title-new {
        font-size: 2rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 300px;
    }
    
    .card-header-modern,
    .card-content-modern,
    .stats-grid-modern {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title-new {
        font-size: 1.8rem;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .highlight-box-modern {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}


#about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* Compact Feature Grid */
.about-features-compact .feature-compact {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 12px;
    border: 1px solid rgba(255, 94, 15, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    gap: 0.75rem;
}

.about-features-compact .feature-compact:hover {
    transform: translateY(-2px);
    border-color: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 94, 15, 0.15);
}

.about-features-compact .feature-icon-small {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Inline Statistics */
.about-stats-inline .stat-inline {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    color: white;
    padding: 1rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Compact Visual */
.about-visual-compact {
    position: relative;
    padding: 2rem 1rem;
    min-height: 350px;
}

.brand-center-compact {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.brand-circle-compact {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-orange);
    animation: gentle-pulse 4s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.achievement-float {
    position: absolute;
    animation: float-gentle 3s ease-in-out infinite;
}

.achievement-float.top-left { top: 10%; left: 5%; }
.achievement-float.top-right { top: 15%; right: 10%; animation-delay: 1s; }
.achievement-float.bottom { bottom: 20%; left: 15%; animation-delay: 2s; }

.achievement-mini {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 94, 15, 0.2);
    min-width: 100px;
}

.quality-badge-small {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.quality-badge-small.top { top: 5%; left: 5%; }
.quality-badge-small.bottom { bottom: 15%; right: 5%; }

/* Responsive */
@media (max-width: 768px) {
    #about { padding: 2.5rem 0; }
    .about-visual-compact { min-height: 250px; }
    .brand-circle-compact { width: 100px; height: 100px; }
}
#about {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff5e0f" fill-opacity="0.03"><circle cx="30" cy="30" r="4"/></g></g></svg>') repeat;
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

/* Enhanced Feature Items */
.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    border: 1px solid rgba(255, 94, 15, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem !important;
}

.about-features .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 94, 15, 0.15);
    background: linear-gradient(145deg, #ffffff, #fff8f5);
}

.about-features .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 94, 15, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-features .feature-item:hover::before {
    opacity: 1;
}

.about-features .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 94, 15, 0.1), rgba(255, 180, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-features .feature-icon i {
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.about-features .feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 94, 15, 0.2), rgba(255, 180, 0, 0.2));
}

.about-features .feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-45deg) translate(-100%, -100%);
    transition: transform 0.6s ease;
}

.about-features .feature-item:hover .feature-icon::after {
    transform: rotate(-45deg) translate(100%, 100%);
}

.about-features .feature-content h5 {
    color: var(--dark-text);
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.about-features .feature-item:hover .feature-content h5 {
    color: var(--primary-orange);
}

/* Statistics Section */
.about-stats {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.1"><circle cx="20" cy="20" r="2"/></g></g></svg>') repeat;
    pointer-events: none;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Visual Column Styles */
.about-visual {
    position: relative;
    padding: 2rem;
}

.about-image-container {
    position: relative;
    min-height: 500px;
}

/* Background Decorations */
.about-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 94, 15, 0.1), rgba(255, 180, 0, 0.1));
    animation: float-decoration 8s ease-in-out infinite;
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes float-decoration {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Company Showcase */
.company-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 2;
}

/* Achievement Cards */
.achievement-card {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    border: 2px solid rgba(255, 94, 15, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float-cards 6s ease-in-out infinite;
}

.achievement-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 94, 15, 0.2);
}

.card-1 {
    top: 20%;
    right: 10%;
}

.card-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

.achievement-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1;
}

.achievement-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-text);
    margin-top: 0.25rem;
}

/* Central Brand */
.company-brand-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

.brand-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.brand-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 94, 15, 0.05), transparent);
    animation: rotate-gradient 4s linear infinite;
}

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

.brand-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

.brand-text {
    z-index: 2;
    position: relative;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.brand-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Pulse Rings */
.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    animation: pulse-expand 3s ease-out infinite;
    opacity: 0;
}

.ring-1 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
}

.ring-2 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    animation-delay: 1s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    animation-delay: 2s;
}

@keyframes pulse-expand {
    0% {
        opacity: 1;
        transform: scale(0.8);
    }
    70% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 94, 15, 0.2);
    animation: float-badges 4s ease-in-out infinite;
}

.quality-badge {
    top: 15%;
    left: 5%;
}

.award-badge {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes float-badges {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--dark-text);
    font-size: 0.9rem;
}

.badge-content i {
    color: var(--primary-orange);
    font-size: 1.1rem;
}

/* Enhanced CTAs */
.about-cta .btn {
    position: relative;
    overflow: hidden;
    font-weight: 700;
    transition: all 0.4s ease;
}

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

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

.about-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 94, 15, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-image-container {
        min-height: 400px;
    }
    
    .achievement-card {
        min-width: 160px;
        padding: 1rem;
    }
    
    .brand-circle {
        width: 160px;
        height: 160px;
    }
    
    .achievement-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-visual {
        margin-top: 3rem;
    }
    
    .about-image-container {
        min-height: 350px;
    }
    
    .achievement-card {
        min-width: 140px;
        padding: 0.75rem;
    }
    
    .brand-circle {
        width: 140px;
        height: 140px;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-features .feature-item {
        padding: 1rem;
    }
    
    .about-features .feature-icon {
        width: 50px;
        height: 50px;
        margin-left: 1rem;
    }
}

@media (max-width: 576px) {
    .about-stats {
        padding: 1.5rem;
    }
    
    .achievement-card {
        min-width: 120px;
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .achievement-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .achievement-number {
        font-size: 1.2rem;
    }
    
    .achievement-label {
        font-size: 0.8rem;
    }
    
    .brand-circle {
        width: 120px;
        height: 120px;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
}


#platform-benefits {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

#platform-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ff5e0f" fill-opacity="0.02"><circle cx="20" cy="20" r="3"/></g></g></svg>') repeat;
    pointer-events: none;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.benefit-icon-container {
    text-align: center;
    position: relative;
}

.benefit-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 94, 15, 0.1), rgba(255, 180, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 94, 15, 0.15), rgba(255, 180, 0, 0.15));
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
    transform: rotate(-45deg) translate(50%, 50%);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: var(--primary-orange);
}

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

.benefit-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.benefit-features li:hover {
    color: var(--dark-text);
    transform: translateX(-5px);
}

.benefit-features i {
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-card:hover .benefit-features li {
    color: var(--dark-text);
}

/* Enhanced animations for benefit cards */
@keyframes benefitCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.benefit-card:nth-child(2n) {
    animation: benefitCardFloat 6s ease-in-out infinite;
}

.benefit-card:nth-child(2n+1) {
    animation: benefitCardFloat 6s ease-in-out infinite 3s;
}

/* Beautiful Mini-Card Design for Feature Items */
.benefit-features-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}

.feature-mini-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(255, 94, 15, 0.1);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-mini-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(255, 94, 15, 0.15);
    background: linear-gradient(145deg, #ffffff, #fff8f5);
}

.feature-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 94, 15, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-mini-card:hover::before {
    opacity: 1;
}

.feature-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-mini-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-45deg) translate(-100%, -100%);
    transition: transform 0.5s ease;
}

.feature-mini-card:hover .feature-mini-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 94, 15, 0.3);
}

.feature-mini-card:hover .feature-mini-icon::after {
    transform: rotate(-45deg) translate(100%, 100%);
}

.feature-mini-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.feature-mini-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.4;
    transition: color 0.3s ease;
    margin: 0;
}

.feature-mini-card:hover .feature-mini-text {
    color: var(--primary-orange);
}

/* Animation for mini-cards appearing */
@keyframes miniCardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-mini-card {
    animation: miniCardSlideIn 0.6s ease-out;
}

.feature-mini-card:nth-child(1) { animation-delay: 0.1s; }
.feature-mini-card:nth-child(2) { animation-delay: 0.2s; }
.feature-mini-card:nth-child(3) { animation-delay: 0.3s; }

/* Responsive design for mini-cards */
@media (max-width: 768px) {
    .feature-mini-card {
        padding: 12px;
        gap: 10px;
    }
    
    .feature-mini-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-mini-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .benefit-features-grid {
        gap: 8px;
    }
    
    .feature-mini-card {
        padding: 10px;
        border-radius: 8px;
    }
    
    .feature-mini-icon {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    .feature-mini-text {
        font-size: 0.85rem;
    }
}

/* Enhanced WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    z-index: var(--z-tooltip);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: whatsappRipple 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-50%);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    color: white;
    animation: none;
}

.whatsapp-float:hover::before {
    animation: none;
    opacity: 0.5;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes whatsappRipple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Enhanced Loading States */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Performance and Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .gradient-orb,
    .floating-shapes .shape {
        animation: none;
    }
}

/* Mobile WhatsApp Button Optimization */
@media (max-width: 768px) {
    .whatsapp-float {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-50%);
    }
}

/* ======================================================
   COMPREHENSIVE RESPONSIVE DESIGN FOR PHONES & TABLETS
====================================================== */

/* Base Mobile-First Design */
.container {
    padding-left: var(--mobile-padding);
    padding-right: var(--mobile-padding);
}

/* Section Spacing */
.section-padding {
    padding-top: var(--section-mobile);
    padding-bottom: var(--section-mobile);
}

/* ===== LARGE PHONES & SMALL TABLETS (576px - 767px) ===== */
@media (min-width: 576px) {
    .container {
        padding-left: var(--tablet-padding);
        padding-right: var(--tablet-padding);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    /* Enhanced navigation for larger phones */
    .nav-buttons {
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .nav-buttons .btn {
        width: auto;
        padding: 0.6rem 1.5rem;
    }
}

/* ===== TABLETS & MEDIUM DEVICES (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding-left: var(--tablet-padding);
        padding-right: var(--tablet-padding);
    }
    
    .section-padding {
        padding-top: var(--section-tablet);
        padding-bottom: var(--section-tablet);
    }
    
    /* Hero Section for Tablets */
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Service Cards for Tablets */
    .service-card {
        margin-bottom: 2rem;
        transition: transform 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    /* Feature Cards Layout */
    .feature-card {
        padding: 2.5rem 2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Contact Section */
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    /* Stats Section */
    .stat-item {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Social Icons */
    .social-icons-container {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.125rem;
    }
    
    /* FAQ Section */
    .faq-item {
        margin-bottom: 1rem;
    }
    
    /* Footer adjustments */
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* ===== LARGE TABLETS & SMALL LAPTOPS (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding-left: var(--desktop-padding);
        padding-right: var(--desktop-padding);
    }
    
    .section-padding {
        padding-top: var(--section-desktop);
        padding-bottom: var(--section-desktop);
    }
    
    /* Optimize grid layouts */
    .service-grid {
        gap: 1.5rem;
    }
    
    .feature-grid {
        gap: 2rem;
    }
    
    /* Text scaling */
    .hero-title {
        font-size: 3.25rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* ===== SMALL PHONES (Max 480px) ===== */
@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    /* Ultra-compact hero */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Compact sections */
    .section-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Service cards stack */
    .service-card {
        margin-bottom: 1.25rem;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    /* Feature cards compact */
    .feature-card {
        padding: 1.5rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .feature-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 1.125rem;
    }
    
    /* Contact form compact */
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .enhanced-input,
    .enhanced-textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Social icons smaller */
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    /* Stats compact */
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    /* WhatsApp button smaller */
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        right: 15px;
    }
    
    /* Navigation compact */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-brand .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav-buttons .btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* ===== TOUCH-FRIENDLY ENHANCEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .btn,
    .nav-link,
    .social-icon {
        min-height: 44px;
        min-width: 44px;
    }
    
    .enhanced-input,
    .enhanced-textarea {
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .feature-card:hover {
        transform: none;
    }
    
    /* Larger tap targets */
    .whatsapp-float {
        width: 56px;
        height: 56px;
    }
}

/* ===== LANDSCAPE PHONE OPTIMIZATION ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* ===== HIGH DPI DISPLAYS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar-brand .logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .service-icon-large,
    .feature-icon-circle {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .gradient-orb,
    .floating-shapes .shape {
        animation: none;
    }
    
    .service-card,
    .feature-card {
        transition: none;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-text: #f8fafc;
        --gray-text: #94a3b8;
        --border-color: #374151;
        --light-bg: #1f2937;
    }
}

/* ===== PRINT OPTIMIZATIONS ===== */
@media print {
    .whatsapp-float,
    .scroll-indicator,
    .navbar,
    .floating-shapes,
    .gradient-orb {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
    }
    
    .section-padding {
        padding: 1rem 0;
    }
    
    .service-card,
    .feature-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
}
