/* Home Page Styles - Optimized for Smooth Performance */

/* CSS Custom Properties for Better Performance */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --accent-gradient: linear-gradient(45deg, #FFD700, #FFA500);
    --text-primary: #333;
    --text-secondary: #666;
    --bg-light: #f8f9fa;
    --shadow-light: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-medium: 0 20px 40px rgba(0,0,0,0.15);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.3);
    --border-radius: 20px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Optimized Animations with GPU Acceleration */
.hero-section,
.feature-card,
.brand-card,
.about-btn,
.cta-btn,
.owners-btn,
.final-cta-btn {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Hero Section - Enhanced */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    perspective: 1000px;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/todo-menu-banner-1.jpg') center/cover;
    opacity: 0.2;
    transform: scale(1.1);
    transition: transform var(--transition-slow);
}

.hero-section:hover .hero-background {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8), rgba(240, 147, 251, 0.8));
    backdrop-filter: blur(2px);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

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

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: shapeFloat 15s ease-in-out infinite;
}

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

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

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

.hero-text {
    color: white;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.hero-badge i {
    color: #FFD700;
    font-size: 0.9rem;
    animation: twinkle 1.5s infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.7; }
    to { opacity: 1; }
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

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

.hero-main {
    display: block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.6s both;
}

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

.hero-search {
    margin-bottom: 3rem;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.search-container {
    position: relative;
    max-width: 500px;
    transition: none !important;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 1 !important;
    transform: none !important;
    overflow: hidden;
}

.search-container:focus-within {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.2rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 1rem 4rem 1rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: transparent;
    color: #333;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: #666;
    font-weight: 500;
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: none !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    opacity: 1 !important;
}

.search-btn:hover {
    transform: translateY(-50%) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.search-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    transition: all var(--transition-medium);
    backdrop-filter: blur(5px);
}

.suggestion-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 1s ease-out 1s both;
}

.stat-item {
    text-align: center;
    transition: transform var(--transition-medium);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #FFD700;
    animation: countUp 2s ease-out 1.2s both;
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.4s both;
}

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

.hero-image-container {
    position: relative;
    max-width: 500px;
    width: 100%;
    transition: transform var(--transition-medium);
}

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

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    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);
    animation: cardFloat 6s ease-in-out infinite;
    pointer-events: auto;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.floating-card:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

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

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

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

.card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.card-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.card-rating span {
    color: #333;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-title {
    color: #333;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card-subtitle {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-main-image {
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    transition: all var(--transition-medium);
}

.hero-banner-new {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}



.hero-banner-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: none !important;
}



.hero-banner-content-new {
    text-align: center;
    color: white;
    z-index: 3;
    position: relative;
    padding: 2rem;
}

.hero-banner-icon-new {
    margin-bottom: 1.5rem;
}

.hero-banner-icon-new i {
    font-size: 4.5rem;
    color: #FFD700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
}

.hero-banner-title-new {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

.hero-banner-subtitle-new {
    font-size: 1.1rem;
    opacity: 0.95 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
    transform: none !important;
    animation: none !important;
}

.hero-banner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: circleFloat 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.circle-3 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 25%;
    animation-delay: 4s;
}





@keyframes circleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: var(--border-radius);
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { 
        opacity: 0.2; 
        transform: translate(-50%, -50%) scale(1);
    }
    100% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: bounce 2s infinite;
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin: 0 auto 0.5rem;
}

.scroll-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Statistics Section - Enhanced */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #20B2AA 0%, #48D1CC 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.stats-header {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stats-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.stats-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-medium);
    min-width: 120px;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.stats-divider {
    width: 2px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5), transparent);
    margin: 0 1rem;
}

.countries-section {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.countries-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.countries-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.countries-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 180px;
    flex: 1;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-medium);
}

.country-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

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

.country-name {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.stats-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stats-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-medium);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stats-btn::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 var(--transition-slow);
}

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

.stats-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: white;
}

/* Countries Grid - Desktop 4 columns */
@media (min-width: 1200px) {
    .countries-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .countries-column {
        min-width: auto;
        flex: none;
    }
}

/* Countries Grid - Tablet 2 columns */
@media (min-width: 768px) and (max-width: 1199px) {
    .countries-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .countries-column {
        min-width: auto;
        flex: none;
    }
}

/* Features Section - Enhanced */
.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-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 var(--transition-slow);
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: transform var(--transition-medium);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color var(--transition-medium);
}

.feature-card:hover .feature-title {
    color: #667eea;
}

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

/* Brands Section - Enhanced */
.brands-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.brand-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    text-decoration: none;
    color: inherit;
    position: relative;
}

.brand-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.brand-card:hover::after {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

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

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.brand-card:hover .brand-image img {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-medium);
    backdrop-filter: blur(2px);
}

.brand-card:hover .brand-overlay {
    opacity: 1;
}

.view-more {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.5rem 1rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all var(--transition-medium);
}

.brand-card:hover .view-more {
    background: white;
    color: var(--text-primary);
}

.brand-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: color var(--transition-medium);
}

.brand-card:hover .brand-name {
    color: #667eea;
}

.brand-address {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.brand-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-rating i {
    color: #FFD700;
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.brand-card:hover .brand-rating i {
    transform: scale(1.2);
}

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

/* About Section - Enhanced */
.about-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

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

.about-text {
    animation: slideInLeft 1s ease-out;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: transform var(--transition-fast);
}

.about-feature:hover {
    transform: translateX(10px);
}

.about-feature i {
    color: #28a745;
    font-size: 1.2rem;
    transition: transform var(--transition-fast);
}

.about-feature:hover i {
    transform: scale(1.2);
}

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

.about-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.about-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 var(--transition-slow);
}

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

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.about-image {
    animation: slideInRight 1s ease-out;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
}

.about-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* CTA Section - Enhanced */
.cta-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-image {
    animation: slideInLeft 1s ease-out;
}

.cta-text {
    animation: slideInRight 1s ease-out;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.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 var(--transition-slow);
}

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

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

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.cta-btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.cta-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
}

.cta-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Owners Section - Enhanced */
.owners-section {
    position: relative;
    padding: 5rem 0;
    background: url('/images/todo-menu-banner-4.jpg') center/cover;
    color: white;
    overflow: hidden;
}

.owners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    animation: pulse 3s infinite;
}

.owners-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.owners-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.owners-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.owners-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-gradient);
    color: #333;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.owners-btn::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 var(--transition-slow);
}

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

.owners-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    color: #333;
}

/* Final CTA Section - Enhanced */
.final-cta-section {
    padding: 5rem 0;
    background: white;
}

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

.final-cta-text {
    animation: slideInLeft 1s ease-out;
}

.final-cta-image {
    animation: slideInRight 1s ease-out;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.final-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.final-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 var(--transition-slow);
}

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

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.final-cta-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
}

.final-cta-image:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-medium);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Behavior */
.smooth-scroll {
    scroll-behavior: smooth;
}

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

/* Force disable all animations for immediate loading */
* {
    animation: none !important;
    transition: none !important;
}

.hero-section *,
.hero-banner-new *,
.hero-content *,
.hero-text *,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-badge,
.hero-badge *,
.hero-stats *,
.hero-image *,
.hero-main-image *,
.hero-search,
.hero-search *,
.search-container,
.search-container *,
.search-input,
.search-btn,
.search-icon,
.search-suggestions,
.search-suggestions *,
.suggestion-tag,
.hero-section *,
.hero-background,
.hero-overlay,
.hero-particles,
.hero-shapes,
.shape,
.floating-cards,
.floating-card,
.hero-scroll-indicator,
.scroll-arrow,
.scroll-text {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Responsive Design - Enhanced */
@media (max-width: 991.98px) {
    /* Force 2 columns for tablets and mobile */
    .stats-grid {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
        justify-content: center !important;
    }

    .stats-column {
        flex: 1 !important;
        min-width: 140px !important;
        max-width: 160px !important;
    }

    .stats-divider {
        display: none !important;
    }
    .hero-content,
    .about-content,
    .cta-content,
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .owners-title {
        font-size: 2rem;
    }

    .section-title,
    .about-title,
    .cta-title,
    .final-cta-title {
        font-size: 2rem;
    }

    /* Statistics Section Mobile */
    .stats-title {
        font-size: 2rem;
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .stats-column {
        flex: 1;
        min-width: auto;
        max-width: none;
    }

    .stats-divider {
        display: none;
    }

    .countries-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        max-width: 100%;
        justify-content: center;
    }

    .countries-column {
        flex: 1;
        min-width: 140px;
        max-width: 160px;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
    }

    .search-suggestions {
        gap: 0.3rem;
    }

    .suggestion-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        min-width: auto;
    }

    .floating-cards {
        display: none;
    }
    
    .hero-banner-new {
        height: 280px;
    }
    
    .hero-banner-icon-new i {
        font-size: 3.5rem;
    }
    
    .hero-banner-title-new {
        font-size: 1.6rem;
    }
    
    .hero-banner-subtitle-new {
        font-size: 1rem;
    }
}

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    /* Statistics Section Small Mobile */
    .stats-section {
        padding: 3rem 0;
    }

    .stats-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .stats-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .stat-card {
        padding: 0.5rem;
        min-width: auto;
    }

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

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

    .countries-title {
        font-size: 1.3rem;
    }

    .country-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .country-flag {
        font-size: 1rem;
    }

    .country-name {
        font-size: 0.75rem;
    }

    .stats-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    /* Hero Section Small Mobile */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .search-container {
        max-width: 100%;
    }

    .search-input {
        padding: 0.8rem 3.5rem 0.8rem 3rem;
        font-size: 0.9rem;
    }

    .search-icon {
        left: 1rem;
        font-size: 1rem;
    }

    .search-btn {
        width: 40px;
        height: 40px;
        right: 0.3rem;
    }

    .suggestion-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

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

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

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

    .scroll-text {
        font-size: 0.8rem;
    }
    
    .hero-banner-new {
        height: 220px;
    }
    
    .hero-banner-icon-new i {
        font-size: 2.8rem;
    }
    
    .hero-banner-title-new {
        font-size: 1.3rem;
    }
    
    .hero-banner-subtitle-new {
        font-size: 0.9rem;
    }
}

/* High Performance Animations */
@supports (backdrop-filter: blur(10px)) {
    .hero-badge,
    .search-input {
        backdrop-filter: blur(10px);
    }
}

/* Disable all animations in hero banner */
.hero-banner-new *,
.hero-banner-new::before,
.hero-banner-new::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}



/* Print Styles */
@media print {
    .hero-section,
    .features-section,
    .brands-section,
    .about-section,
    .cta-section,
    .owners-section,
    .final-cta-section {
        break-inside: avoid;
    }
} 