:root {
    --primary-color: #28a745;
    --secondary-color: #007bff;
    --accent-color: #ffc107;
    --text-primary: #212529;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --gradient-secondary: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 15px 35px rgba(0,0,0,0.15);
    --shadow-heavy: 0 25px 50px rgba(0,0,0,0.25);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Compact Navigation */
.navbar {
    padding: 0.5rem 0;
    min-height: 50px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.navbar-brand img {
    height: 30px;
    margin-right: 8px;
    transition: var(--transition);
}

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

.navbar.scrolled {
    background: rgba(40, 167, 69, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Hero Section - Clean Background */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/intro-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Clean hero content */
.hero-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    color: #333;
}

/* Clean hero title */
    .hero-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

/* Clean hero subtitle */
.hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.4;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero badge and features */
.hero-badge {
    margin-bottom: 1rem;
}

    .hero-badge .badge {
        font-size: 0.65rem;
        font-weight: 500;
        padding: 3px 6px;
    }

.hero-features {
    margin-bottom: 0.75rem;
}

    .hero-feature-item {
        display: inline-flex;
        align-items: center;
        padding: 2px 6px;
        background: rgba(40, 167, 69, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(40, 167, 69, 0.2);
        font-size: 0.65rem;
        font-weight: 500;
        margin: 1px;
    }

.hero-feature-item i {
    color: #28a745;
    margin-right: 4px;
    font-size: 0.7rem;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 0.75rem;
}

    .btn-outline-light {
        padding: 4px 10px;
        font-size: 0.7rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

/* Clean hero content */
.hero-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
    color: #333;
}

/* Clean hero title */
    .hero-title {
        font-size: 1.2rem;
    }

/* Clean hero subtitle */
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean hero button */
.btn-hero {
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero:hover {
    background: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Enhanced Login Button */
.btn-login {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-login:hover {
    background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.5);
}

.btn-login:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-login:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.3);
}

/* Hero badge and features */
.hero-badge {
    margin-bottom: 1rem;
}

    .hero-badge .badge {
        font-size: 0.65rem;
        font-weight: 500;
        padding: 3px 6px;
    }

.hero-features {
    margin-bottom: 1rem;
}

    .hero-feature-item {
        display: inline-flex;
        align-items: center;
        padding: 3px 6px;
        background: rgba(40, 167, 69, 0.1);
        border-radius: 8px;
        border: 1px solid rgba(40, 167, 69, 0.2);
        font-size: 0.65rem;
        font-weight: 500;
        margin: 1px;
    }

.hero-feature-item i {
    color: #28a745;
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 1.5rem;
}

    .btn-outline-light {
        padding: 5px 12px;
        font-size: 0.7rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

.btn-outline-light:hover {
    background: #28a745;
    color: white;
    border-color: #28a745;
    transform: translateY(-2px);
}

/* Clean Feature Cards */
.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.feature-img {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.feature-img i {
    display: none;
}

    .feature-content {
        padding: 1rem;
    }

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

    .about-img {
        margin-bottom: 1rem;
    }

    .d-lg-none .lang-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: white;
    font-size: 1rem;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Clean Stats Section */
.stats-section {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

/* Clean Testimonials */
.testimonials-section {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('../img/testimonials-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 0.75rem;
    border: 2px solid white;
    overflow: hidden;
}

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

.testimonial-avatar i {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(40, 167, 69, 0.3);
}

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

.testimonial-avatar i {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(40, 167, 69, 0.3);
}

.testimonial-avatar i {
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: white;
}

.testimonial-role {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-indicators {
    bottom: -30px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    margin: 0 4px;
}

.carousel-indicators button.active {
    background: #28a745;
}

/* Clean Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 30px 0 20px;
    border-top: 3px solid var(--primary-color);
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 4px 8px;
    margin: 0 2px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.lang-btn:hover, .lang-btn.active {
    background: white;
    color: #28a745;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    position: relative;
}

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

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Simple Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Clean About Section */
.about-section {
    background: var(--bg-light);
    padding: 50px 0;
}

.about-img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

/* Clean Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 160px;
}

.portfolio-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 167, 69, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 20px 15px;
        max-width: 480px;
    }
}

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

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

    .hero-content {
        padding: 18px 15px;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0;
        min-height: 45px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 25px;
        margin-right: 6px;
    }

    .hero-section {
        padding: 45px 0 25px;
        min-height: 55vh;
    }

    .hero-title {
        font-size: 1.1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .hero-content {
        padding: 15px 12px;
        margin: 0 8px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.15rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .hero-content {
        padding: 18px 12px;
        margin: 0 10px;
    }
    
    .btn-login {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .lang-btn {
        padding: 4px 7px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        margin: 0.3rem;
        padding: 1rem;
    }
    
    .feature-content {
        padding: 0.75rem;
    }

    .about-img {
        margin-bottom: 1rem;
    }

    .d-lg-none .lang-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 20px;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content {
        padding: 12px 10px;
        margin: 0 auto;
        max-width: 92%;
    }
    
    .btn-login {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .portfolio-item {
        height: 100px;
    }

    .d-lg-none .lang-btn {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

}


@media (max-width: 400px) {
    .navbar {
        padding: 0.2rem 0;
        min-height: 40px;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .navbar-brand img {
        height: 20px;
        margin-right: 5px;
    }

    .lang-btn {
        padding: 3px 5px;
        font-size: 0.65rem;
    }

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

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

    .hero-content {
        padding: 10px 8px;
        max-width: 95%;
    }
    
    .hero-subtitle {
        font-size: 0.7rem;
    }
    
    .btn-login {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .hero-content {
        padding: 12px 8px;
    }
}

    .hero-content {
        padding: 25px 20px;
        max-width: 550px;
    }
}

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

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

    .hero-content {
        padding: 20px 18px;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0;
        min-height: 45px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 25px;
        margin-right: 6px;
    }

    .hero-section {
        padding: 60px 0 40px;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }

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

    .hero-content {
        padding: 20px 15px;
        margin: 0 10px;
        max-width: 90%;
    }
    
    .hero-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .btn-login {
        padding: 10px 28px;
        font-size: 0.95rem;
    }
    
    .lang-btn {
        padding: 4px 7px;
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        margin: 0.3rem;
        padding: 1rem;
    }
    
    .feature-content {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }

.about-img {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.portfolio-gallery {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}
}

@media (max-width: 576px) {
    .hero-section {
        padding: 55px 0 35px;
        min-height: 75vh;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-content {
        padding: 18px 12px;
        margin: 0 auto;
        max-width: 92%;
    }
    
    .btn-login {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .portfolio-item {
        height: 100px;
    }

    .d-lg-none .lang-btn {
        padding: 5px 8px;
        font-size: 0.8rem;
    }

}


@media (max-width: 400px) {
    .navbar {
        padding: 0.2rem 0;
        min-height: 40px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-brand img {
        height: 22px;
        margin-right: 5px;
    }

    .lang-btn {
        padding: 4px 6px;
        font-size: 0.7rem;
    }

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

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

    .hero-content {
        padding: 15px 12px;
        max-width: 95%;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-hero {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .btn-login {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 25px 12px;
    }

    .d-lg-none .lang-btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
}

/* Enhanced animations for better performance */
@media (prefers-reduced-motion: reduce) {
    .hero-section::before,
    .hero-section::after,
    .hero-content {
        animation: none;
    }
    
    .btn-hero {
        animation: none;
    }
    
    .hero-title {
        animation: slideInUp 1s ease-out;
    }
    
    .hero-subtitle {
        animation: slideInUp 1s ease-out 0.3s both;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-title {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 9999;
    transition: width 0.1s ease;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #20c997;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: -5px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 1;
}

.cookie-close:hover {
    color: white;
}

.cookie-text {
    flex: 1;
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.cookie-link {
    color: #28a745;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #20c997;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-buttons .btn {
    white-space: nowrap;
    min-width: 80px;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: -5px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
    z-index: 1;
}

.cookie-close:hover {
    color: white;
}

.cookie-text {
    flex: 1;
    color: white;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.cookie-link {
    color: #28a745;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #20c997;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cookie-buttons .btn {
    white-space: nowrap;
    min-width: 80px;
}

/* Mobile adjustments for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 15px;
    }

    .cookie-close {
        position: static;
        align-self: flex-end;
        margin-bottom: -5px;
    }

    .cookie-text {
        justify-content: center;
        font-size: 0.85rem;
        line-height: 1.4;
    }

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

    .cookie-buttons .btn {
        min-width: 70px;
        font-size: 0.8rem;
    }
}

/* Beta Warning Bar */
.fixed-bottom.bg-warning {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
    padding: 4px 8px;
    font-size: 1rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(40, 167, 69, 0.25);
}

.navbar-collapse {
    background: rgba(40, 167, 69, 0.98);
    border-radius: 0 0 8px 8px;
    padding: 10px 0;
    margin-top: 5px;
}

.nav-item {
    padding: 5px 15px;
}

/* Cookie Consent Banner */
.cookie-banner {
        padding: 12px 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 0 15px;
    }

    .cookie-close {
        position: static;
        align-self: flex-end;
        margin-bottom: -5px;
    }

    .cookie-text {
        justify-content: center;
        font-size: 0.85rem;
        line-height: 1.4;
    }

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

    .cookie-buttons .btn {
        min-width: 70px;
        font-size: 0.8rem;
    }
}

/* Beta Warning Bar */
.fixed-bottom.bg-warning {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}