
/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3385d6;
    --secondary-color: #ff6600;
    --accent-color: #00cc66;
    --dark-bg: #0a0e1a;
    --dark-bg-2: #1a1f35;
    --light-bg: #f8fafc;
    --light-bg-2: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg-2);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    background-color: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #3385d6 0%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav a:hover {
    color: white;
}

.nav a:hover::after {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0066cc 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-video-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 204, 102, 0.15) 0%, transparent 50%);
    animation: particleFloat 30s linear infinite;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    transform: translateY(0);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.6);
    transform: translateY(-2px);
}

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

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

/* ==================== STATS SECTION ==================== */
.stats {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ==================== SECTION STYLES ==================== */
.about, .services, .heslo, .professional-use, .gallery-section {
    padding: 6rem 0;
}

.about {
    background: white;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.about p {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about .highlight {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
    display: block;
    margin-top: 2rem;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    background: var(--light-bg);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.service-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link::after {
    content: '→';
    font-size: 1.25rem;
}

/* ==================== HESLO TRAINING SECTION ==================== */
.heslo {
    background: white;
}

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

.feature-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-item:hover h3 {
    color: white;
}

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

.feature-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.practice-section {
    text-align: center;
    padding: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 1.5rem;
    margin-top: 3rem;
    box-shadow: var(--shadow-xl);
}

.practice-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.practice-section p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ==================== VIDEO PLACEHOLDER ==================== */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.6);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 30px solid white;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    margin-left: 8px;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}


.gallery-section {
    background: white;
}

















/* ==================== HOME TRIAL & PROFESSIONAL ==================== */
.home-trial {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-2));
    color: white;
    text-align: center;
}

.home-trial h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.home-trial p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    opacity: 0.95;
}

.attention {
    color: var(--secondary-color) !important;
    font-weight: 700;
    font-size: 1.375rem !important;
    margin: 2rem auto !important;
}

.cta-text {
    font-size: 1.25rem !important;
    font-weight: 600;
    margin: 2rem auto !important;
}

.professional-use {
    background: white;
    text-align: center;
}

.professional-use p {
    font-size: 1.125rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact > .container > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

.contact-item {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.contact-item h3 {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.footer-section p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

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

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

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

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}



/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid,
    
}

@media (max-width: 768px) {
    /* Header improvements */
    .header {
        padding: 0.75rem 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .nav ul {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .nav a {
        font-size: 0.8rem;
    }
    
    /* Hero section - much better mobile layout */
    .hero {
        min-height: 85vh;
        padding: 1rem 0 !important;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 0.75rem;
    }
    
    .hero p {
        font-size: clamp(0.875rem, 3vw, 1rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Stats section */
    .stats {
        padding: 3rem 0;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Section padding */
    .about, .services, .heslo, .professional-use, 
    .gallery-section, .home-trial, .contact, .testimonials {
        padding: 3.5rem 0 !important;
    }
    
    section h2 {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .practice-section {
        padding: 2.5rem 1.5rem;
    }
    
    .practice-section h3 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    /* Video placeholder */
    .video-placeholder {
        margin: 2rem 0;
        aspect-ratio: 16/9;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button::after {
        border-left-width: 25px;
        border-top-width: 15px;
        border-bottom-width: 15px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    /* Gallery */
    
    
    
    
    /* Home trial */
    .home-trial {
        padding: 3.5rem 0 !important;
    }
    
    .home-trial p {
        font-size: 1rem;
    }
    
    .attention {
        font-size: 1.125rem !important;
        margin: 1.5rem auto !important;
    }
    
    .cta-text {
        font-size: 1.0625rem !important;
        margin: 1.5rem auto !important;
    }
    
    /* Contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        padding: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 1rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.125rem;
    }
    
    .nav ul {
        gap: 0.75rem;
    }
    
    .nav a {
        font-size: 0.75rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 0.875rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card,
    .feature-item,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .practice-section {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 3rem 0 !important;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* Fix for very tall mobile screens */
@media (min-height: 900px) and (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.8s ease-out;
}

/* ==================== UTILITIES ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
    

/* ==================== DARK THEME ==================== */
:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3385ff;
    --dark-bg: #0a0a0f;
    --dark-bg-2: #111118;
    --dark-bg-3: #1a1a24;
    --dark-card: #16161f;
    --text-dark: #ffffff;
    --text-light: #a8b2c8;
    --text-muted: #6b7280;
    --border-color: #2d2d3d;
}

body {
    background-color: var(--dark-bg) !important;
    color: var(--text-dark) !important;
}

section {
    background-color: var(--dark-bg) !important;
}

section:nth-child(even) {
    background-color: var(--dark-bg-2) !important;
}

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

p {
    color: var(--text-light) !important;
}

.header {
    background-color: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color) !important;
}

.nav a {
    color: var(--text-light) !important;
}

.nav a:hover {
    color: var(--primary-color) !important;
}

.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-3) 100%) !important;
}

.service-card,
.feature-item,
.testimonial-card,
.trial-card {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-dark) !important;
}

.service-card:hover,
.feature-item:hover,
.testimonial-card:hover {
    border-color: var(--primary-color) !important;
    box-shadow: 0 8px 32px rgba(0, 102, 255, 0.15) !important;
}

.contact-form,
.video-container {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--border-color) !important;
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: var(--dark-bg-2) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-dark) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1) !important;
}

.btn {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.btn:hover {
    background-color: var(--primary-light) !important;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4) !important;
}

.footer {
    background-color: var(--dark-bg-3) !important;
    border-top: 1px solid var(--border-color) !important;
}



/* ==================== CONTACT SECTION DARK THEME ==================== */

.contact {
    background-color: var(--dark-bg) !important;
}

.contact h2 {
    color: var(--text-dark) !important;
}

.contact .section-subtitle {
    color: var(--text-light) !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--border-color) !important;
    padding: 3rem;
    border-radius: 12px;
}

.contact-info h3 {
    color: var(--text-dark) !important;
    margin-bottom: 2rem;
}

.contact-info p {
    color: var(--text-light) !important;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-bg-2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    background: var(--dark-bg-3);
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 102, 255, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-item-content h4 {
    color: var(--text-dark) !important;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--text-light) !important;
    font-size: 0.9375rem;
    margin: 0;
}

.contact-item-content a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--primary-light) !important;
}

.contact-form {
    background-color: var(--dark-card) !important;
    border: 1px solid var(--border-color) !important;
    padding: 3rem;
    border-radius: 12px;
}

.contact-form h3 {
    color: var(--text-dark) !important;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: var(--text-light) !important;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    color: var(--text-dark) !important;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background-color: var(--dark-bg-2) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    color: var(--text-dark) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color) !important;
    background-color: var(--dark-bg-3) !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1) !important;
}

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

.contact-form button[type="submit"] {
    width: 100%;
    padding: 1.25rem 2rem;
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button[type="submit"]:hover {
    background-color: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3) !important;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}



/* ==================== VIDEO LOADING OPTIMIZATION ==================== */



/* Aspect ratio container to prevent layout shift */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loading state */
video[poster] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Skeleton loading animation */
@keyframes skeleton-loading {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.video-loading {
    background: linear-gradient(
        90deg,
        var(--dark-card) 0%,
        var(--dark-bg-3) 50%,
        var(--dark-card) 100%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

/* Play button overlay (optional) */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-button:hover {
    background: var(--primary-light);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

/* Hide play button when video is playing */
video:not([paused]) ~ .video-play-button {
    opacity: 0;
    pointer-events: none;
}



/* ==================== HERO VIDEO BACKGROUND ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;  /* Remove any padding */
    margin: 0;   /* Remove any margin */
    width: 100%; /* Full width */
}

.hero-video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;  /* Full viewport width */
    height: 100%;
    z-index: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-video-placeholder video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100vw;   /* Full viewport width */
    min-height: 100%;
    width: 100vw;       /* Full viewport width */
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay on video for better text readability */
.hero-video-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 1;
}

/* Hero content should be above video */
.hero-content,
.hero h1,
.hero p,
.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px; /* Content max-width */
    margin: 0 auto;
    padding: 0 2rem;
}

/* Remove controls for background video */
.hero-video-placeholder video::-webkit-media-controls {
    display: none !important;
}

.hero-video-placeholder video::-webkit-media-controls-enclosure {
    display: none !important;
}




/* ==================== FULL WIDTH PAGE ==================== */

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Ensure hero video fills entire viewport width */
.hero {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    left: 0;
    right: 0;
}

.hero-video-placeholder {
    width: 100vw !important;
    left: 0;
    right: 0;
}



/* ==================== VIDEO SECTION (HESLO) - LARGER SIZE ==================== */

.video-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.video-section .container {
    max-width: 1400px; /* Wider container */
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Increased from default */
    margin: 0 auto;
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Make HESLO video even larger on big screens */
@media (min-width: 1200px) {
    .video-section .video-container {
        max-width: 1400px; /* Even wider on large screens */
    }
}

/* Responsive - still large on tablets */
@media (max-width: 1024px) {
    .video-section .video-container {
        max-width: 95%; /* Almost full width on tablets */
    }
}

/* Mobile */
@media (max-width: 768px) {
    .video-section .video-container {
        max-width: 100%; /* Full width on mobile */
        border-radius: 8px;
    }
}


/* Consistent aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fit entire image, no crop */
    transition: all 0.3s ease;
    padding: 1rem; /* Add padding so images don't touch edges */
}

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

/* Caption overlay on hover */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-caption p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.lightbox-caption h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.lightbox-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-caption {
        padding: 0 1rem;
    }
    
    .lightbox-caption h4 {
        font-size: 1.25rem;
    }
    
    .lightbox-caption p {
        font-size: 0.875rem;
    }
}


/* ==================== GALLERY SECTION - SIMPLE CAPTIONS ==================== */

.gallery-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

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

.gallery-item {
    position: relative;
    background: var(--dark-bg-2);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.3);
    border-color: var(--primary-color);
}

/* Image container with aspect ratio */
.gallery-item > img {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: contain; /* Fit entire image, no crop */
    background: var(--dark-bg-2);
    padding: 1.5rem; /* Padding around image */
    display: block;
}

.gallery-item:hover > img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Simple caption at bottom - always visible */
.gallery-item .caption {
    padding: 1.25rem 1.5rem;
    background: var(--dark-bg-2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .caption {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(0, 102, 255, 0.05));
    color: white;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--dark-bg-2);
    padding: 2rem;
}

.lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 1.5rem;
    padding: 0 2rem;
    max-width: 800px;
}

.lightbox-caption p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item > img {
        padding: 1rem;
        min-height: 200px;
    }
    
    .gallery-item .caption {
        padding: 1rem;
        font-size: 0.875rem;
        min-height: 50px;
    }
    
    .lightbox-close,
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-content img {
        max-height: 60vh;
        padding: 1rem;
    }
    
    .lightbox-caption {
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .lightbox-caption p {
        font-size: 1rem;
    }
}

.advent-banner-style-1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.advent-banner-style-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1454789476662-53eb23ba5907?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.advent-banner-style-1 .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    flex-wrap: wrap;
}

.advent-banner-style-1 .banner-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.advent-banner-style-1 .banner-text h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.advent-banner-style-1 .banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #bfdbfe;
}

.advent-banner-style-1 .banner-cta {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.advent-banner-style-1 .banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.5);
}

.advent-banner-style-2 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1rem;
    border-bottom: 3px solid #3b82f6;
}

.advent-banner-style-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
}

.advent-banner-style-2 .banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    flex-wrap: wrap;
    background: rgba(15, 23, 42, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.advent-banner-style-2 .banner-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.advent-banner-style-2 .banner-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.5));
    animation: pulse 2s ease-in-out infinite;
}

.advent-banner-style-2 .banner-text h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advent-banner-style-2 .banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #94a3b8;
}

.advent-banner-style-2 .banner-cta {
    padding: 0.875rem 2rem;
    background: rgba(59, 130, 246, 0.2);
    border: 2px solid rgba(59, 130, 246, 0.6);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.advent-banner-style-2 .banner-cta::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;
}

.advent-banner-style-2 .banner-cta:hover {
    background: rgba(59, 130, 246, 0.4);
    border-color: rgba(59, 130, 246, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.5);
}

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

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

.banner-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
}

.banner-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.2rem;
    z-index: 10;
}

.banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.banner-cta::after {
    content: '→';
    margin-left: 0.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.banner-cta:hover::after {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .banner-left {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .banner-text h3 {
        font-size: 1.25rem !important;
    }
    
    .banner-cta {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

