/* ===== CSS Variables - Enterprise Professional Light Theme ===== */
:root {
    /* Main Colors - new-ee Red Brand Palette */
    --primary-color: #FF3131;              /* new-ee Brand Red */
    --primary-hover: #E02828;              /* Darker Red */
    --primary-dark: #CC2020;               /* Deep Red */
    --primary-red: #FF3131;                /* Primary Red (same as brand) */
    --accent-green: #057642;               /* Professional Success Green */
    --accent-green-hover: #044d2b;         /* Darker Success Green */
    --accent-orange: #DF6919;              /* Professional Orange Accent */
    --accent-orange-hover: #B85415;        /* Darker Orange */

    /* Background Colors - Light & Clean */
    --bg-white: #FFFFFF;                   /* Pure White */
    --bg-light: #F3F6F8;                   /* Light Gray Background */
    --bg-lighter: #FAFBFC;                 /* Ultra Light Background */
    --bg-card: #FFFFFF;                    /* Card Background */

    /* Dark Theme Colors (for Modal) */
    --dark-bg: #1A1D23;                    /* Dark Background */
    --dark-bg-light: #252932;              /* Lighter Dark Background */
    --dark-bg-lighter: #2D3139;            /* Even Lighter Dark Background */

    /* Universal Colors */
    --white: #FFFFFF;                      /* Pure White */

    /* Text Colors - Dark on Light */
    --text-primary: #000000;               /* Primary Text - Black */
    --text-secondary: #313335;             /* Secondary Text - Dark Gray */
    --text-muted: #5E6567;                 /* Muted Text */
    --text-light: #86888A;                 /* Light Text */
    --text-gray: #8B92A0;                  /* Gray Text for Dark Backgrounds */
    --text-gray-dark: #6B7280;             /* Darker Gray Text */
    --text-on-dark: #E5E7EB;               /* High contrast text for dark backgrounds */
    --text-on-dark-muted: #D1D5DB;         /* Muted but readable on dark backgrounds */

    /* Border & Shadow - Subtle Professional */
    --border-color: #E6E9EC;               /* Light Border */
    --border-color-light: #D6DBDF;         /* Slightly Darker Border */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px 0 rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 12px rgba(255, 49, 49, 0.15);
    --shadow-green: 0 4px 12px rgba(5, 118, 66, 0.15);
    --shadow-orange: 0 4px 12px rgba(223, 105, 25, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Aurora Background Animation ===== */
@keyframes aurora {
    from {
        background-position: 50% 50%, 50% 50%;
    }
    to {
        background-position: 350% 50%, 350% 50%;
    }
}

.aurora-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #FFFFFF;
    overflow: hidden;
}

.aurora-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(255, 49, 49, 0.08) 0%,
            rgba(255, 49, 49, 0.05) 25%,
            rgba(250, 251, 252, 0.02) 50%,
            rgba(255, 49, 49, 0.05) 75%,
            rgba(255, 49, 49, 0.08) 100%
        ),
        linear-gradient(90deg,
            rgba(243, 246, 248, 0.5) 0%,
            rgba(250, 251, 252, 0.3) 50%,
            rgba(243, 246, 248, 0.5) 100%
        );
    background-size: 200% 200%, 200% 200%;
    animation: aurora 60s linear infinite;
    opacity: 0.6;
}

.aurora-background::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(
            ellipse at 30% 50%,
            rgba(255, 49, 49, 0.12) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 50%,
            rgba(255, 49, 49, 0.08) 0%,
            transparent 50%
        );
    animation: aurora 90s linear infinite reverse;
    opacity: 0.5;
}

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

/* ===== Accessibility ===== */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 0;
}

/* Focus visible for better keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #CC0000;
        --text-dark: #000000;
        --text-gray: #1a1a1a;
        --border-color: #000000;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ===== Navigation Modern - Light Professional ===== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 0.875rem 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 1);
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    transition: var(--transition-fast);
    position: relative;
}

.logo:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    position: relative;
    transition: var(--transition-fast);
    border-radius: 8px;
    display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background-color: var(--bg-lighter);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 2rem);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Value Section ===== */
.value-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== Page Hero (Subpages) ===== */
.page-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 5rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.benefit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Process Section ===== */
.process-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-detail strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--text-gray);
    margin: 0;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: -0.5rem;
}

/* ===== Form Messages ===== */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.form-message.fade-out {
    animation: slideOut 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ===== Footer ===== */
.footer {
    background-color: var(--text-dark);
    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 h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
}

.footer-section a:hover {
    color: white;
}

.vision-text {
    font-style: italic;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

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

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

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .nav-links {
        gap: 1rem;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .value-grid,
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

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

    .nav-links {
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* ===== Legal Pages ===== */
.legal-page {
    padding: 3rem 0 5rem;
    background-color: var(--dark-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--dark-bg-lighter);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-on-dark);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-on-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-hover);
}

.legal-note {
    background-color: rgba(255, 49, 49, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 49, 49, 0.25);
}

.legal-note p {
    color: var(--text-on-dark);
    margin: 0;
}

.legal-note strong {
    color: var(--white);
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

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

/* ===== Cookie Banner Modern - Light Professional ===== */
.cookie-banner-modern {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 900px;
    width: calc(100% - 2rem);
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(255, 49, 49, 0.15), 0 0 0 2px var(--primary-color);
    border: 2px solid var(--primary-color);
    z-index: 9999;
    padding: 2rem;
    animation: slideUpModern 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUpModern {
    from {
        transform: translateX(-50%) translateY(calc(100% + 2rem));
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

.cookie-banner-hide-modern {
    animation: slideDownModern 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

@keyframes slideDownModern {
    from {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-50%) translateY(calc(100% + 2rem));
        opacity: 0;
    }
}

.cookie-banner-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cookie-banner-content-modern {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.cookie-banner-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.cookie-banner-text-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.cookie-banner-text-modern p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

.cookie-banner-text-modern a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.cookie-banner-text-modern a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline-modern:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 49, 49, 0.15);
}

/* ===== Cookie Settings Modal Modern - Light Professional ===== */
.cookie-modal-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeInModern 0.3s ease;
}

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

.cookie-modal-content-modern {
    background-color: #FFFFFF;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 49, 49, 0.2), 0 0 0 2px var(--primary-color);
    animation: scaleInModern 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleInModern {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-modal-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-modal-header-modern h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cookie-modal-close-modern {
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding: 0.5rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close-modern:hover {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.cookie-modal-body-modern {
    padding: 2rem;
}

.cookie-category-modern {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.cookie-category-modern:last-child {
    margin-bottom: 0;
}

.cookie-category-header-modern {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.cookie-category-info-modern h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.cookie-category-status-modern {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-category-description-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin: 0;
}

/* Toggle Switch Modern */
.cookie-switch-modern {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch-modern input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider-modern {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color-light);
    transition: var(--transition);
    border-radius: 28px;
    border: 1px solid var(--border-color);
}

.cookie-slider-modern:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cookie-switch-modern input:checked + .cookie-slider-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-color: var(--primary-color);
}

.cookie-switch-modern input:checked + .cookie-slider-modern:before {
    transform: translateX(24px);
}

.cookie-switch-modern input:disabled + .cookie-slider-modern {
    background-color: var(--bg-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-modal-footer-modern {
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    background-color: var(--bg-lighter);
}

/* ===== Responsive Legal & Cookie ===== */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .cookie-banner-modern {
        bottom: 1rem;
        width: calc(100% - 1rem);
        padding: 1.5rem;
    }

    .cookie-banner-container {
        gap: 1.5rem;
    }

    .cookie-banner-content-modern {
        flex-direction: column;
    }

    .cookie-banner-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-banner-actions .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .cookie-modal-header-modern {
        padding: 1.5rem;
    }

    .cookie-modal-body-modern {
        padding: 1.5rem;
    }

    .cookie-modal-footer-modern {
        flex-direction: column;
        padding: 1.5rem;
    }

    .cookie-modal-footer-modern .btn-modern {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem 1rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .cookie-banner {
        padding: 1rem;
    }
}

/* ===== MODERN PROFESSIONAL DESIGN ===== */

/* Logo Styling Modern - Light Professional */
.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Logo Image Styles */
.logo-img {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    mix-blend-mode: multiply; /* Removes light/gray background */
}

.logo:hover .logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Footer Logo Image */
.footer-logo-img {
    height: 90px;
    width: auto;
    display: block;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1); /* Makes dark logo white for dark footer */
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .footer-logo-img {
        height: 70px;
    }
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #FFFFFF;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-primary);
    border: none;
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 49, 49, 0.3);
    background-color: transparent;
}

/* Modern Hero Section - Light Professional */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-white) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(250, 251, 252, 0.88) 100%);
}

.hero-content-modern {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 4rem 0;
}

.hero-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 49, 49, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 49, 49, 0.3);
}

.hero-title-modern {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--primary-color);
    font-weight: 400;
    font-style: italic;
}

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

.hero-cta-buttons .btn-modern {
    min-width: 200px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Modern Buttons - Default with Primary Style */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    /* Default colors (Primary style) */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #FFFFFF;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 300px;
    height: 300px;
}

.btn-modern svg {
    transition: transform 0.3s ease;
}

.btn-modern:hover svg {
    transform: translateX(4px);
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-primary);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #FFFFFF;
    border-color: var(--primary-color);
}

.btn-primary-modern:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-primary);
}

.btn-primary-modern:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary-modern {
    background: #FFFFFF;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary-modern:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-primary);
}

.btn-secondary-modern:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    min-width: 200px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(254, 254, 254, 0.3);
}

.btn-outline:active {
    transform: translateY(-1px) scale(0.98);
}

/* Section Labels - Dark Theme */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 49, 49, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 49, 49, 0.3);
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

/* Override for dark backgrounds (contact section, CTA sections) */
.contact-section-modern .section-label,
.about-story-section .section-label,
.mission-vision-section .section-label {
    background: rgba(255, 49, 49, 0.2);
    border-color: rgba(255, 49, 49, 0.4);
}

.contact-section-modern .section-heading,
.about-story-section .section-heading,
.mission-vision-section .section-heading {
    color: var(--white);
}

.contact-section-modern .section-description {
    color: var(--text-on-dark);
}

/* Mission Section - Light Professional */
.mission-section {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.mission-content {
    max-width: 600px;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.mission-text.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mission-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values Section */
.values-section {
    padding: 8rem 0;
    background-color: var(--bg-white);
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.value-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-item:nth-child(1) {
    transition-delay: 0.1s;
}

.value-item:nth-child(2) {
    transition-delay: 0.2s;
}

.value-item:nth-child(3) {
    transition-delay: 0.3s;
}

.value-item:nth-child(4) {
    transition-delay: 0.4s;
}

.value-item:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-primary);
}

.value-item:hover::before {
    opacity: 1;
}

.value-icon-modern {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.15) 0%, rgba(255, 49, 49, 0.08) 100%);
    border-radius: 10px;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 49, 49, 0.25);
}

.value-item:hover .value-icon-modern {
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.25) 0%, rgba(255, 49, 49, 0.15) 100%);
    transform: scale(1.05);
}

.value-icon-modern svg {
    color: var(--primary-color);
    width: 28px;
    height: 28px;
}

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

.value-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Process Section Modern - Light Professional */
.process-section-modern {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    grid-column: span 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }
.timeline-item:nth-child(6) { transition-delay: 0.6s; }
.timeline-item:nth-child(7) { transition-delay: 0.7s; }

.timeline-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
}

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

.timeline-item p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.timeline-connector {
    grid-column: span 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.timeline-connector::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-hover) 100%);
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content-modern p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

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

/* Footer Modern - Light Professional */
.footer-modern {
    background-color: var(--text-primary);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.footer-tagline {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-location {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-links-section h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-links-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links-section a:hover {
    color: #FFFFFF;
}

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

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .mission-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-connector {
        display: none;
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero-modern {
        min-height: 80vh;
    }

    .hero-content-modern {
        padding: 3rem 0;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
        justify-content: center;
    }

    .mission-section,
    .values-section,
    .process-section-modern,
    .cta-section-modern {
        padding: 4rem 0;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons-modern {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }

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

    .section-heading {
        font-size: 1.75rem;
    }
}

/* ===== Subpage Hero ===== */
.hero-subpage {
    min-height: 60vh;
}

/* ===== Contact Section Modern - Dark Theme ===== */
.contact-section-modern {
    padding: 8rem 0;
    background-color: var(--dark-bg);
}

.contact-wrapper-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-modern {
    position: sticky;
    top: 100px;
}

.contact-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-on-dark);
    margin-top: 1rem;
    margin-bottom: 3rem;
}

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

.contact-detail-modern {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.contact-detail-modern strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-detail-modern p {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    margin: 0;
}

.contact-detail-modern a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-detail-modern a:hover {
    color: var(--primary-hover);
}

/* Contact Form Modern - Dark Theme */
.contact-form-wrapper-modern {
    background-color: var(--dark-bg-lighter);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-modern .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form-modern label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--white);
    background-color: var(--dark-bg-light);
    transition: var(--transition-fast);
}

.contact-form-modern input:focus,
.contact-form-modern select:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-full {
    width: 100%;
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-wrapper-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-modern {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-section-modern {
        padding: 4rem 0;
    }

    .contact-form-wrapper-modern {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-details-modern {
        gap: 1.5rem;
    }
}

/* ==========================================
   APPLICATION MODAL STYLES
   Modern pop-up forms for talent and companies
   ========================================== */

.application-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: modalFadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.application-modal.modal-closing {
    animation: modalFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.application-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.application-modal-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Custom scrollbar for modal */
.application-modal-content::-webkit-scrollbar {
    width: 10px;
}

.application-modal-content::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 0 16px 16px 0;
}

.application-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
    opacity: 0.3;
}

.application-modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.application-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.application-modal-close:hover {
    background: var(--bg-lighter);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.application-modal-header {
    padding: 3rem 3rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.application-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.application-modal-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Application Form Styles */
.application-form {
    padding: 2rem 3rem 3rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section-title::before {
    content: '';
    width: 3px;
    height: 1.25rem;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    border-radius: 2px;
}

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

.application-form label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

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

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

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.1);
}

.application-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.application-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%230A66C2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-help {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.privacy-checkbox {
    padding: 1rem;
    background: rgba(255, 49, 49, 0.05);
    border: 1px solid rgba(255, 49, 49, 0.2);
    border-radius: 8px;
    font-weight: 400;
}

.privacy-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-checkbox a:hover {
    color: var(--primary-hover);
}

/* Talentpool Consent Checkbox */
.talentpool-consent {
    margin-top: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(5, 118, 66, 0.08) 0%, rgba(5, 118, 66, 0.03) 100%);
    border: 1px solid rgba(5, 118, 66, 0.25);
    border-radius: 10px;
    position: relative;
}

.talentpool-consent::before {
    content: "Optional";
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--accent-green);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.talentpool-checkbox {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-on-dark);
}

.talentpool-checkbox span {
    display: block;
    padding-left: 0.5rem;
}

.talentpool-checkbox strong {
    color: var(--accent-green);
}

.talentpool-checkbox a {
    color: var(--accent-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.talentpool-checkbox a:hover {
    color: var(--accent-green-hover);
}

.talentpool-checkbox input[type="checkbox"]:checked + span {
    color: var(--text-on-dark);
}

/* File Upload Styles */
.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    background: var(--bg-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: var(--primary-color);
    background: rgba(255, 49, 49, 0.05);
}

.file-upload-label svg {
    color: var(--primary-color);
}

.file-upload-label span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.file-input {
    display: none;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn-modern {
    flex: 1;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .application-modal {
        padding: 1rem;
    }

    .application-modal-content {
        max-height: 95vh;
        border-radius: 12px;
    }

    .application-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .application-modal-header h2 {
        font-size: 1.5rem;
    }

    .application-modal-header p {
        font-size: 0.9375rem;
    }

    .application-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions .btn-modern {
        width: 100%;
    }

    .application-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .application-modal-header h2 {
        font-size: 1.25rem;
    }

    .form-section-title {
        font-size: 1.125rem;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ==========================================
   CALL TO ACTION STYLES
   Modern CTA sections for talent and company pages
   ========================================== */

.cta-talent-wrapper,
.cta-company-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-talent-content,
.cta-company-content {
    padding: 4rem 2rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-on-dark);
    line-height: 1.8;
    margin: 0 0 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--white);
    font-weight: 500;
}

.cta-feature svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.btn-large {
    font-size: 1.125rem;
    padding: 1.125rem 2.5rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
}

.cta-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-note a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cta-talent-content,
    .cta-company-content {
        padding: 3rem 1.5rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }

    .btn-large {
        width: 100%;
        font-size: 1rem;
    }
}

/* ==========================================
   ABOUT PAGE STYLES
   Über uns page sections
   ========================================== */

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--white);
    font-weight: 600;
}

.about-story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.1), transparent);
    z-index: 1;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: var(--dark-bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-box {
    background: rgba(46, 46, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(254, 254, 254, 0.08);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 49, 49, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
}

.mission-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mission-box p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-on-dark);
}

/* Why Us Section */
.why-us-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.why-us-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-us-item {
    text-align: left;
    padding: 2rem;
    background: rgba(46, 46, 46, 0.3);
    border: 1px solid rgba(254, 254, 254, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    background: rgba(46, 46, 46, 0.5);
    border-color: rgba(255, 49, 49, 0.4);
    transform: translateY(-4px);
}

.why-us-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.why-us-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-us-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-on-dark);
}

/* Founder Section */
.founder-section {
    padding: 6rem 0;
    background: var(--dark-bg-light);
}

.founder-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(46, 46, 46, 0.4);
    border: 2px solid rgba(254, 254, 254, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-dark);
}

.founder-content {
    padding-top: 1rem;
}

.founder-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-bio {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
}

.founder-bio strong {
    color: var(--white);
    font-weight: 600;
}

.founder-quote {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 49, 49, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
}

.founder-quote svg {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.founder-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--white);
    font-style: italic;
    margin: 0;
    padding-left: 3rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg-light) 0%, var(--dark-bg) 100%);
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-on-dark);
    margin-bottom: 3rem;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-buttons .btn-modern {
    min-width: 220px;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-story-grid,
    .mission-vision-grid,
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-image-placeholder {
        max-width: 350px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .mission-vision-section,
    .why-us-section,
    .founder-section,
    .about-cta-section {
        padding: 4rem 0;
    }

    .mission-box {
        padding: 2rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }

    .about-cta-content p {
        font-size: 1.0625rem;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-cta-buttons .btn-modern {
        width: 100%;
    }

    .founder-quote p {
        font-size: 1rem;
        padding-left: 2rem;
    }
}

/* ============================================
   Toast Messages for Form Submissions
   ============================================ */
.toast-message {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-bg-light);
    border: 1px solid rgba(254, 254, 254, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    z-index: 10001;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: toast-slide-in 0.3s ease-out;
}

.toast-message svg {
    flex-shrink: 0;
}

.toast-message span {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.toast-success {
    border-left: 4px solid #4ade80;
}

.toast-success svg {
    stroke: #4ade80;
}

.toast-error {
    border-left: 4px solid var(--accent-orange);
}

.toast-error svg {
    stroke: var(--accent-orange);
}

.toast-fade-out {
    animation: toast-fade-out 0.3s ease-in forwards;
}

@keyframes toast-slide-in {
    from {
        transform: translateX(calc(100% + 2rem));
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toast-fade-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(calc(100% + 2rem));
    }
}

@media (max-width: 768px) {
    .toast-message {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}
