/* Reset and Base Styles */
:root {
    --primary-color: #0c4a8e;
    --secondary-color: #00a3da;
    --accent-color: #6699ff;
    --accent-color-rgb: 102, 153, 255;
    --light-blue: #e0f2fe;
    --light-blue-rgb: 224, 242, 254;
    --dark-blue: #003399;
    --dark-blue-rgb: 0, 51, 153;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --dark-gray: #1f2937;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display';

    --transition: all 0.5s ease !important;
    --transform: translateY(-10px);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

* {
    box-sizing: border-box;
    transition: var(--transition);
}

body {
    font-family: var(--font-primary), serif;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display), serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

a {
    text-decoration: none;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
}

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

/* Custom Navbar */
.custom-navbar {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(14, 165, 233, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-text {
    color: var(--white);
}

.brand-accent {
    color: var(--accent-color);
    margin-left: 2px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bg-light-blue {
    --bs-bg-opacity: 1;
    background-color: rgba(194, 229, 245, 0.3) !important;
}

/* Hero Section */
.hero-section {
    margin-top: 80px;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(30, 64, 175, 0.8) 0%,
    rgba(14, 165, 233, 0.7) 50%,
    rgba(30, 58, 138, 0.8) 100%);
    z-index: -1; */
    background: linear-gradient(90deg, rgba(2, 64, 113, 0.7) 30%, transparent);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-text {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.title-primary {
    color: var(--white);
    display: block;
}

.title-secondary {
    color: var(--accent-color);
    font-size: 2.25rem;
    font-weight: 900;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(30, 58, 138, 0.4);
    color: var(--white);
}

.btn-cta .arrow-icon {
    transition: var(--transition);
}

.btn-cta:hover .arrow-icon {
    transform: translateX(3px);
}

.btn-outline-light.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: -3px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

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

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    40% {
        transform: translateY(8px);
        opacity: 1;
    }
    60% {
        transform: translateY(5px);
        opacity: 0.8;
    }
}

/* Section Styles */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-primary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Value Cards */
.value-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: var(--transform) !important;
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: var(--transition);
    color: var(--primary-color);
}

.icon-wrapper.security,
.icon-wrapper.excellence,
.icon-wrapper.integrity,
.icon-wrapper.innovation {
    background: linear-gradient(135deg, #aadaff, #4e7ffa);
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1rem 0 0.5rem;
}

.value-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Service Cards */
#services {
    background-image: url(../images/monde-1.avif);
    background-size: cover;
    background-position: center;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: var(--transform) !important;
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary-color);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.service-card.featured::before {
    background: #1e3a8a;
}

.service-card.featured h4,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.icon-bg.maintenance {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.icon-bg.flight {
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
}

.icon-bg.parts {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.icon-bg.repair {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.icon-bg.testing {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.icon-bg.why {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-content h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.why-list li:last-child {
    border-bottom: none;
}

.mission-statement {
    background: linear-gradient(135deg, rgba(var(--light-blue-rgb), 0.7), rgba(var(--accent-color-rgb), 0.3));
    padding: 3rem 2rem;
    border-radius: 20px;
    /*border: 1px solid var(--secondary-color);*/
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0.1;
    border-radius: 50%;
}

/* Quality Section */
.quality-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-blue), #f0f9ff);
    border-radius: 16px;
    border-left: 4px solid var(--secondary-color);
}

.highlight-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    background-image: url(../images/monde-3.png), linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.stat-card {
    padding: 2rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: var(--transform) !important;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-family: var(--font-display), serif;
}

.stat-suffix {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--accent-color);
}

.form-control,
.form-select {
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.15);
}

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

.form-control:not(:-ms-input-placeholder) + label {
    left: 10px !important;
    top: -10px;
    background: linear-gradient(180deg, #f3f2f2 /*f0eff3*/, #fff);
    padding: 5px 10px;
    height: auto !important;
}

.form-select + label,
.form-control:focus + label,
.form-select:not(:placeholder-shown) + label,
.form-control:not(:placeholder-shown) + label {
    left: 20px !important;
    top: -5px;
    background: var(--white);
    padding: 0 10px;
    height: auto !important;
    border-radius: 10px;
}

.contact-info-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: var(--transform) !important;
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: url(../images/footer-bg.png), linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0 0 0;
}

.footer-brand h5 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-contact li {
    color: var(--white);
    /*font-size: 0.875rem;*/
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright,
.footer-legal {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.text-accent {
    color: var(--accent-color);
}

.copyright {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    /*top: calc(100% - 60px);*/
    /*position: absolute;*/
    bottom: 0 !important;
    left: 0;
    color: var(--white);
    display: block;
    font-weight: bold;
    overflow-x: hidden;
    padding: 3px;
    white-space: nowrap;
    width: 100%;
    z-index: 1030;
    border-top: 2px solid var(--white);
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--white);
    transform: skew(40deg);
}

.footer p {
    color: var(--white);
    font-weight: normal;
}

.footer p.designed {
    color: var(--primary-color);
    font-weight: normal;
}

.text-primaire {
    color: var(--primary-color) !important;
}

.bg-primaire {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.bg-secondaire {
    background: var(--accent-color) !important;
    color: var(--white) !important;
}

.header-section {
    position: relative;
    aspect-ratio: 4 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #000 100%);
    z-index: -2;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/62623/wing-plane-flying-airplane-62623.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.header-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.lang-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    margin-left: 20px;
    padding: 5px 10px;
}

.lang-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-section {
        margin-top: 0;
        /*height: auto;
        padding: 2rem 0;*/
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .title-secondary {
        font-size: 1.75rem;
        color: var(--accent-color);
    }

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

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

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

    .section-padding {
        padding: 4rem 0;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-cta,
    .btn-outline-light.btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

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

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

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

    .value-card,
    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

/* Go to Top Button */
.go-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.go-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.go-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.go-to-top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid var(--white);
    border-bottom: none;
    border-right: none;
    transform: translate(-50%, -30%) rotate(45deg);
}

/* Animation pour le bouton go to top */
@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.go-to-top:hover::before {
    animation: bounceUp 1s infinite;
}

/* Accessibility */
@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;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hero-actions,
    .contact-form {
        display: none !important;
    }

    .hero-section {
        margin-top: 30px;
        height: auto;
        padding: 2rem 0;
    }

    .section-padding {
        padding: 2rem 0;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.nav-link:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading animation for dynamic content */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.loading {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: shimmer;
    animation-timing-function: linear;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
}