/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fefefe;
    overflow-x: hidden;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f5e8 0%, #fce4ec 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #81c784;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-color: #8B4513;
    --secondary-color: #A0522D;
    --accent-color: #2F1B14;
    --gradient-1: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    --gradient-2: linear-gradient(135deg, #D2B48C 0%, #8B4513 100%);
    --gradient-3: linear-gradient(135deg, #2F1B14 0%, #1A1A1A 100%);
    --gradient-4: linear-gradient(135deg, #F5F5DC 0%, #D2B48C 100%);
    --gradient-5: linear-gradient(135deg, #FFFFFF 0%, #F8F8FF 100%);
    --text-primary: #2F1B14;
    --text-secondary: #1A1A1A;
    --text-light: #6B4423;
    --background-light: #FEFEFE;
    --background-white: #FFFFFF;
    --border-color: #E8E8E8;
    --shadow-light: 0 2px 10px rgba(47, 27, 20, 0.1);
    --shadow-medium: 0 4px 20px rgba(47, 27, 20, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px) scale(1.02);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(47, 27, 20, 0.1);
    padding: 0.5rem 0;
    min-height: 70px;
}

.navbar-brand img {
    object-fit: contain;
}

.navbar .d-flex {
    flex-wrap: nowrap;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .navbar {
        padding: 0.25rem 0;
    }
    
    .language-toggle {
        margin-right: 0.5rem !important;
    }
    
    .language-toggle .lang-btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .btn-primary .fas {
        margin-right: 0.25rem !important;
    }
}

/* Body padding for fixed navbar */
body {
    padding-top: 80px;
}

.language-toggle {
    display: flex;
    background: var(--background-light);
    border-radius: 8px;
    padding: 4px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--primary-color);
    color: white;
}

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

/* Hero Section */
.hero {
  background: var(--background-white);
  color: var(--text-primary);
  padding: 50px 0 100px 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-content {
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-image {
    padding-left: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    margin-bottom: 2.5rem;
    text-align: center;
}

.hero-logo-img {
    max-width: 200px;
    height: auto;
    width: 100%;
}

.hero-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

.hero-screenshot {
    margin-bottom: 0;
}

.hero-screenshot-img {
    max-width: 320px;
    height: auto;
    width: 100%;
}

.hero-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-screenshot-img {
        max-width: 300px;
    }
    
    .features-content {
        padding-left: 0;
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .features-screenshots {
        padding-right: 0;
        text-align: center;
    }
    
    .features-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: space-between;
    }
    
    .screenshots-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .screenshot-item {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px 0;
        min-height: calc(100vh - 70px);
    }
    
    .hero-content {
        margin-bottom: 2.5rem;
    }
    
    .hero-logo {
        margin-bottom: 2rem;
    }
    
    .hero-logo-img {
        max-width: 160px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-screenshot-img {
        max-width: 280px;
    }
    
    .hero-cta {
        margin-top: 2rem;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .features-content {
        margin-bottom: 2.5rem;
    }
    
    .features-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 2rem;
        justify-content: space-between;
    }
    
    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
        flex: 1 1 calc(50% - 0.75rem);
        min-width: 250px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .screenshots-grid {
        max-width: 350px;
        gap: 1rem;
    }
    
    .screenshot-item {
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 20px 0 40px 0;
    }
    
    .hero-logo-img {
        display:none
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-screenshot-img {
        max-width: 220px;
    }
    
    .hero-cta .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
}

.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-content {
    padding-left: 3rem;
}

@media (max-width: 991px) {
    .features-content {
        padding-left: 0;
    }
}

.features-screenshots {
    padding-right: 3rem;
}

.features-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 3rem;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.screenshot-item {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Features Grid Row Layout */
.features-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
    gap: 1rem;
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: var(--gradient-2);
}

.feature-text {
    color: var(--text-primary);
    line-height: 1.4;
    text-align: center;
}

.features-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    background: var(--gradient-2);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: #667eea;
}

.benefit-description {
    color: #6c757d;
    line-height: 1.6;
    flex-grow: 1;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item::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;
    z-index: 1;
}

.gallery-item:hover::before {
    left: 100%;
}

.gallery-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1.1);
    background: var(--gradient-2);
}

.gallery-content {
    padding: 0 1.5rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.gallery-item:hover .gallery-title {
    color: #667eea;
}

.gallery-description {
    color: #6c757d;
    line-height: 1.6;
    flex-grow: 1;
}

/* Screenshots Section */
.screenshots {
  padding: 80px 0;
  background: var(--background-light);
}

.screenshot-item {
  text-align: center;
  transition: var(--transition);
}

.screenshot-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  transition: var(--transition);
}

.screenshot-item:hover .screenshot-img {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(61, 41, 20, 0.2);
}

/* Download Section */
.download {
  padding: 80px 0;
  background: var(--background-light);
  color: var(--text-primary);
}

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

.download-title {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--text-primary);
}

.download-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-btn .btn-text small {
    font-size: 0.75rem;
    color: var(--text-light);
}

.download-btn .btn-text strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.download-btn img {
    height: 60px;
    transition: var(--transition);
}

.download-btn:hover img {
    transform: scale(1.05);
}

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

.stat-item {
    text-align: center;
}

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

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

.download-qr {
    text-align: center;
}

.qr-code {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 1rem;
}

.qr-code img {
    width: 150px;
    height: 150px;
}

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

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-secondary) 0%, var(--text-primary) 100%);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-title {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #a0aec0;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
}

@media (max-width: 991.98px) {
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-text {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-image {
        padding-left: 0;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .phone-img {
        width: 250px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features,
    .benefits,
    .gallery {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .feature-card,
    .benefit-item,
    .gallery-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .features,
    .benefits,
    .gallery {
        padding: 40px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-img {
        width: 180px;
        height: 320px;
    }
    
    .phone-img {
        width: 200px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-stats {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-card,
    .benefit-item,
    .gallery-item {
        padding: 1.5rem;
    }
}



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

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

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

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

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

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

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Focus styles for accessibility */
.btn:focus,
.lang-btn:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}