:root {
            --primary-color: #1e3a8a;
            --secondary-color: #1f2937;
            --accent-color: #3b82f6;
            --success-color: #059669;
            --info-color: #0891b2;
            --warning-color: #d97706;
            --gradient-1: linear-gradient(135deg, #1e3a8a, #3b82f6);
            --gradient-2: linear-gradient(135deg, #1f2937, #374151, #4b5563);
            --gradient-3: linear-gradient(to right, #111827, #1f2937);
            --card-bg: rgba(31, 41, 55, 0.95);
            --text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            --border-radius: 12px;
            --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(10, 6, 18, 0.9)), url('https://elitecars-html.asdesignsgalaxy.com/assets/images/Home/Home-2.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: #fff;
            line-height: 1.6;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .quick-contact {
            background: var(--gradient-1);
            padding: 12px 20px;
            text-align: center;
            position: relative;
            z-index: 1000;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .quick-contact a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition-smooth);
            padding: 8px 16px;
            border-radius: var(--border-radius);
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .quick-contact a:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .quick-contact i {
            font-size: 1.2rem;
            animation: pulseIcon 2s infinite;
        }

        @keyframes pulseIcon {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        /* Mobile responsive for quick contact */
        @media (max-width: 768px) {
            .quick-contact {
                padding: 8px 15px;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .quick-contact a {
                margin: 0;
                font-size: 0.85rem;
                padding: 6px 12px;
                gap: 6px;
                flex: 1;
                justify-content: center;
                max-width: 48%;
            }

            .quick-contact i {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .quick-contact {
                padding: 6px 10px;
                flex-direction: column;
                gap: 8px;
            }

            .quick-contact a {
                font-size: 0.8rem;
                padding: 8px 10px;
                max-width: 100%;
                width: 100%;
            }

            .quick-contact i {
                font-size: 0.9rem;
            }
        }

        .language-support {
            background: linear-gradient(135deg, rgba(153, 50, 204, 0.1), rgba(255, 140, 0, 0.1));
            border-radius: 15px;
            padding: 30px;
            margin: 40px auto;
            max-width: 1200px;
            text-align: center;
            border: 1px solid rgba(153, 50, 204, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 0.5s ease-out;
        }

        .language-support h2 {
            color: var(--accent-color);
            font-size: 2rem;
            margin-bottom: 20px;
            text-shadow: var(--text-shadow);
        }

        .language-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 25px 0;
        }

        .language-item {
            background: rgba(255, 140, 0, 0.1);
            padding: 15px 25px;
            border-radius: 12px;
            color: #fff;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 140, 0, 0.2);
            animation: fadeIn 0.5s ease-out;
        }

        .language-item:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 140, 0, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .highlight-text {
            color: var(--accent-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .top-header {
            background: var(--gradient-3);
            padding: 15px 20px;
            position: relative;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-img {
            height: 70px;
            animation: fadeIn 1s ease-out;
        }

        .logo-text {
            color: #fff;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            text-shadow: var(--text-shadow);
        }

        .logo-text p {
            font-size: 1rem;
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: #fff;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

.social-links a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.header-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.header-address:hover {
    opacity: 1;
}

.header-address i {
    color: var(--accent-color);
    font-size: 1rem;
}

.header-address span {
    color: #fff;
    text-decoration: none;
}

.service-description {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
}

.service-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

        .service-description h3 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-shadow: var(--text-shadow);
        }

        .service-description p {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .service-description ul {
            list-style: none;
            margin: 20px 0;
        }

        .service-description ul li {
            margin: 15px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }

        .service-description ul li:before {
            content: '✓';
            color: var(--accent-color);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .header {
            text-align: center;
            padding: 40px 20px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
            margin-bottom: 40px;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #fff;
            text-shadow: var(--text-shadow);
            animation: fadeInUp 0.5s ease-out;
        }

        .header p {

.hero-hook {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(59, 130, 246, 0.9)), url('https://elitecars-html.asdesignsgalaxy.com/assets/images/Home/Home-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 20px 80px 20px;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 100vh;
}
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        /* Hero Slider Styles - Unique Variables */
        :root {
            --hero-slider-bg: rgba(0, 0, 0, 0.4);
            --hero-slider-overlay: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(255, 140, 0, 0.8));
            --hero-slider-btn-bg: rgba(255, 255, 255, 0.2);
            --hero-slider-btn-hover: rgba(255, 255, 255, 0.3);
            --hero-slider-indicator: rgba(255, 255, 255, 0.4);
            --hero-slider-indicator-active: var(--accent-color);
            --hero-slider-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --hero-slider-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .hero-slider-container {
            position: relative;
            width: 100%;
            height: 400px;
            margin-bottom: 40px;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--hero-slider-shadow);
            background: var(--hero-slider-bg);
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            transition: var(--hero-slider-transition);
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: var(--hero-slider-transition);
            cursor: pointer;
        }

        .hero-slide.active {
            opacity: 1;
            transform: translateX(0);
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            background: rgba(0, 0, 0, 0.2);
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--hero-slider-overlay);
            padding: 30px 20px;
            transform: translateY(100%);
            transition: var(--hero-slider-transition);
        }

        .hero-slide:hover .slide-overlay {
            transform: translateY(0);
        }

        .slide-overlay h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 8px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .slide-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            font-weight: 500;
            margin: 0;
        }

        .hero-slider-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .hero-slider-btn {
            width: 50px;
            height: 50px;
            background: var(--hero-slider-btn-bg);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--hero-slider-transition);
            pointer-events: all;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .hero-slider-btn:hover {
            background: var(--hero-slider-btn-hover);
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .hero-indicator {
            width: 12px;
            height: 12px;
            background: var(--hero-slider-indicator);
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--hero-slider-transition);
            opacity: 0.7;
        }

        .hero-indicator:hover {
            opacity: 1;
            transform: scale(1.2);
        }

        .hero-indicator.active {
            background: var(--hero-slider-indicator-active);
            opacity: 1;
            transform: scale(1.2);
        }

        /* Mobile Responsive for Hero Slider */
        @media (max-width: 768px) {
            .hero-slider-container {
                height: 300px;
                margin-bottom: 20px;
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            .slide-overlay {
                padding: 15px 12px;
            }

            .slide-overlay h3 {
                font-size: 1rem;
                margin-bottom: 4px;
            }

            .slide-overlay p {
                font-size: 0.85rem;
            }

            .hero-slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .hero-slider-controls {
                padding: 0 10px;
            }

            .hero-indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero-slider-container {
                height: 200px;
                margin-bottom: 15px;
                width: 100%;
                max-width: 100%;
                overflow: hidden;
                border-radius: var(--border-radius);
            }

            .slide-overlay {
                padding: 12px 10px;
            }

            .slide-overlay h3 {
                font-size: 0.9rem;
                margin-bottom: 3px;
                line-height: 1.2;
            }

            .slide-overlay p {
                font-size: 0.8rem;
                line-height: 1.3;
            }

            .hero-slider-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }

            .hero-slider-controls {
                padding: 0 8px;
            }

            .hero-indicator {
                width: 8px;
                height: 8px;
            }
        }

        .hook-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hook-badge {
            display: inline-block;
            background: var(--warning-color);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.8rem;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }
        
        .hook-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.1;
        }
        
        .hook-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 25px;
            font-weight: 400;
        }
        
        .hook-stats {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
            color: white;
        }
        
        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 4px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .hook-hero-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hook-hero-image {
            width: 100%;
            margin-bottom: 30px;
            text-align: center;
        }

        .hook-hero-image img {
            width: 100%;
            height: auto;
            max-height: 400px;
            object-fit: contain;
            object-position: center;
            border-radius: var(--border-radius);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mobile Responsive for Hero Image */
        @media (max-width: 768px) {
            .hook-hero-container {
                padding: 0 15px;
            }

            .hook-hero-image {
                margin-bottom: 25px;
            }

            .hook-hero-image img {
                max-height: 300px;
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .hook-hero-container {
                padding: 0 10px;
            }

            .hook-hero-image {
                margin-bottom: 20px;
            }

            .hook-hero-image img {
                max-height: 250px;
                padding: 10px;
            }
        }

        .primary-cta, .secondary-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 25px;
            border-radius: var(--border-radius);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition-smooth);
            border: 2px solid transparent;
        }
        
        .primary-cta {
            background: var(--accent-color);
            color: white;
        }
        
        .primary-cta:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }
        
        .secondary-cta {
            background: transparent;
            color: white;
            border-color: white;
        }
        
        .secondary-cta:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Mobile Responsive for Hook Content */
        @media (max-width: 768px) {
            .hook-content {
                padding: 0 15px;
            }
            
            .hook-badge {
                padding: 5px 12px;
                font-size: 0.75rem;
                margin-bottom: 12px;
            }
            
            .hook-title {
                font-size: 1.8rem;
                margin-bottom: 10px;
                line-height: 1.1;
            }
            
            .hook-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .hook-stats {
                gap: 20px;
                margin-bottom: 20px;
            }
            
            .stat-number {
                font-size: 1.6rem;
                margin-bottom: 3px;
            }
            
            .stat-label {
                font-size: 0.8rem;
            }
            
            .hook-cta {
                gap: 10px;
            }
            
            .primary-cta, .secondary-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
                gap: 6px;
            }
        }

        @media (max-width: 480px) {
            .hook-content {
                padding: 0 10px;
            }
            
            .hook-badge {
                padding: 4px 10px;
                font-size: 0.7rem;
                margin-bottom: 10px;
            }
            
            .hook-title {
                font-size: 1.5rem;
                margin-bottom: 8px;
                line-height: 1.1;
            }
            
            .hook-subtitle {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .hook-stats {
                gap: 15px;
                margin-bottom: 15px;
            }
            
            .stat-number {
                font-size: 1.4rem;
                margin-bottom: 2px;
            }
            
            .stat-label {
                font-size: 0.75rem;
            }
            
            .hook-cta {
                gap: 8px;
                flex-direction: column;
                align-items: center;
            }
            
            .primary-cta, .secondary-cta {
                padding: 8px 18px;
                font-size: 0.85rem;
                gap: 5px;
                width: 100%;
                max-width: 200px;
                justify-content: center;
            }
        }

        .promo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .promo-card {
            background: rgba(255, 255, 255, 0.08);
            border-radius: var(--border-radius);
            padding: 25px 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 320px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
        }
        
        .promo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .promo-card:hover::before {
            opacity: 1;
        }

        .promo-card h2 {
            color: var(--accent-color);
            font-size: 1.4rem;
            margin: 10px 0;
        }

        .promo-card .service-icon {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .promo-card .discount {
            font-size: 1.6rem;
            font-weight: bold;
            color: #fff;
            margin: 10px 0;
            padding: 8px 15px;
            background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
            border-radius: 8px;
            text-shadow: var(--text-shadow);
        }

        .promo-card p {
            font-size: 1rem;
            line-height: 1.5;
            margin: 10px 0;
            flex-grow: 1;
        }

        .promo-card .promo-code {
            font-family: monospace;
            font-size: 1rem;
            padding: 8px 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            margin: 10px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .promo-card .promo-code:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .promo-card .cta-button {
            display: inline-block;
            padding: 10px 20px;
            background: var(--accent-color);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin-top: auto;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .promo-card .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
            background: rgba(255, 140, 0, 0.9);
        }

        .contact-info {
            text-align: center;
            padding: 60px 20px;
            background: var(--gradient-3);
            margin-top: 40px;
        }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            text-shadow: var(--text-shadow);
        }

        .contact-info p {

.promo-card .promo-code:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.promo-card .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    margin-top: auto;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}
            max-width: 1200px;
            margin: 0 auto;
            background: var(--gradient-3);
        }

        .services-section h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            text-shadow: var(--text-shadow);
            position: relative;
            display: inline-block;
        }
        
        .services-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .service-intro {
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 30px auto 50px;
            max-width: 800px;
            color: rgba(255, 255, 255, 0.9);
        }

        .service-description {
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            padding: 30px;
            margin: 25px auto;
            max-width: 900px;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        
        .service-description::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-1);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-description:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            background: rgba(255, 255, 255, 0.08);
        }
        
        .service-description:hover::before {
            opacity: 1;
        }

        .service-description h3 {
            color: var(--accent-color);
            font-size: 1.6rem;
            margin-bottom: 15px;
            text-shadow: var(--text-shadow);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .service-description h3 i {
            font-size: 1.2rem;
            opacity: 0.8;
        }

        .service-description p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .service-description ul {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
        }

        .service-description li {
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 8px 0;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: var(--transition-smooth);
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .service-description li::before {
            content: '✓';
            color: var(--accent-color);
            font-weight: bold;
            font-size: 0.9rem;
        }

        .service-description li:hover {
            transform: translateX(8px);
            background: rgba(255, 255, 255, 0.1);
            border-left-color: var(--accent-color);
        }

        .contact-info {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, var(--gradient-3), var(--gradient-2));
            margin-top: 0;
            position: relative;
        }
        
        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
        }

        .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: var(--accent-color);
            text-shadow: var(--text-shadow);
            position: relative;
            display: inline-block;
        }
        
        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .contact-info p {
            font-size: 1.1rem;
            margin: 15px 0;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .contact-info i {
            color: var(--accent-color);
            font-size: 1.2rem;
            animation: bounce 2s infinite;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 25px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition-smooth);
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .floating-call {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            animation: float 3s ease-in-out infinite;
        }

        .floating-call a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--success-color), var(--accent-color));
            border-radius: 50%;
            color: white;
            text-decoration: none;
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
            transition: var(--transition-smooth);
            position: relative;
            border: 4px solid rgba(255, 255, 255, 0.3);
        }
        
        .floating-call a:hover {
            transform: scale(1.15);
            box-shadow: 0 15px 45px rgba(59, 130, 246, 0.7);
        }

        .floating-call i {
            font-size: 2.2rem;
            animation: pulse 2s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes ripple {
            0% {
                transform: scale(1);
                opacity: 0.4;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .easter-egg-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            flex-direction: column;
            animation: fadeIn 0.3s ease-out;
        }

        .easter-egg-popup.active {
            display: flex;
        }

        .easter-egg-image {
            max-width: 90%;
            max-height: 80vh;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
            animation: scaleIn 0.5s ease-out;
        }

        .easter-egg-back {
            margin-top: 20px;
            padding: 12px 30px;
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .easter-egg-back:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            background: rgba(59, 130, 246, 0.8);
        }

        @keyframes scaleIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .logo-container {
                flex-direction: column;
            }

            .logo-img {
                height: 60px;
            }

            .social-links {
                margin-top: 15px;
            }

            .promo-grid {
                grid-template-columns: 1fr;
                padding: 20px 15px;
                gap: 15px;
            }

            .service-description {
                padding: 20px;
                margin: 15px;
            }

            .header h1 {
                font-size: 2rem;
            }

            .discount {
                font-size: 1.8rem;
            }

            .promo-code {
                font-size: 1rem;
                padding: 8px 15px;
            }
            
            .quick-contact {
                padding: 12px 10px;
            }
            
            .quick-contact a {
                margin: 5px 8px;
                padding: 10px 15px;
                font-size: 0.95rem;
                flex-direction: column;
                gap: 6px;
            }
            
            .quick-contact i {
                font-size: 1.2rem;
            }
            
            .promo-card {
                padding: 20px 15px;
                min-height: auto;
            }
            
            .promo-card h2 {
                font-size: 1.3rem;
            }
            
            .promo-card .service-icon {
                font-size: 1.8rem;
            }
            
            .services-section h2 {
                font-size: 1.8rem;
            }
            
            .service-description h3 {
                font-size: 1.4rem;
            }
            
            .language-list {
                gap: 8px;
            }
            
            .language-item {
                padding: 8px 12px;
                font-size: 0.9rem;
            }
            
            .floating-call {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-call a {
                width: 65px;
                height: 65px;
                border-width: 3px;
            }
            
            .floating-call i {
                font-size: 1.8rem;
            }
            
            .hook-title {
                font-size: 2.2rem;
            }
            
            .hook-subtitle {
                font-size: 1.1rem;
            }
            
            .hook-stats {
                gap: 20px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .primary-cta, .secondary-cta {
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .contact-info {
                padding: 60px 15px;
            }
            
            .contact-info h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .quick-contact a {
                margin: 3px 5px;
                padding: 8px 12px;
                font-size: 0.85rem;
            }
            
            .promo-card {
                padding: 15px 12px;
            }
            
            .service-description {
                padding: 15px;
                margin: 10px;
            }
            
            .hook-title {
                font-size: 1.8rem;
            }
            
            .hook-subtitle {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .hook-stats {
                gap: 15px;
                flex-direction: column;
                align-items: center;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .primary-cta, .secondary-cta {
                padding: 10px 16px;
                font-size: 0.9rem;
                min-width: 140px;
            }
            
            .hook-cta {
                gap: 10px;
                flex-direction: column;
                align-items: center;
            }
            
            .services-section h2 {
                font-size: 1.6rem;
            }
            
            .service-description h3 {
                font-size: 1.2rem;
                flex-direction: column;
                gap: 5px;
            }
            
            .service-description ul {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                padding: 40px 12px;
            }
            
            .contact-info h2 {
                font-size: 1.6rem;
            }
            
            .contact-info p {
                font-size: 1rem;
                flex-direction: column;
                gap: 5px;
            }
            
            .tiktok-slider {
                padding: 20px 15px;
            }
            
            .slider-header h2 {
                font-size: 1.6rem;
            }
            
            .slider-header p {
                font-size: 1rem;
            }
            
            .video-slider {
                height: 600px;
            }
            
            .slider-controls {
                bottom: 10px;
                gap: 8px;
            }
            
            .slider-btn {
                width: 35px;
                height: 35px;
            }
            
            .slider-indicators {
                bottom: 10px;
                right: 10px;
                gap: 6px;
            }
            
            .indicator {
                width: 8px;
                height: 8px;
            }
            
            .slide-placeholder h3 {
                font-size: 1.1rem;
            }
            
            .slide-placeholder p {
                font-size: 0.9rem;
            }
            
            .video-info h3 {
                font-size: 1.1rem;
            }
            
            .video-info p {
                font-size: 0.8rem;
            }
            
            .play-overlay i {
                font-size: 2.5rem;
            }
            
            .play-overlay span {
                font-size: 1rem;
            }
            
            .tiktok-text-card {
                padding: 30px 20px;
            }
            
            .tiktok-icon {
                font-size: 3rem;
                margin-bottom: 15px;
            }
            
            .video-text h3 {
                font-size: 1.5rem;
                margin-bottom: 12px;
            }
            
            .video-text p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .watch-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* TikTok Video Section Styles */
        .tiktok-video-section {
            background: var(--gradient-3);
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .tiktok-slider-container {
            width: 100%;
            max-width: 320px;
            min-width: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .tiktok-video-slider {
            width: 100%;
            height: 800px;
            position: relative;
            overflow: hidden;
            border-radius: var(--border-radius);
            background: rgba(0, 0, 0, 0.3);
        }
        
        .tiktok-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .tiktok-slide.active {
            opacity: 1;
        }
        
        .tiktok-slider-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .tiktok-slider-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        
        .tiktok-slider-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .tiktok-slider-indicators {
            display: flex;
            gap: 8px;
        }
        
        .tiktok-indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition-smooth);
        }
        
        .tiktok-indicator.active {
            background: var(--accent-color);
            transform: scale(1.2);
        }
        
        .auto-play-btn {
            background: var(--accent-color);
            color: white;
            border: none;
        }
        
        .auto-play-btn:hover {
            background: var(--primary-color);
        }
        
        .auto-play-btn.playing {
            background: var(--primary-color);
        }
        
        /* TikTok Video Card Styles */
        .tiktok-video-card {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 40px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .tiktok-video-card:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .tiktok-icon {
            font-size: 4rem;
            color: #00f2ea;
            margin-bottom: 20px;
        }
        
        .video-info h3 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .video-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            margin-bottom: 25px;
            line-height: 1.5;
        }
        
        .watch-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--accent-color);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            transition: var(--transition-smooth);
        }
        
        .tiktok-video-card:hover .watch-button {
            background: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Local Video Container Styles */
        .video-container {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.8);
            border-radius: var(--border-radius);
            overflow: hidden;
        }
        
        .video-container video {
            width: 100%;
            height: 70%;
            object-fit: cover;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        
        .video-info {
            padding: 20px;
            text-align: center;
            color: white;
            background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(20,20,20,0.9));
            width: 100%;
            height: 30%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .video-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--accent-color);
        }
        
        .video-info p {
            font-size: 0.9rem;
            line-height: 1.4;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .slide-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            padding: 20px;
        }
        
        .slide-placeholder i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        /* Modern Video Player Styles */
        .modern-video-section {
            padding: 60px 20px;
            background: var(--gradient-3);
            border-radius: 20px;
            margin: 40px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .video-player-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            align-items: start;
        }

        .video-main-column {
            display: flex;
            flex-direction: column;
            gap: 16px;
            min-width: 0;
        }

        .main-video-display {
            position: relative;
            background: rgba(0, 0, 0, 0.8);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-video {
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: #000;
            border-radius: 15px;
        }

        /* Video aspect ratio adaptations */
        .video-wrapper.horizontal .main-video {
            object-fit: cover;
        }

        .video-wrapper.vertical .main-video {
            object-fit: contain;
            max-height: 100%;
        }

        .video-wrapper.square .main-video {
            object-fit: cover;
            max-width: 100%;
        }

        .video-overlay {
            display: none;
        }

        .video-controls-container {
            background: rgba(0, 0, 0, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 15px;
            backdrop-filter: blur(14px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
            padding: 14px;
        }

        .video-controls-overlay {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 0;
            background: transparent;
            backdrop-filter: none;
            border-radius: 0;
            margin: 0;
            border: none;
            box-shadow: none;
            width: 100%;
        }

        .video-meta-container {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 15px;
            padding: 16px;
            backdrop-filter: blur(14px);
        }

        .video-meta-container h3 {
            margin: 0 0 6px;
            font-size: 1.2rem;
            color: #fff;
        }

        .video-meta-container p {
            margin: 0;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }

        .play-pause-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--accent-color);
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .play-pause-btn:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        .video-progress {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            border-radius: 3px;
            width: 0%;
            transition: width 0.1s linear;
        }

        .time-display {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .video-actions {
            display: flex;
            gap: 10px;
        }

        .control-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .video-info-overlay {
            padding: 30px 20px 20px;
            text-align: center;
        }

        .video-info-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: white;
            text-shadow: var(--text-shadow);
        }

        .video-info-overlay p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .video-playlist {
            background: rgba(0, 0, 0, 0.6);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .playlist-header {
            padding: 20px;
            background: var(--gradient-1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .playlist-header h3 {
            font-size: 1.2rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .playlist-controls {
            display: flex;
            gap: 10px;
        }

        .playlist-btn {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .playlist-btn:hover,
        .playlist-btn.active {
            background: var(--accent-color);
            transform: scale(1.1);
        }

.playlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.playlist-item.active {
    background: var(--accent-color);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.item-thumbnail {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #333, #555);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-thumbnail .thumbnail-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.item-thumbnail:hover .thumbnail-video {
    transform: scale(1.05);
}

.item-thumbnail.horizontal {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.item-thumbnail.vertical {
    background: linear-gradient(135deg, #059669, #10b981);
}

.item-thumbnail.square {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.aspect-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.playlist-item:hover .thumbnail-overlay {
    opacity: 1;
}

.item-info {
    flex: 1;
}

.item-info h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.item-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.item-duration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.item-controls {
    display: flex;
    gap: 8px;
}

.item-control-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-control-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.playlist-item.active .item-control-btn {
    background: rgba(255, 255, 255, 0.3);
}

.playlist-item.active .item-control-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.playlist-items {
    max-height: 480px;
    overflow-y: auto;
}

.main-video-display {
    height: 300px;
    min-height: 250px;
}

.video-playlist {
    height: 400px;
}

.video-controls-overlay {
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
}

.play-pause-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.control-btn {
    width: 35px;
    height: 35px;
}

.video-info-overlay h3 {
    font-size: 1.4rem;
}

.video-info-overlay p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-player-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }

    .main-video-display {
        height: 300px;
        min-height: 250px;
    }

    .video-playlist {
        height: 400px;
    }

    .video-controls-overlay {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px;
    }

    .play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .control-btn {
        width: 35px;
        height: 35px;
    }

    .video-info-overlay h3 {
        font-size: 1.4rem;
    }

    .video-info-overlay p {
        font-size: 0.9rem;
    }

    /* Mobile aspect ratio handling */
    .video-wrapper.vertical .main-video {
        height: 100%;
        width: auto;
        max-width: 100%;
    }

    .video-wrapper.horizontal .main-video {
        width: 100%;
        height: auto;
        max-height: 100%;
    }

    .video-wrapper.square .main-video {
        width: 100%;
        height: auto;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .modern-video-section {
        padding: 30px 15px;
        margin: 20px 0;
    }

    .main-video-display {
        height: 250px;
        min-height: 200px;
    }

    .video-playlist {
        height: 350px;
    }

    .playlist-item {
        padding: 12px 15px;
    }

    .item-thumbnail {
        width: 60px;
        height: 45px;
    }

    .video-controls-overlay {
        padding: 10px;
    }

    .play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .video-info-overlay {
        padding: 20px 15px 15px;
    }

    .video-info-overlay h3 {
        font-size: 1.2rem;
    }

    .video-info-overlay p {
        font-size: 0.8rem;
    }
}

/* Video Player Responsive Design */
@media (min-width: 1400px) {
    .modern-video-section {
        padding: 80px 20px;
    }
    
    .video-player-container {
        max-width: 1400px;
        gap: 40px;
    }
    
    .main-video-display {
        height: 500px;
    }
    
    .video-playlist {
        height: 500px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .modern-video-section {
        padding: 70px 20px;
    }
    
    .video-player-container {
        max-width: 1200px;
        gap: 35px;
    }
    
    .main-video-display {
        height: 450px;
    }
    
    .video-playlist {
        height: 450px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .modern-video-section {
        padding: 60px 20px;
    }
    
    .video-player-container {
        max-width: 1024px;
        gap: 30px;
    }
    
    .main-video-display {
        height: 400px;
    }
    
    .video-playlist {
        height: 400px;
    }
    
    .playlist-item {
        padding: 15px;
    }
    
    .item-thumbnail {
        width: 90px;
        height: 65px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .modern-video-section {
        padding: 50px 15px;
    }
    
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 768px;
    }
    
    .main-video-display {
        height: 350px;
        min-height: 300px;
    }
    
    .video-playlist {
        height: 300px;
    }
    
    .playlist-items {
        max-height: 280px;
    }
    
    .playlist-item {
        padding: 12px 15px;
    }
    
    .item-thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .video-main-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .modern-video-section {
        padding: 40px 15px;
        margin: 30px 0;
    }
    
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 576px;
    }
    
    .main-video-display {
        height: 320px;
        min-height: 280px;
    }
    
    .video-playlist {
        height: 280px;
    }
    
    .playlist-items {
        max-height: 260px;
    }
    
    .playlist-item {
        padding: 10px 12px;
    }
    
    .item-thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .item-info h4 {
        font-size: 0.9rem;
    }
    
    .item-info p {
        font-size: 0.8rem;
    }
    
    .item-duration {
        font-size: 0.8rem;
    }
    
    .video-controls-overlay {
        padding: 12px;
        gap: 8px;
    }
    
    .play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .video-meta-container {
        padding: 12px;
    }
    
    .video-meta-container h3 {
        font-size: 1rem;
    }
    
    .video-meta-container p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .modern-video-section {
        padding: 30px 12px;
        margin: 20px 0;
    }
    
    .video-player-container {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .main-video-display {
        height: 280px;
        min-height: 240px;
    }
    
    .video-playlist {
        height: 250px;
    }
    
    .playlist-items {
        max-height: 230px;
    }
    
    .playlist-item {
        padding: 8px 10px;
        gap: 10px;
    }
    
    .item-thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .aspect-indicator {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    .item-info {
        flex: 1;
        min-width: 0;
    }
    
    .item-info h4 {
        font-size: 0.85rem;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .item-info p {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .item-duration {
        font-size: 0.75rem;
        white-space: nowrap;
    }
    
    .item-controls {
        gap: 6px;
    }
    
    .item-control-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .video-controls-overlay {
        padding: 10px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .play-pause-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .progress-bar {
        height: 6px;
    }
    
    .time-display {
        font-size: 0.75rem;
        min-width: 30px;
    }
    
    .video-main-column {
        gap: 12px;
    }
    
    .video-meta-container {
        padding: 10px;
    }
    
    .video-meta-container h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .video-meta-container p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

@media (max-width: 380px) {
    .modern-video-section {
        padding: 25px 10px;
    }
    
    .main-video-display {
        height: 250px;
        min-height: 200px;
    }
    
    .video-playlist {
        height: 220px;
    }
    
    .playlist-items {
        max-height: 200px;
    }
    
    .playlist-item {
        padding: 6px 8px;
        gap: 8px;
    }
    
    .item-thumbnail {
        width: 50px;
        height: 38px;
    }
    
    .item-info h4 {
        font-size: 0.8rem;
    }
    
    .item-info p {
        font-size: 0.7rem;
    }
    
    .item-duration {
        font-size: 0.7rem;
    }
    
    .item-control-btn {
        width: 26px;
        height: 26px;
        font-size: 0.65rem;
    }
    
    .video-controls-overlay {
        padding: 8px;
        gap: 4px;
    }
    
    .play-pause-btn {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    .control-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .progress-bar {
        height: 4px;
    }
    
    .time-display {
        font-size: 0.7rem;
        min-width: 25px;
    }
    
    .video-meta-container {
        padding: 8px;
    }
    
    .video-meta-container h3 {
        font-size: 0.9rem;
    }
    
    .video-meta-container p {
        font-size: 0.75rem;
    }
}

/* TikTok Slider Responsive Design */
@media (min-width: 1400px) {
    .tiktok-slider {
        height: 700px;
    }
    
    .tiktok-slide {
        height: 700px;
    }
    
    .tiktok-video-card {
        height: 700px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .tiktok-slider {
        height: 650px;
    }
    
    .tiktok-slide {
        height: 650px;
    }
    
    .tiktok-video-card {
        height: 650px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .tiktok-slider {
        height: 600px;
    }
    
    .tiktok-slide {
        height: 600px;
    }
    
    .tiktok-video-card {
        height: 600px;
    }
    
    .tiktok-slider-controls {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .tiktok-slider {
        height: 550px;
    }
    
    .tiktok-slide {
        height: 550px;
    }
    
    .tiktok-video-card {
        height: 550px;
    }
    
    .tiktok-slider-controls {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .slider-indicators {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .tiktok-slider {
        height: 500px;
    }
    
    .tiktok-slide {
        height: 500px;
    }
    
    .tiktok-video-card {
        height: 500px;
    }
    
    .tiktok-slider-controls {
        bottom: 12px;
        left: 12px;
        right: 12px;
        gap: 8px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-indicators {
        bottom: 12px;
        right: 12px;
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .slide-placeholder h3 {
        font-size: 1.2rem;
    }
    
    .slide-placeholder p {
        font-size: 0.9rem;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .play-overlay i {
        font-size: 2.5rem;
    }
    
    .play-overlay span {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .tiktok-slider {
        height: 450px;
    }
    
    .tiktok-slide {
        height: 450px;
    }
    
    .tiktok-video-card {
        height: 450px;
    }
    
    .tiktok-slider-controls {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .slider-indicators {
        bottom: 10px;
        right: 10px;
        gap: 5px;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .slide-placeholder h3 {
        font-size: 1.1rem;
    }
    
    .slide-placeholder p {
        font-size: 0.85rem;
    }
    
    .video-info {
        padding: 12px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.75rem;
    }
    
    .play-overlay i {
        font-size: 2.2rem;
    }
    
    .play-overlay span {
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .tiktok-slider {
        height: 400px;
    }
    
    .tiktok-slide {
        height: 400px;
    }
    
    .tiktok-video-card {
        height: 400px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .indicator {
        width: 5px;
        height: 5px;
    }
    
    .slide-placeholder h3 {
        font-size: 1rem;
    }
    
    .slide-placeholder p {
        font-size: 0.8rem;
    }
    
    .video-info h3 {
        font-size: 0.95rem;
    }
    
    .video-info p {
        font-size: 0.7rem;
    }
    
    .play-overlay i {
        font-size: 2rem;
    }
    
    .play-overlay span {
        font-size: 0.75rem;
    }
}

/* Animated Spoiler Styles */
.services-section {
    background: var(--card-bg);
    border-radius: 20px;
    margin: 40px auto;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    max-width: 1200px;
    width: 100%;
}

.spoiler-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.spoiler-header::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;
}

.spoiler-header:hover::before {
    left: 100%;
}

.spoiler-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.spoiler-header-content {
    flex: 1;
}

.spoiler-header h2 {
    color: white;
    margin: 0 0 8px 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: var(--text-shadow);
    animation: fadeInUp 0.6s ease-out;
}

.spoiler-summary {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.spoiler-toggle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.spoiler-header:hover .spoiler-toggle {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.spoiler-toggle i {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.spoiler-toggle.active i {
    transform: rotate(180deg);
}

.spoiler-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
}

.spoiler-content.active {
    max-height: 3000px;
    padding: 40px;
}

.spoiler-content .service-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.spoiler-content .service-description {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    margin-bottom: 30px;
}

.spoiler-content .service-description:nth-child(2) { animation-delay: 0.1s; }
.spoiler-content .service-description:nth-child(3) { animation-delay: 0.2s; }
.spoiler-content .service-description:nth-child(4) { animation-delay: 0.3s; }
.spoiler-content .service-description:nth-child(5) { animation-delay: 0.4s; }
.spoiler-content .service-description:nth-child(6) { animation-delay: 0.5s; }
.spoiler-content .service-description:nth-child(7) { animation-delay: 0.6s; }
.spoiler-content .service-description:nth-child(8) { animation-delay: 0.7s; }
.spoiler-content .service-description:nth-child(9) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design for Spoiler */
@media (max-width: 768px) {
    .spoiler-header {
        padding: 20px 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .spoiler-header h2 {
        font-size: 1.4rem;
    }

    .spoiler-summary {
        font-size: 1rem;
    }

    .spoiler-toggle {
        width: 40px;
        height: 40px;
    }

    .spoiler-content.active {
        padding: 25px;
    }

    .spoiler-content .service-description {
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .spoiler-header {
        padding: 15px 20px;
    }

    .spoiler-header h2 {
        font-size: 1.2rem;
    }

    .spoiler-summary {
        font-size: 0.9rem;
    }

    .spoiler-toggle {
        width: 35px;
        height: 35px;
    }

    .spoiler-content.active {
        padding: 20px;
    }
}

/* Desktop Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hook-title {
        font-size: 3.5rem;
    }
    
    .hook-subtitle {
        font-size: 1.5rem;
    }
    
    .spoiler-header h2 {
        font-size: 2.2rem;
    }
    
    .spoiler-summary {
        font-size: 1.3rem;
    }
    
    .services-section {
        max-width: 1400px;
        margin: 40px auto;
    }
    
    .spoiler-content .service-description {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .spoiler-content .service-description h3 {
        grid-column: 1 / -1;
        font-size: 1.8rem;
    }
    
    .spoiler-content .service-description p {
        grid-column: 1 / -1;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .spoiler-content .service-description ul {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .spoiler-content .service-description li {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

/* Desktop Standard */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hook-title {
        font-size: 3rem;
    }
    
    .spoiler-header h2 {
        font-size: 2rem;
    }
}

/* Tablet Landscape */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1024px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hook-title {
        font-size: 2.8rem;
    }
    
    .hook-subtitle {
        font-size: 1.2rem;
    }
    
    .spoiler-header {
        padding: 25px 30px;
    }
    
    .spoiler-header h2 {
        font-size: 1.8rem;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 768px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hook-title {
        font-size: 2.4rem;
    }
    
    .hook-subtitle {
        font-size: 1.1rem;
    }
    
    .hook-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 30px 15px;
    }
    
    .spoiler-header {
        padding: 22px 28px;
    }
    
    .spoiler-header h2 {
        font-size: 1.6rem;
    }
    
    .spoiler-summary {
        font-size: 1rem;
    }
    
    .spoiler-toggle {
        width: 45px;
        height: 45px;
    }
    
    .spoiler-content.active {
        padding: 30px;
    }
    
    .service-description {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .service-description h3 {
        font-size: 1.5rem;
    }
    
    .service-description ul {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile Landscape */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 576px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .logo-container {
        flex-direction: column;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .social-links {
        margin-top: 15px;
    }
    
    .header-address {
        display: none;
    }
    
    .hook-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hook-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hook-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .hook-cta {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }
    
    .promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 18px;
        padding: 25px 15px;
    }
    
    .promo-card {
        padding: 20px 18px;
        min-height: 280px;
    }
    
    .promo-card h2 {
        font-size: 1.3rem;
    }
    
    .promo-card .service-icon {
        font-size: 1.8rem;
    }
    
    .discount {
        font-size: 1.6rem;
    }
    
    .promo-code {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .spoiler-header {
        padding: 20px 25px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .spoiler-header h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .spoiler-summary {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .spoiler-toggle {
        width: 42px;
        height: 42px;
    }
    
    .spoiler-content.active {
        padding: 28px;
    }
    
    .service-description {
        padding: 22px;
        margin-bottom: 22px;
    }
    
    .service-description h3 {
        font-size: 1.4rem;
    }
    
    .service-description p {
        font-size: 0.95rem;
    }
    
    .service-description ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .service-description li {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .contact-info {
        padding: 50px 15px;
    }
    
    .contact-info h2 {
        font-size: 1.7rem;
    }
    
    .contact-info p {
        font-size: 1rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .floating-call {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-call a {
        width: 55px;
        height: 55px;
    }
    
    .floating-call i {
        font-size: 1.5rem;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 12px;
    }
    
    body {
        font-size: 14px;
    }
    
    .quick-contact {
        padding: 8px 12px;
        flex-direction: column;
        gap: 8px;
    }
    
    .quick-contact a {
        margin: 0;
        font-size: 0.85rem;
        padding: 8px 12px;
        gap: 6px;
        flex: 1;
        justify-content: center;
        max-width: 100%;
        width: 100%;
    }
    
    .quick-contact i {
        font-size: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text p {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 15px;
        margin-top: 10px;
    }
    
    .social-links a {
        font-size: 1.3rem;
    }
    
    .header {
        padding: 30px 15px;
        margin-bottom: 30px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1.1rem;
    }
    
    .hero-hook {
        padding: 60px 15px;
    }
    
    .hook-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hook-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hook-stats {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .hook-cta {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 250px;
        padding: 12px 18px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 12px;
    }
    
    .promo-card {
        padding: 18px 15px;
        min-height: 250px;
        text-align: center;
    }
    
    .promo-card h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .promo-card .service-icon {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .promo-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .discount {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .promo-code {
        font-size: 0.85rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .cta-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .language-support {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .language-support h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .language-list {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .language-item {
        padding: 8px 15px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .spoiler-header {
        padding: 18px 20px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .spoiler-header h2 {
        font-size: 1.3rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .spoiler-summary {
        font-size: 0.9rem;
        text-align: center;
        line-height: 1.4;
    }
    
    .spoiler-toggle {
        width: 38px;
        height: 38px;
    }
    
    .spoiler-toggle i {
        font-size: 1rem;
    }
    
    .spoiler-content.active {
        padding: 20px 15px;
    }
    
    .spoiler-content .service-intro {
        font-size: 1rem;
        margin-bottom: 20px;
        text-align: center;
        line-height: 1.5;
    }
    
    .service-description {
        padding: 18px 15px;
        margin-bottom: 18px;
        border-radius: 12px;
    }
    
    .service-description h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
        line-height: 1.3;
        flex-direction: column;
        gap: 5px;
    }
    
    .service-description h3 i {
        font-size: 1rem;
    }
    
    .service-description p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-description ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .service-description li {
        font-size: 0.85rem;
        padding: 8px 12px;
        border-radius: 6px;
        line-height: 1.4;
        align-items: flex-start;
        gap: 8px;
    }
    
    .service-description li::before {
        font-size: 0.8rem;
        margin-top: 2px;
    }
    
    .contact-info {
        padding: 40px 15px;
        margin-top: 0;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .contact-info i {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .contact-card {
        padding: 20px;
        text-align: center;
    }
    
    .floating-call {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-call a {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .floating-call i {
        font-size: 1.3rem;
    }
    
    .easter-egg-popup {
        padding: 20px;
    }
    
    .easter-egg-image {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .easter-egg-back {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .container {
        padding: 0 10px;
    }
    
    body {
        font-size: 13px;
    }
    
    .hook-title {
        font-size: 1.6rem;
    }
    
    .spoiler-header h2 {
        font-size: 1.2rem;
    }
    
    .spoiler-summary {
        font-size: 0.85rem;
    }
    
    .service-description {
        padding: 15px 12px;
    }
    
    .service-description h3 {
        font-size: 1.1rem;
    }
    
    .service-description p {
        font-size: 0.85rem;
    }

    .service-description li {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .contact-info h2 {
        font-size: 1.4rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 60px 0 20px 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-logo {
    text-align: left;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▸';
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Mobile Responsive for Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding: 40px 0 20px 0;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-footer {
        padding: 30px 0 15px 0;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-bottom-links {
        gap: 15px;
        flex-wrap: wrap;
    }
}