@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

:root {
    /* Design Tokens */
    --color-primary: #0f172a;
    /* Deep Navy */
    --color-secondary: #0d9488;
    /* Teal */
    --color-accent-food: #10b981;
    /* Emerald Green */
    --color-accent-maint: #0284c7;
    /* Sky Blue */
    --color-accent-med: #06b6d4;
    /* Cyan */
    --color-text-main: #1e293b;
    --color-text-light: #64748b;
    --color-bg-light: #f8fafc;
    --color-white: #ffffff;

    --font-main: 'Cairo', sans-serif;

    --spacing-container: 1200px;
    --spacing-section: 4rem;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(13, 148, 136, 0.3);
}

/* Premium Features */
/* 1. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* 2. Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1001;
    /* Above header */
}

.scroll-progress-bar {
    height: 100%;
    background: var(--color-secondary);
    width: 0%;
    transition: width 0.1s;
}

/* 3. Active Nav Link */
.nav-links a.current-page {
    color: var(--color-secondary);
    font-weight: bold;
    position: relative;
}

.nav-links a.current-page::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
}

/* 4. Expert Polish (Invisible Quality) */
/* Custom Selection Color */
::selection {
    background: var(--color-secondary);
    color: white;
}

/* Native Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Accessible Focus Rings */
:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    /* Right-to-Left for Arabic */
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: #0f766e;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 70px;
    /* Adjust based on navbar height */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-text-main);
}

.nav-links a:hover {
    color: var(--color-secondary);
}

/* Phone Number Fix for RTL */
.phone-number {
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: embed;
    text-align: left;
    /* Ensure it aligns left within its block if needed, though usually right in RTL context is desired visually, but the internal numbers must be LTR */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Force numeric font */
}

/* Phone Number Fix for RTL */
.phone-number {
    direction: ltr !important;
    display: inline-block;
    unicode-bidi: plaintext;
    /* Stronger override */
    text-align: right;
    font-family: sans-serif;
    white-space: nowrap;
    /* Prevent breaking */
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        text-align: center;
        gap: 1.5rem;
    }

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .hamburger {
        display: block;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Sections */
.section-padding {
    padding: var(--spacing-section) 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('../assets/hero_composite_bg_1766088056644.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #cbd5e1;
    max-width: 600px;
}

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

.btn-outline {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--color-white);
    color: var(--color-white);
    transition: all 0.3s ease;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-secondary);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

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

.service-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

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

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    position: relative;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: absolute;
    top: -30px;
    right: 2rem;
    box-shadow: var(--shadow-lg);
}

.service-card:nth-child(1) .icon-box {
    background: var(--color-accent-food);
}

.service-card:nth-child(2) .icon-box {
    background: var(--color-accent-maint);
}

.service-card:nth-child(3) .icon-box {
    background: var(--color-accent-med);
}

.card-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.card-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}


/* About Section */
.about-section {
    background: var(--color-white);
}

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

.lead {
    font-size: 1.25rem;
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

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

.stat-label {
    color: var(--color-text-light);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: #f1f5f9;
}

.contact-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

/* Footer & Copyright */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive & Mobile Optimization */
@media (max-width: 992px) {

    /* Tablet & Small Desktop Adjustments */
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .stats-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Layout Engine */

    /* Global Reset for Mobile */
    :root {
        --spacing-section: 3rem;
    }

    body {
        overflow-x: hidden;
        /* Prevent horizontal scrolling */
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 1.25rem;
        /* Standard mobile padding */
        width: 100%;
        max-width: 100%;
    }

    /* Header & Nav */
    .nav-container {
        height: 70px;
        padding: 0 1rem;
    }

    .main-header {
        height: 70px;
        /* Force height to match container */
    }

    .main-header .nav-links {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Fixed to viewport */
        top: 70px;
        /* Match header height */
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        box-shadow: none;
        /* Flat design for menu */
        border-top: 1px solid #f1f5f9;
        text-align: center;
        gap: 1.5rem;
        z-index: 900;
        overflow-y: auto;
        /* Allow scrolling inside menu if tall */
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.active li {
        width: 100%;
    }

    .nav-links.active a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        color: var(--color-primary);
        border-bottom: 1px solid #f8fafc;
        width: 100%;
    }

    .nav-links.active .btn {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .hamburger {
        display: block;
        padding: 0.5rem;
        /* Larger touch target */
    }

    /* Typography & Hero */
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        /* Clear header */
        padding-bottom: 4rem;
        text-align: center;
        /* Center align for mobile usually looks better */
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2rem;
        /* Readable on small screens */
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Force Single Column Grids */
    .services-grid,
    .features-grid,
    .stats-grid,
    .contact-info-grid {
        grid-template-columns: 1fr !important;
        /* Force stack */
        gap: 2rem;
    }

    /* Special Grid Fixes for 'About Teaser' and other split sections */
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    /* Components */
    .service-card {
        margin: 0;
    }

    .service-card .card-image {
        height: 220px;
    }

    .icon-box {
        right: 1.5rem;
        /* Adjust for padding change */
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* About Section */
    .about-teaser-img {
        width: 100%;
        height: auto;
    }

    /* Stats */
    .stat-item {
        margin-bottom: 1rem;
    }

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

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 25px;
        left: 25px;
        /* Force left for RTL usage */
        width: 55px;
        height: 55px;
        z-index: 1000;
        /* Ensure on top */
    }

    [dir="rtl"] .whatsapp-float {
        left: 25px;
        right: auto;
    }
}

/* Features Grid (Why Choose Us) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
    font-size: 1.5rem;
}

.feature-box h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-box p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Clients Strip */
.clients-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.client-logo-item {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/hero_composite_bg_1766088056644.png') center/cover;
    opacity: 0.1;
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.gallery-nav:hover {
    background: var(--color-secondary);
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    right: -25px;
    /* RTL: Start side */
}

.gallery-nav.next {
    left: -25px;
    /* RTL: End side */
}

@media (max-width: 768px) {
    .gallery-nav {
        display: none;
        /* Hide on mobile, they can swipe */
    }
}


/* Gallery Grid - Premium Horizontal Scroll */
.gallery-grid {
    display: flex;
    /* Changed from grid to flex */
    overflow-x: auto;
    /* Allow horizontal scrolling */
    gap: 1.5rem;
    margin-top: 3rem;
    padding-bottom: 2rem;
    /* Space for scrollbar and shadow */
    scroll-snap-type: x mandatory;
    /* Premium snap effect */
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling on iOS */

    /* Hide scrollbar for cleaner look, but allow scrolling */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */

    /* Ensure padding helps with the first item */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

/* Optional: Add custom scrollbar if user really wants to see it, 
   but hidden is more "premium app" feel. 
   Let's keep it hidden as per modern design trends for "Netflix style" rows.
*/

.gallery-item {
    min-width: 300px;
    /* Reduced specific width slightly */
    width: 300px;
    height: 400px;
    /* Reduced height slightly for better fit if font was too big feeling */
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Scroll snap alignment */
    scroll-snap-align: center;
    flex: 0 0 auto;
    /* Don't shrink */
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 10;
}

/* Overlay Styles - same as before but ensured for new height */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    /* Reduced padding */
    opacity: 1;
    /* Always visible for usability in scroll view */
    transition: all 0.4s ease;
}

/* Reduced Font Sizes */
.gallery-overlay h3 {
    font-size: 1.1rem;
    /* Significantly reduced from 1.4rem */
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
    transform: translateY(0);
    /* Reset for clean idle state */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.gallery-overlay p {
    color: #cbd5e1;
    font-size: 0.85rem;
    /* Reduced from 1rem */
    opacity: 0.9;
    transform: translateY(0);
}

/* Make the hover effect simply enhance the text */
.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(13, 148, 136, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 15px;
    position: relative;
    border: 1px solid #e2e8f0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    color: var(--color-secondary);
    opacity: 0.1;
    font-family: serif;
}

.stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.quote {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    color: var(--color-primary);
}

.client-info span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* Opposite to WhatsApp */
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

[dir="rtl"] .back-to-top {
    left: auto;
    right: 30px;
}

/* Fix overlap with WhatsApp in RTL/LTR */
/* Ideally, stack them or put on opposite sides. Let's put BackToTop on LEFT in RTL, RIGHT in LTR to avoid overlap with WhatsApp which we put on LEFT in RTL */

/* Revised Positioning strategy:
   WhatsApp: Bottom-Right (LTR), Bottom-Left (RTL)
   BackToTop: Bottom-Right (LTR) - wait, that overlaps.
   Let's put BackToTop on Bottom-Left (LTR), Bottom-Right (RTL).
*/

.back-to-top {
    left: 30px;
    right: auto;
}

[dir="rtl"] .back-to-top {
    left: auto;
    right: 30px;
}

/* Wait, WhatsApp is:
   LTR: Right: 30px
   RTL: Left: 30px
   So BackToTop should be:
   LTR: Left: 30px
   RTL: Right: 30px
*/

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-secondary);
    transform: translateY(-5px);
}

/* Footer Links */
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

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