/* ======================================
   VARIABLES ET RESET
====================================== */
:root {
    --primary: #4f81bd;
    --secondary: #4f65bd;
    --light: #F5F8F2;
    --dark: #252C30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

section {
    padding: 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #444;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

/* ======================================
   HEADER ET NAVIGATION
====================================== */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header_image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}

.header_image img {
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.has-dropdown > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
    vertical-align: middle;
    color: var(--primary);
    transition: transform 0.3s;
}

/* Rotate arrow when dropdown is active */
.has-dropdown.dropdown-active > a::after,
.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show dropdown - Desktop hover and Mobile active class */
.nav-links li:hover .dropdown-menu,
.has-dropdown.dropdown-active .dropdown-menu,
.dropdown-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    /* Override hover behavior on mobile */
    .nav-links li:hover .dropdown-menu {
        display: none !important;
        opacity: 0 !important;
        transform: translateY(10px) !important;
    }
    
    /* Only show when active on mobile */
    .has-dropdown.dropdown-active .dropdown-menu,
    .dropdown-menu.active {
        display: block !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        position: static;
        min-width: 100%;
        box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 0;
        margin-top: 5px;
        background-color: #f9f9f9;
        animation: slideDown 0.3s ease-out;
    }
}

/* Animation for mobile dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #333;
    font-weight: normal;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .dropdown-menu a {
        padding: 15px 25px;
        border-left: none;
        border-bottom: 1px solid #eee;
        font-size: 0.95rem;
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        background-color: #e9ecef;
        border-left: none;
    }
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.lang-link {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 5px;
    text-decoration: none;
    color: #333;
}

.lang-link.active {
    font-weight: bold;
    color: var(--primary);
}

.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

/* ======================================
   intro SECTION
====================================== */
.intro {
    padding: 0;
    position: relative;
}

.intro-image {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ======================================
   INTRO CAROUSEL
====================================== */
.intro-carousel {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.carousel-caption h2 {
    font-size: 1.8rem;
    margin: 0 0 8px;
    line-height: 1.2;
}

.carousel-caption p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.carousel-dot.active {
    background: #fff;
}

@media (max-width: 768px) {
    .intro-carousel {
        height: 50vh;
    }

    .carousel-caption {
        bottom: 20px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 15px 20px;
    }

    .carousel-caption h2 {
        font-size: 1.3rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-dots {
        right: 15px;
        bottom: 15px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

.intro-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* ======================================
   TIMELINE BAR
====================================== */
.timeline-bar {
    position: relative;
    padding: 30px 0 40px;
    background-color: #fff;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary);
}

.timeline-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 60%;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.timeline-item:hover .timeline-label {
    color: var(--primary);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    transition: transform 0.2s ease;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--primary);
    z-index: 1;
    position: relative;
    top: 4px;
}

.timeline-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    background-color: var(--secondary);
}

.timeline-label {
    position: absolute;
    top: -25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

/* ======================================
   SOCIAL HASHTAGS SECTION
====================================== */
.social-hashtags {
    padding: 15px 0;
}

.social-hashtags .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hashtags {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.hashtags a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.hashtags a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

/* ======================================
   WHAT IS VELOMAHA SECTION
====================================== */
.what-is-ddaybike {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.what-is-ddaybike .container {
    padding: 60px 0;
    background-color: #fff;
    align-content: center;
}

.what-is-ddaybike h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.what-is-ddaybike .tagline {
    margin-bottom: 25px;
}

.what-is-ddaybike .tagline-phrase {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.ddaybike-description {
    max-width: 800px;
    margin: 0 auto;
}

.ddaybike-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* ======================================
   SERVICES SECTION
====================================== */
.services-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 180px;
    overflow: hidden;
}

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

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

.service-card h3 {
    padding: 15px 20px 5px;
    font-size: 1.2rem;
    color: var(--dark);
    text-align: center;
}

.service-link {
    display: block;
    padding: 5px 20px 20px;
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

/* ======================================
   ACTIVITIES SECTION
====================================== */
.activities-section {
    padding: 60px 0;
    background-color: #fff;
}

.activities-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.activity-image {
    height: 200px;
    overflow: hidden;
}

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

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 20px;
    text-align: center;
}

.activity-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.activity-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.activity-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ======================================
   FAQ SECTION
====================================== */
.faq-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-tabs {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-tab {
    padding: 18px 25px;
    background-color: #fff;
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #9B9B9B;
    text-align: left;
}

.faq-tab:hover {
    color: #303030;
    background-color: #f9f9f9;
}

.faq-tab.active {
    background-color: #fff;
    border-left: 3px solid #0B1D42;
    color: #303030;
}

.faq-content {
    flex: 1;
}

.faq-panel {
    display: none;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.faq-panel.active {
    display: block;
}

.faq-panel p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* ======================================
   MAP SECTION (Homepage)
====================================== */
.map-section {
    padding: 60px 0;
    background-color: #fff;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-section .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-section .map-container iframe {
    display: block;
}

.intro-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tour-intro .container {
    position: relative;
    z-index: 1;
}

.tour-intro h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tour-intro h2 {
    font-size: 1.8rem;
}

/* ======================================
   SECTIONS GÉNÉRALES
====================================== */
/* Section Deuxième image */
.second-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    padding: 0;
}

.second-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

/* Section Description */
.description {
    background-color: #fff;
}

.description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 6 petites images */
.small-images {
    background-color: #f5f5f5;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.image-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-10px);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-item h3 {
    padding: 15px;
    text-align: center;
}

/* Section Services avec boutons */
.featured-services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    text-align: center;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item h3 {
    margin-top: 15px;
}

.service-item p {
    padding: 0 20px;
    margin-bottom: 20px;
}

/* Section FAQ */
.faq {
    background-color: #f5f5f5;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Section Localisation */
.location {
    background-color: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address i {
    color: var(--primary);
    margin-right: 10px;
}

.address h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Section Partenaires */
.partners {
    background-color: #f5f5f5;
}

.partners-logo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logo img {
    height: 80px;
    margin: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-logo img:hover {
    filter: grayscale(0%);
}

/* ======================================
   TOUR STYLES
====================================== */
/* Tour Description */
.tour-description {
    padding: 2rem 0 4rem;
}

.tour-intro {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.tour-intro .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credit {
    font-style: italic;
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

.detail-section {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.detail-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.detail-section ul {
    padding-left: 20px;
}

.detail-section li {
    margin-bottom: 8px;
}

.cta-section {
    text-align: center;
    margin: 40px 0;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

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

/* Tour Gallery */
.tour-gallery {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Tour Media Section */
.tour-media {
    margin-bottom: 4rem;
}

/* Large Video Container */
.large-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.large-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Images Row */
.images-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.images-row .image-item {
    flex: 1;
    min-width: 200px;
    max-width: calc(33.333% - 10px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    aspect-ratio: 16/9;
}

.images-row .image-item:hover {
    transform: translateY(-5px);
}

.images-row .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Effet de zoom au survol pour voir plus de l'image */
.images-row .image-item:hover img {
    transform: scale(1.05);
}

/* Image modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.image-modal.active {
    display: flex;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Tour Details */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

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

/* Tour Details Grid */
.details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
    justify-content: center;
}

.detail-card {
    flex: 1 0 30%; /* Grow, don't shrink, and start at 30% width */
    max-width: 50%; /* Maximum width of 50% */
    min-width: 30%; /* Minimum width of 30% */
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Include padding in width calculation */
}

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

.card-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 0.5rem;
}

.detail-card ul {
    padding-left: 1.5rem;
}

.detail-card li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Pricing Card */
.pricing-card {
    background-color: #f8f9fa;
    border: 2px solid #3498db;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 1.5rem;
    color: #3498db;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

/* ======================================
   SOCIAL BANNER
====================================== */
.social-banner {
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo-column {
    flex: 0 0 8.33%;
    max-width: 8.33%;
    padding: 0 15px;
}

.hashtag-column {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.empty-column {
    flex: 0 0 41.67%;
    max-width: 41.67%;
}

.social-icons-column {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    text-align: right;
}

.animated-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hashtag-content p {
    margin: 5px 0;
    font-weight: 600;
    font-size: 1rem;
}

.hashtag-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hashtag-content a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.social-icons-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons-list li {
    margin-left: 15px;
}

.social-icons-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.social-icons-list i {
    font-size: 1.2rem;
}

/* ======================================
   FOOTER
====================================== */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    align-self: flex-start;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    margin-top: 0;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.social-media a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

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

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    transition: color 0.3s ease;
}

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

.footer-section.contact p {
    margin-bottom: 10px;
}

.footer-section.newsletter form {
    display: flex;
    margin-top: 20px;
}

.footer-section.newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.footer-section.newsletter button {
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.about-image {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 0px;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-image img {
    border-radius: 20px;
    min-width: 100%;
    min-height: 100%;
}

.about-text {
    text-align: center;
    padding: 20px;
}

/* ======================================
   ANIMATIONS
====================================== */
/* Animation pour le menu mobile */
.nav-active {
    transform: translateX(0%);
}

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

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.language-filter {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.language-filter form {
    display: flex;
    align-items: center;
}
.language-filter label {
    margin-right: 10px;
    font-weight: bold;
}
.language-filter select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(52, 73, 94, 0.95);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    padding: 5px 0;
    flex: 1;
    min-width: 200px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.btn-accept {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-learn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.lang-link {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 5px;
    text-decoration: none;
    color: #333;
}
.lang-link.active {
    font-weight: bold;
    color: var(--primary);
}
.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

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

.contact-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #555;
    line-height: 1.6;
}

.additional-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
}

.additional-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.additional-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.additional-info li {
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form-container {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
}

.contact-form-container h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 25px;
    text-align: center;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-alert i {
    font-size: 1.2rem;
    margin-top: 2px;
}

.form-alert-success {
    background: #d4edda;
    border-left: 4px solid #28a745;
    color: #155724;
}

.form-alert-error {
    background: #f8d7da;
    border-left: 4px solid #dc3545;
    color: #721c24;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 129, 189, 0.15);
    background: #fff;
}

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

.contact-form .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form .btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 129, 189, 0.3);
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 25px;
    }
}

.map-section {
    padding: 40px 0 60px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ======================================
   STATION PAGE STYLES
====================================== */
.station-page {
    padding: 40px 0 60px;
    background-color: #f9f9f9;
}

.station-header {
    text-align: center;
    margin-bottom: 40px;
}

.station-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.station-tab {
    display: inline-block;
}

.tab-label {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Station Content */
.station-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Station Info Card */
.station-info-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.station-image {
    height: 300px;
    overflow: hidden;
}

.station-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.station-details {
    padding: 30px;
}

.station-details .operator-name {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: left;
}

.station-details .operator-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.station-details .seasonal-info {
    display: inline-block;
    background-color: #e8f4fd;
    color: var(--primary);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.station-details .seasonal-info i {
    margin-right: 8px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-item > i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.info-item > div {
    flex: 1;
}

.info-item strong {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span,
.info-item a {
    color: #333;
    font-size: 1rem;
}

.info-item a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Map Button */
.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    color: white;
}

/* Station Map */
.station-map {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.station-map iframe {
    display: block;
}

/* Services Categories Grid */
.services-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-category {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

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

.category-header h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
}

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

.service-list li i {
    font-size: 0.9rem;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

/* Services Plus */
.services-plus {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.services-plus h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.services-plus h3 i {
    margin-right: 10px;
}

.services-plus p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

/* Station Contact Block */
.station-contact-block {
    background-color: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.station-contact-block h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f5f5f5;
    color: #333;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.contact-link i {
    font-size: 1.1rem;
}

/* Station Page Responsive */
@media (max-width: 992px) {
    .services-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .station-header h1 {
        font-size: 2rem;
    }

    .station-image {
        height: 200px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-categories {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-link {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .station-header h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .tab-label {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .station-details {
        padding: 20px;
    }

    .station-details .operator-name {
        font-size: 1.4rem;
    }
}

/* ======================================
   SERVICES PAGE STYLES
====================================== */
.services-page {
    padding: 40px 0 60px;
    background-color: #f9f9f9;
}

.services-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-page-header h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Quick Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.services-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    background: var(--light);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.services-nav-item:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79,129,189,0.3);
}

.services-nav-item i {
    font-size: 1rem;
}

/* Service Sections */
.service-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    overflow: hidden;
    scroll-margin-top: 100px;
}

.service-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: var(--primary);
    color: #fff;
}

.service-section-header i {
    font-size: 1.8rem;
}

.service-section-header h2 {
    font-size: 1.6rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-section-content {
    padding: 30px;
}

/* Service Intro */
.service-intro {
    margin-bottom: 25px;
}

.service-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.card-note {
    background: #e8f0fe;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 0.95rem !important;
    color: #333 !important;
}

.coming-soon {
    background: #fff3cd;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    font-weight: 600;
    color: #856404 !important;
}

/* Service Details Grid */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-detail-card {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
}

.service-detail-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card ul li {
    padding: 6px 0;
    color: #444;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-detail-card ul li:last-child {
    border-bottom: none;
}

.service-detail-card ul li i {
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.service-detail-card p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Restaurant Cards */
.restaurant-card .restaurant-location,
.restaurant-card .restaurant-contact {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.restaurant-card .restaurant-location i,
.restaurant-card .restaurant-contact i {
    color: var(--primary);
    margin-right: 4px;
}

/* Partner Note */
.partner-note {
    background: #d4edda;
    padding: 10px 15px;
    border-radius: 6px;
    color: #155724 !important;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Contact Block */
.services-contact-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    padding: 35px;
    text-align: center;
    margin-top: 40px;
}

.services-contact-block h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.services-contact-block > p {
    color: #666;
    margin-bottom: 20px;
}

.services-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.services-contact-links .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.services-contact-links .contact-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79,129,189,0.3);
}

/* Services Page Responsive */
@media (max-width: 768px) {
    .services-page-header h1 {
        font-size: 2rem;
    }

    .services-nav {
        gap: 8px;
        padding: 15px;
    }

    .services-nav-item {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .service-section-header {
        padding: 20px;
    }

    .service-section-header h2 {
        font-size: 1.3rem;
    }

    .service-section-content {
        padding: 20px;
    }

    .service-details-grid {
        grid-template-columns: 1fr;
    }

    .services-contact-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .services-page-header h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .services-nav-item span {
        display: none;
    }

    .services-nav-item {
        padding: 10px 14px;
    }

    .services-nav-item i {
        font-size: 1.2rem;
    }

    .service-section-header {
        padding: 15px;
        gap: 10px;
    }

    .service-section-header i {
        font-size: 1.4rem;
    }

    .service-section-header h2 {
        font-size: 1.1rem;
    }

    .service-detail-card {
        padding: 18px;
    }
}