﻿/* Root Variables for Showcase */
:root {
    --showcase-primary-color: #4a90e2;
    --showcase-primary-dark: #357abd;
    --showcase-secondary-color: #50c878;
    --showcase-accent-color: #ff6b6b;
    --showcase-dark-color: #2c3e50;
    --showcase-light-color: #ecf0f1;
    --showcase-text-color: #333;
    --showcase-text-light: #666;
    --showcase-border-radius: 12px;
    --showcase-shadow: 0 4px 6px rgba(0,0,0,0.1);
    --showcase-shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* Scoped Showcase Styles - Only apply to pages using ShowCaseMainLayout */

/* Scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}

/* Navbar - Showcase specific */
.navbar-container {
    background: linear-gradient(135deg, var(--showcase-primary-color), var(--showcase-primary-dark));
    box-shadow: var(--showcase-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    flex-wrap: nowrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 1;
    min-width: 0;
}

.navbar-brand img {
    flex-shrink: 0;
}

.navbar-brand i {
    font-size: 1.5rem;
}

.brand-text {
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
    position: relative;
    flex-shrink: 0;
}

.nav-toggle {
    display: none !important;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.nav-toggle-label {
    display: none;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.nav-link i {
    font-size: 0.85rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Login CTA Section */
.login-cta-section {
    position: fixed;
    top: 100px;
    right: 40px;
    z-index: 999;
}

html[dir="rtl"] .login-cta-section {
    right: auto;
    left: 40px;
}

.btn-login-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: var(--showcase-primary-color);
    text-decoration: none;
    border-radius: var(--showcase-border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-login-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    background: linear-gradient(135deg, #ffffff, #ffffff);
    border-color: var(--showcase-primary-color);
}

.btn-login-large i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-login-large:hover i {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,133.3C960,128,1056,96,1152,90.7C1248,85,1344,107,1392,117.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--showcase-border-radius);
    padding: 3rem;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: var(--showcase-border-radius);
    object-fit: cover;
    display: block;
}

.image-placeholder:not(:has(img)) {
    padding: 3rem;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* Showcase-specific button styles - don't override Bootstrap */
.hero-buttons .btn,
.cta-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--showcase-border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.hero-buttons .btn-primary,
.cta-section .btn-primary {
    background: white;
    color: var(--showcase-primary-color);
}

.hero-buttons .btn-primary:hover,
.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline,
.cta-section .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-buttons .btn-outline:hover,
.cta-section .btn-outline:hover {
    background: white;
    color: var(--showcase-primary-color);
}

.hero-buttons .btn-lg,
.cta-section .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Features Preview Section */
.features-preview {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--showcase-dark-color);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--showcase-text-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: white;
    border-radius: var(--showcase-border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--showcase-shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--showcase-shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--showcase-primary-color), var(--showcase-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--showcase-dark-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--showcase-text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--showcase-primary-color), var(--showcase-primary-dark));
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--showcase-light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    border-radius: var(--showcase-border-radius);
    padding: 2rem;
    box-shadow: var(--showcase-shadow);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: var(--showcase-primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--showcase-text-color);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--showcase-primary-color), var(--showcase-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    color: var(--showcase-dark-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--showcase-text-light);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-box {
    background: white;
    border-radius: var(--showcase-border-radius);
    padding: 3rem;
    box-shadow: var(--showcase-shadow-lg);
    text-align: center;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header i {
    font-size: 3rem;
    color: var(--showcase-primary-color);
    margin-bottom: 1rem;
}

.contact-header h2 {
    color: var(--showcase-dark-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--showcase-text-light);
    font-size: 1.1rem;
}

.contact-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--showcase-border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--showcase-shadow);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #0077b5);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--showcase-shadow-lg);
}

.btn-icon {
    font-size: 3rem;
}

.btn-content {
    flex: 1;
    text-align: start;
}

html[dir="rtl"] .btn-content {
    text-align: start;
}

.btn-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.btn-content p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.btn-arrow {
    font-size: 1.5rem;
}

.contact-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--showcase-light-color);
}

.contact-footer p {
    color: var(--showcase-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--showcase-primary-color), var(--showcase-primary-dark));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Page Header Inline (for single page sections) */
.page-header-inline {
    text-align: center;
    padding: 40px 0 60px;
}

.page-header-inline h1 {
    font-size: 2.5rem;
    color: var(--showcase-dark-color);
    margin-bottom: 0.5rem;
}

.page-header-inline p {
    font-size: 1.2rem;
    color: var(--showcase-text-light);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

/* Features Detailed Section */
.features-detailed {
    padding: 80px 0;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

.feature-detail.reverse {
    direction: ltr;
}

html[dir="rtl"] .feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: inherit;
}

html[dir="rtl"] .feature-detail.reverse > * {
    direction: rtl;
}

.feature-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--showcase-primary-color), var(--showcase-primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-detail h2 {
    color: var(--showcase-dark-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-detail p {
    color: var(--showcase-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--showcase-text-color);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-list i {
    color: var(--showcase-secondary-color);
    margin-top: 0.25rem;
}

.feature-detail-image {
    display: flex;
    justify-content: center;
}

.gradient-bg-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-bg-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-bg-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.gradient-bg-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.gradient-bg-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.gradient-bg-6 { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }

/* Additional Features */
.additional-features {
    padding: 80px 0;
    background: var(--showcase-light-color);
}

.feature-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.small-feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--showcase-border-radius);
    text-align: center;
    box-shadow: var(--showcase-shadow);
    transition: all 0.3s ease;
}

.small-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--showcase-shadow-lg);
}

.small-feature-card i {
    font-size: 2.5rem;
    color: var(--showcase-primary-color);
    margin-bottom: 1rem;
}

.small-feature-card h4 {
    color: var(--showcase-dark-color);
    margin-bottom: 0.5rem;
}

.small-feature-card p {
    color: var(--showcase-text-light);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--showcase-border-radius);
    overflow: hidden;
    box-shadow: var(--showcase-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--showcase-shadow-lg);
}

/* Small gallery image styling - ONLY affects gallery-section images */
.gallery-section .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.gallery-section .gallery-item:hover img {
    filter: brightness(0.9);
}

.gallery-placeholder {
    width: 100%;
    padding-top: 75%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
}

.gallery-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-caption {
    padding: 1rem;
    background: white;
}

.gallery-caption h4 {
    color: var(--showcase-dark-color);
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: var(--showcase-text-light);
    font-size: 0.9rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--showcase-border-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

html[dir="rtl"] .modal-close {
    right: auto;
    left: 0;
}

.modal-close:hover {
    background: white;
    color: var(--showcase-dark-color);
    transform: rotate(90deg);
}

.modal-caption {
    text-align: center;
    color: white;
    padding: 1rem 0;
}

.modal-caption h3 {
    font-size: 1.5rem;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-section .gallery-item img {
        height: 150px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    html[dir="rtl"] .modal-close {
        right: auto;
        left: 10px;
    }

    .gallery-overlay i {
        font-size: 2rem;
    }
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text h2 {
    color: var(--showcase-dark-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--showcase-text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--showcase-border-radius);
}

/* Tech Stack */
.tech-stack {
    padding: 60px 0;
    background: var(--showcase-light-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.tech-item {
    background: white;
    padding: 2rem;
    border-radius: var(--showcase-border-radius);
    text-align: center;
    box-shadow: var(--showcase-shadow);
}

.tech-item i {
    font-size: 3rem;
    color: var(--showcase-primary-color);
    margin-bottom: 1rem;
}

.tech-item h4 {
    color: var(--showcase-dark-color);
}

/* Footer */
.footer {
    background: var(--showcase-dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--showcase-primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-detail {
        grid-template-columns: 1fr;
    }
    
    .hero-content .container {
        grid-template-columns: 1fr;
    }
    
    /* Make navbar even more compact on mobile */
    .navbar {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .navbar-brand {
        font-size: 0.95rem;
        gap: 6px;
    }
    
    .brand-text {
        font-size: 0.85rem;
    }
    
    .nav-items {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
        gap: 4px;
    }
    
    .nav-link i {
        font-size: 0.7rem;
    }
    
    /* Make login button smaller on tablets */
    .login-cta-section {
        top: 80px;
        right: 20px;
    }
    
    html[dir="rtl"] .login-cta-section {
        left: 20px;
    }
    
    .btn-login-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        gap: 8px;
    }
    
    .btn-login-large i {
        font-size: 1.1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .brand-text {
        font-size: 0.75rem;
    }
    
    .navbar-brand img {
        width: 28px !important;
    }
    
    .nav-link {
        padding: 0.25rem 0.4rem;
        font-size: 0.75rem;
    }
    
    .nav-link i {
        display: none;
    }
    
    /* Make login button even smaller on mobile */
    .login-cta-section {
        top: 70px;
        right: 10px;
    }
    
    html[dir="rtl"] .login-cta-section {
        left: 10px;
    }
    
    .btn-login-large {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        gap: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .btn-login-large i {
        font-size: 0.9rem;
    }
}
