:root {
    --primary-color: #FCA311;
    --secondary-color: #14213D;
    --text-color: #000000;
    --text-light: #FFFFFF;
    --background-light: #E5E5E5;
    --background-white: #FFFFFF;
    --font-headers: 'Montserrat', sans-serif;
    --font-text: 'Open Sans', sans-serif;
}

/* Styles pour les boutons de langue */
.language-switcher-container {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-left: 20px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
}

.prev-btn,
.next-btn {
    background-color: var(--background-white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    color: var(--text-color);
    transition: all 0.3s ease;
    transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
    .prev-btn {
        display: none;
        visibility: hidden;
    }
    .next-btn {
        display: none;
        visibility: hidden;
    }
    div.press-carousel {
        height: 26rem;
        touch-action: pan-y pinch-zoom;
        user-select: none;
        -webkit-user-select: none;
        margin-bottom: -3.5rem;
    }
    div.dot {
        margin-bottom: 1.5rem;
        display: none;
    }
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    z-index: 1000;
    padding: 1rem 0;
    transform: translateY(0);
}

.header.hide {
    transform: translateY(-100%);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.language-switcher {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.language-switcher:hover {
    transform: translateY(-2px);
}

.language-switcher img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .language-switcher {
        background: none;
        border: none;
        margin: 0.5rem 0;
    }
    
    .language-switcher img {
        width: 28px;
        height: 28px;
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.35);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.header.scrolled .nav-menu a {
    color: var(--primary-color);
    background-color: transparent;
}

.header.scrolled .nav-menu a::before {
    background-color: rgba(252, 163, 17, 0.35);
}

.nav-menu a:hover {
    color: #000000;
}

.nav-menu a:hover::before {
    transform: translateX(0);
}

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-home {
    background-image: url('../images/dev/background_hero/bus_bg.png');
}

.hero-services {
    background-image: url('../images/dev/background_hero/hero_bg1.jpg');
}

.hero-contact {
    background-image: url('../images/dev/background_hero/hero_bg1.jpg');
}

.hero-about {
    background-image: url('../images/dev/background_hero/hero_bg1.jpg');
    /*background-position: center 25%;*/
}

.hero-legal {
    background-image: url('../images/dev/background_hero/hero_bg2.jpg');
    height: 50vh;
}

.hero-album {
    background-image: url('../images/dev/background_hero/hero-album.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}

.hero-album::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(20, 33, 61, 0.4), rgba(20, 33, 61, 0.7));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator {
    margin-top: 2rem;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    opacity: 0.8;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    75% {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    76% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-headers);
}

.section {
    padding: 5rem 2rem;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    font-weight: 400;
}

.media-coverage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.media-article {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.media-article:hover {
    transform: translateY(-5px);
}

.media-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.media-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.media-logo:hover {
    opacity: 1;
}

.history-section {
    background-color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.history-section .text-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.history-section .section-title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.history-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.history-section .content-grid {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.values-section {
    background-color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.values-section .text-content {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.values-section .section-title {
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.values-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.values-section .content-grid {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.service-section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-section:last-child {
    margin-bottom: 2rem;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-section:nth-child(even) .service-container {
    direction: rtl;
}

.service-section:nth-child(even) .service-content,
.service-section:nth-child(even) .service-carousel {
    direction: ltr;
}

.service-content {
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    max-width: 500px;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.service-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-headers);
    position: relative;
    display: inline-block;
}

.service-content h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.service-content:hover h2::after {
    width: 100%;
}

.service-capacity {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 20px;
    display: inline-block;
}

.service-description {
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: var(--font-text);
    color: #444;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.service-features li {
    margin-bottom: 0.25rem;
    padding: 0.35rem 0;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    font-family: var(--font-text);
    color: #444;
    letter-spacing: 0.2px;
}

.service-features li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-features li::before {
    content: '\f0a9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    margin-right: 10px;
}

.service-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
    background-color: #f8f8f8;
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-inner img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.carousel-btn.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.service-section:nth-child(even) .carousel-btn.prev {
    left: auto;
    right: 0;
    border-radius: 5px 0 0 5px;
}

.service-section:nth-child(even) .carousel-btn.next {
    right: auto;
    left: 0;
    border-radius: 0 5px 5px 0;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: white;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.carousel-img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-btn.prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.carousel-btn.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background: white;
}

.carousel-placeholder {
    text-align: center;
    color: var(--secondary-color);
    padding: 2rem;
}

@media (max-width: 768px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-section:nth-child(even) .service-container {
        direction: ltr;
    }

    .service-content {
        padding: 1rem 0;
    }
}

.ser.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ser.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    max-width: 450px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    filter: brightness(0.95);
    margin-left: auto;
    margin-bottom: 2rem;
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: brightness(0.95);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-align: center;
}

.card-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
}

.video-section {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: var(--secondary-color);
    z-index: 1;
}

.video-title-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.video-title-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-title-container.fade-out {
    opacity: 0;
    transform: translateY(-30px);
}

.video-title {
    font-size: 4rem;
    color: var(--text-light);
    text-align: center;
    font-family: var(--font-headers);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vid.section-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-family: var(--font-headers);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 1.2s ease;
}

.video-background.visible {
    opacity: 1;
    transform: scale(1);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(20, 33, 61, 0.3), rgba(20, 33, 61, 0.1));
}

@media (max-width: 768px) {
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-section {
        height: 80vh;
    }

}

.video-container video {
    width: 100%;
    display: block;
}

.press-section {
    padding: 4rem 0;
    margin-bottom: 0%;
}


@media (max-width: 768px) {
    .press-section {
        margin-bottom: 0%;
    }

}

.press-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 2rem;
    height: 100%;
}

.press-grid {
    display: flex;
    transition: transform 0.5s ease;
}

.press-item {
    flex: 0 0 300px;
    margin: 0 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.press-logo {
    height: 60px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.press-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.press-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
}

.read-more:hover {
    text-decoration: underline;
}

.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 200px;
    margin: 2rem auto 0;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    pointer-events: auto;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background: var(--secondary-color);
}

.prev-btn,
.next-btn {
    background-color: #ffd37b;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffd37b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.prev-btn:hover,
.next-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.contact-info {
    background-color: rgba(185, 184, 182, 0.35);
    border-radius: 15px;
    padding: 2rem;
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    padding-top: 0.2rem;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-icons a {
    color: #666;
    transition: color 0.3s ease;
}

.contact-info .social-icons {
    gap: 0.75rem;
}

.contact-info .social-icons a i {
    font-size: 2.55rem;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.contact-form {
    background-color: rgba(185, 184, 182, 0.35);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.required {
    color: var(--primary-color);
    margin-left: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #333;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    margin-left: -2px;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 4px 8px 0 0;
    width: 16px;
    height: 16px;
}

.checkbox-wrapper label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    user-select: none;
}

.checkbox-wrapper a {
    color: #FCA311;
    text-decoration: none;
    border-bottom: 1px solid #FCA311;
}

.service-content .btn {
    display: block;
    width: fit-content;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}

.service-content .btn:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background-color: #e68a00;
}

.btn-primary i {
    font-size: 1rem;
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}

.header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s;
}

.header.scrolled {
    background-color: var(--background-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn {
    font-weight: 700;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.legal-section {
    padding-top: 60px;
    background-color: var(--background-light);
    min-height: 100vh;
}

.legal-content {
    background-color: var(--background-white);
    padding: 2rem 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: var(--secondary-color);
    font-family: var(--font-headers);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-content p {
    margin-bottom: 1.5rem;
    color: #333;
}

.legal-content ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}

.legal-content ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.hero-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 600;
    font-family: var(--font-headers);
}

@media (max-width: 768px) {
    .hero-content p {
        font-size: 1.1rem;
        color: #ffffff;
        font-weight: 500;
        font-family: var(--font-headers);   
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.last-update {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.values-section {
    background-color: var(--background-light);
    padding: 6rem 0;
    text-align: center;
}

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

.subtitle-wrapper {
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.section-header .section-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 1.5rem auto 3rem;
    font-family: var(--font-headers);
    max-width: 800px;
    display: inline-block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.value-title {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 3rem;
    transition: color 0.3s ease;
    padding: 1rem;
}

.social-icons a:hover {
    color: var(--primary-color);
}

.back-to-home {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--background-light);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-back:hover::before {
    opacity: 1;
}

.btn-back i,
.btn-back span {
    position: relative;
    z-index: 1;
    color: white;
}

.stats-section {
    text-align: center;
    padding: 5rem 0;
    background-color: var(--background-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--font-headers);
    line-height: 1;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.stat-description {
    font-size: 1.1rem;
    color: #666;
}

.testimonials-section {
    text-align: center;
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial-content {
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-family: var(--font-headers);
}

.footer {
    background-color: #14213D;
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: var(--secondary-color);
    font-size: 3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .social-icons {
        gap: 0rem;
    }
    .social-icons a {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.footer-social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer-social-icons a {
        font-size: 2rem;
    }
    .footer-social-icons {
        gap: 1rem;
    }
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
  }

.footer-links h3 {
    margin-bottom: 1rem;
    font-family: var(--font-headers);
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

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

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
    background-color: white;
}

.experience-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 300px;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.lottie-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#beerAnim {
    width: 200px;
    height: 200px;
    margin-top: -50px; 
    margin-bottom: -35px;
}

#cityAnim {
    width: 180px;
    height: 150px;
    margin-top: -25px; 
    margin-bottom: -25px;
}

#busAnim {
    width: 120px;
    height: 150px;
    margin-top: -25px; 
    margin-bottom: -25px;
}

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

.experience-item:nth-child(2) .experience-gif {
    width: 75%;
}

.experience-item h3 {
    color: var(--primary-color);
    font-family: var(--font-headers);
    font-size: 1.5rem;
    margin-top: 0rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.experience-item p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .experience-item {
        height: auto;
        min-height: 280px;
        padding: 1rem;
    }

    .experience-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .experience-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; 
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h3 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
        margin-top: 1rem;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        text-align: center;
    }
}
