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

:root {
    --primary: #50ddc4;
    /* Accent color from colybry.com */
    --primary-light: #26bca1;
    /* Darker accent for hover */
    --dark: #0f172a;
    /* Text color */
    --light: #f7fcfa;
    /* Background color */
    --gradient-1: linear-gradient(135deg, #7AF0C5 0%, #83D9E2 100%);
    --gradient-1-2: linear-gradient(135deg, rgba(122, 240, 197, 0.1) 0%, rgba(131, 217, 226, 0.1) 100%);
    --gradient-2: linear-gradient(135deg, #83D9E2 0%, #82C0FF 100%);
    --gradient-3: linear-gradient(135deg, #A6B3EE 0%, #FF8FD8 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 4rem);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

nav .logo {
    height: 40px;
}

nav .logo img {
    height: 100%;
    width: auto;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

nav .nav-center ul li {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    /* Creates a "bridge" for the cursor */
    position: relative;
    display: flex;
    align-items: center;
}

nav .nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.nav-link {
    white-space: nowrap;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(80, 221, 196, 0.3);
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 188, 161, 0.4);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1002;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s;
    padding: 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 400px;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--primary);
}

.mobile-nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(80, 221, 196, 0.3);
    margin-top: 1rem;
}

.mobile-nav-link-secondary {
    font-size: 1rem;
    color: #64748b;
    text-decoration: none;
    margin-top: 1rem;
}

/* Desktop Menu Visibility */
.desktop-menu {
    display: contents;
    /* Allows children to be flex items of nav container */
}

@media (max-width: 968px) {
    .burger-menu {
        display: flex;
    }

    .desktop-menu {
        display: none;
    }
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    /* Position right below the parent */
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    list-style: none;
    min-width: 320px;
    z-index: 1001;
    flex-direction: column;
    gap: 0.5rem !important;
    /* Override the main ul gap */
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(80, 221, 196, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(80, 221, 196, 0.4);
    background: var(--primary-light);
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    width: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    /* Reset padding from parent */
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

.dropdown-item {
    display: flex !important;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start !important;
}

.dropdown-item-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-flag {
    width: 20px;
    height: auto;
}

.dropdown-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: var(--primary);
}

.dropdown-item-desc {
    font-size: 0.85rem;
    font-weight: 400;
    color: #64748b;
    white-space: normal;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: 90vh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 221, 196, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0rem 2rem 0rem;
    position: relative;
    z-index: 2;
    text-align: center;
}

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

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-extra {
    margin-bottom: 2rem;
}

.trustpilot-rating {
    margin-top: 6rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

.trustpilot-rating span {
    color: var(--primary);
}

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

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    /* Dark overlay */
}

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

/* Hero Floating Tags */
.hero-image-wrapper {
    position: relative;
    /* Ensure tags are positioned relative to this wrapper */
}

.hero-floating-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    animation: float-tag 4s ease-in-out infinite;
    white-space: nowrap;
    pointer-events: none;
    /* Let clicks pass through if needed */
}

.tag-1 {
    top: 15%;
    left: -20px;
    animation-delay: 0s;
    transform: rotate(-5deg);
}

.tag-2 {
    top: 40%;
    right: -10px;
    animation-delay: 1.5s;
    transform: rotate(3deg);
}

.tag-3 {
    bottom: 20%;
    left: -10px;
    animation-delay: 0.8s;
    transform: rotate(4deg);
}

.tag-4 {
    top: 70%;
    right: -20px;
    animation-delay: 1.5s;
    transform: rotate(3deg);
}

@keyframes float-tag {

    0%,
    100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }

    50% {
        transform: translateY(-10px) rotate(var(--rotation, 0deg));
    }
}

/* Specific rotations for keyframes to work correctly with existing transforms */
.tag-1 {
    --rotation: -5deg;
}

.tag-2 {
    --rotation: 3deg;
}

.tag-3 {
    --rotation: 4deg;
}

@media (max-width: 768px) {
    .hero-floating-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .tag-1 {
        top: 10%;
        left: -10px;
    }

    .tag-2 {
        top: 5%;
        right: -5px;
    }

    .tag-3 {
        bottom: 15%;
        left: -5px;
    }
}

/* Key Figures Section */
.key-figures {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    background: white;
    position: relative;
    z-index: 10;
    margin-top: -2rem;
    /* Slight overlap or just close to hero */
    margin-top: 0;
    border-bottom: 1px solid #f0f0f0;
}

.key-figures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.key-figure-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.key-figure-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.key-figure-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

@media (max-width: 968px) {
    .key-figures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .key-figures-grid {
        grid-template-columns: 1fr;
    }
}

/* Destinations Section */
.destinations {
    padding: 6rem 2rem;
    background: var(--light);
}

.destinations .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

.destination-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s;
}

.destination-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.destinations-grid .destination-card:nth-child(1) {
    transition-delay: 0.1s;
}

.destinations-grid .destination-card:nth-child(2) {
    transition-delay: 0.2s;
}


.destination-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

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

.destination-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease-out;
}

.destination-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.destination-flag {
    width: 32px;
    height: auto;
    border-radius: 4px;
}

.destination-card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0;
}

.destination-card-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.destination-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.destination-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.destination-cta.disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.destination-cta.disabled:hover {
    background: #ccc;
}



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

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 5rem;
}

.trustpilot-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.trustpilot-link:hover {
    color: var(--primary-light);
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: var(--light);
    text-align: center;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    text-align: center;
}

.service-item {
    padding: 1rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

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

.services-grid .service-item:nth-child(2) .service-icon {
    background: var(--gradient-2);
}

.services-grid .service-item:nth-child(3) .service-icon {
    background: var(--gradient-3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 1.5;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.services-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    /* border-top: 1px solid #e2e8f0; Removed border */
    text-align: left;
}

.services-footer-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 40px;
    padding: 0rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

.services-footer-content {
    padding: 3rem;
    flex: 1;
    max-width: 500px;
}

.services-footer-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.services-footer-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.services-footer-visual {
    padding: 3rem;
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-footer-gradient {
    border-radius: 40px;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.5;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services-footer-img {
    padding: 1rem;
    position: relative;
    z-index: 1;
    width: 90%;
    height: auto;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    /* For the glass effect on the border/container if it had one */
    background: rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateY(4deg) rotateX(4deg);
    transition: transform 0.5s ease;
}

.services-footer-img:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

@media (max-width: 968px) {
    .services-footer-container {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 3rem;
    }

    .services-footer-content {
        max-width: 100%;
    }

    .services-footer-content h3 {
        font-size: 2rem;
    }

    .services-footer-visual {
        width: 100%;
    }

    .services-footer-img {
        transform: none;
        /* Remove 3D effect on mobile */
    }
}

/* Customer Service Section */
.customer-service-section {
    padding: 6rem 2rem;
    background: var(--light);
}

.cs-hero {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark);
    /* Dark Blue (same as footer) */
    border-radius: 80px;
    padding: 2rem;
    display: flex;
    align-items: stretch;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.cs-mascot-wrapper {
    flex: 0 0 40%;
    position: relative;
}

.cs-mascot {
    width: 380px;
    height: 380px;
    position: absolute;
    margin-left: -6rem;
    bottom: -2rem;
    z-index: 2;
}

.cs-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.cs-tag {
    position: absolute;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tag-efficace {
    background: #f0eada;
    /* Light beige */
    color: #333;
    top: 20px;
    right: 20px;
    transform: rotate(5deg);
}

.tag-pedagogue {
    background: #f0eada;
    /* Light beige */
    color: #333;
    top: 90px;
    right: 10px;
    padding: 0.6rem 1.2rem;
    transform: rotate(-4deg);
}

.tag-clair {
    background: #a7d8de;
    /* Light blue */
    color: #333;
    bottom: 60px;
    right: 30px;
    transform: rotate(3deg);
}


.cs-content-wrapper {
    flex: 1 1 60%;
    color: white;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.cs-content-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cs-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 45ch;
}

.cs-description p:not(:last-child) {
    margin-bottom: 1rem;
}

.tag-gentil {
    background: #ffe4e9;
    /* Pale pink */
    color: #333;
    bottom: -20px;
    right: 50px;
    transform: rotate(4deg);
    padding: 0.7rem 1.5rem;
}

@media (max-width: 968px) {
    .cs-hero {
        flex-direction: column;
        padding: 2rem;
        border-radius: 40px;
    }

    .cs-mascot-wrapper {
        margin-bottom: 2rem;
        align-self: center;
    }

    .cs-mascot {
        position: relative;
        bottom: auto;
        margin: -4rem auto 0 auto;
    }

    .cs-content-wrapper {
        padding-left: 0;
        text-align: center;
    }

    .cs-description p,
    .cs-content-wrapper h2 {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

/* Process Section Modern Redesign 2025 */
.process-section-modern {
    padding: 10rem 2rem;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Animated Background Blobs */
.process-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: blob-float 20s infinite alternate;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(80, 221, 196, 0.3);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(131, 217, 226, 0.3);
    animation-delay: -5s;
}

@keyframes blob-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

.process-section-modern .section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

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

.process-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1000px;
}

.process-cta-container {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.process-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: card-enter 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.process-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.process-card-modern:nth-child(2) {
    animation-delay: 0.3s;
}

.process-card-modern:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes card-enter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(80, 221, 196, 0.2);
    border-color: rgba(80, 221, 196, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.card-glass-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s;
}

.process-card-modern:hover .card-glass-effect {
    opacity: 1;
}

.process-card-number {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(80, 221, 196, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    transition: all 0.5s;
    user-select: none;
}

.process-card-modern:hover .process-card-number {
    color: rgba(80, 221, 196, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.process-card-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.process-card-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid rgba(80, 221, 196, 0.3);
    transition: all 0.5s;
    color: var(--primary);
}

.process-card-modern:hover .process-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 15px 35px rgba(80, 221, 196, 0.3);
}

.process-card-icon svg {
    width: 40px;
    height: 40px;
    transition: all 0.5s;
}

.process-card-modern h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process-card-modern p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
}



.process-step:nth-child(3) {
    transition-delay: 0.3s;
}



.process-step:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease-out, opacity 0.6s ease-out, transform 0.6s ease-out;
}

.process-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s;
}

.process-step:hover .process-step-number {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(80, 221, 196, 0.4);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 2rem;
    background: var(--light);
}

.testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
    /* This container is now just for the title */
}

.testimonials-scroller {
    max-width: 100%;
    overflow: hidden;
    margin-top: 4rem;
    padding-bottom: 4rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.testimonials-track {
    display: flex;
    width: calc(380px * 24);
    /* card-width * total-cards */
    animation: scroll 80s linear infinite;
}

.testimonials-scroller:hover .testimonials-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-380px * 12));
        /* card-width * number-of-original-cards */
    }
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    margin: 0 15px;
    /* Replaces gap */
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.testimonial-stars {
    color: #ffc94a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

/* Testimonials Grid Static (for specific pages) */
.testimonials-grid-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.testimonials-grid-static .testimonial-card {
    width: auto;
    margin: 0;
}

@media (max-width: 1200px) {
    .testimonials-grid-static {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* Values Section */
.values {
    padding: 8rem 2rem;
    background: white;
}

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

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

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

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--gradient-1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.value-item:nth-child(2) .value-icon {
    background: var(--gradient-2);
}

.value-item:nth-child(3) .value-icon {
    background: var(--gradient-3);
}

.value-item:hover .value-icon {
    transform: rotate(0deg) scale(1.1);
}

.value-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.value-item p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

/* Why Us Section - Sticky Stack */
/* Why Us Section - Sticky Stack with Alternating Images */
.why-us {
    padding: 4rem 2rem 8rem 2rem;
    background: #fff;
    position: relative;
}

.why-us .container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-us-scroll-container {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.why-us-card {
    position: sticky;
    /*top: calc(120px + (var(--index) * 15px));*/
    top: 135px;
    height: 450px;
    background: var(--color, white);
    border-radius: 40px;
    padding: 0;
    margin-bottom: 4rem;
    /*box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.03), 0 25px 50px -12px color-mix(in srgb, var(--color), #94a3b8 40%);*/
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform-origin: center top;
    transition: transform 0.5s ease;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    /* Ensure equal height */
    text-align: left;
}

/* Alternating Layout */
.why-us-card:nth-child(odd) {
    flex-direction: row-reverse;
    /* Image Right, Content Left */
}

.why-us-card:nth-child(even) {
    flex-direction: row;
    /* Image Left, Content Right */
}

.why-us-image {
    width: 45%;
    min-height: 300px;
    /* Ensure height */
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

/* Gradient Overlay Logic */
.why-us-image::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: block;
}

/* Odd cards: Image Right -> Gradient on Left side of image */
.why-us-card:nth-child(odd) .why-us-image::after {
    background: linear-gradient(to right, var(--color, white) 0%, transparent 30%);
}

/* Even cards: Image Left -> Gradient on Right side of image */
.why-us-card:nth-child(even) .why-us-image::after {
    background: linear-gradient(to left, var(--color, white) 0%, transparent 30%);
}

.why-us-content {
    width: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    /* Reset negative margin */
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-us-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
}

.why-us-card p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    max-width: 100%;
    margin: 0;
}

/* Stack effect offsets */
/* Stack effect offsets are now handled by the calc() in the main class using the --index variable */

@media (max-width: 768px) {
    .why-us-card {
        flex-direction: column !important;
        /* Always stack on mobile */
        border-radius: 30px;
        top: 100px !important;
        height: auto;
        margin-bottom: 2rem;
        text-align: center;
    }

    .why-us-image {
        width: 100%;
        height: 200px;
        min-height: auto;
    }

    .why-us-content {
        width: 100%;
        padding: 2rem;
        align-items: center;
        /* Center content on mobile */
    }

    .why-us-card h3 {
        font-size: 1.8rem;
    }

    .why-us-icon {
        margin-top: -50px;
        /* Bring back overlap for mobile */
        margin-bottom: 1rem;
    }

    /* Mobile: Image Top -> Gradient on Bottom */
    .why-us-card:nth-child(odd) .why-us-image::after,
    .why-us-card:nth-child(even) .why-us-image::after {
        background: linear-gradient(to top, var(--color, white) 0%, transparent 30%);
    }
}

/* FAQ Section */
.faq {
    padding: 8rem 2rem;
    background: var(--light);
}

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

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(80, 221, 196, 0.05);
}

.faq-answer {
    display: none;
    padding: 0 2rem 2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    background: var(--light);
}

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

.contact h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(80, 221, 196, 0.3);
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 2rem;
    /* Reduced padding as it's a final block */
    background: var(--light);
}

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

.final-cta-card {
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.final-cta-content-wrapper {
    flex: 1 1 35%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    color: white;
}

.final-cta-image {
    flex: 1 1 45%;
    min-height: 250px;
}

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

.final-cta-content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.final-cta-content-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.final-cta-content-wrapper .cta-button {
    background: white;
    color: var(--dark) !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.final-cta-content-wrapper .cta-button:hover {
    background: #f0f0f0;
    color: var(--primary) !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 5rem 2rem 2rem 2rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-about .footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    max-width: 350px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 500;
    transition: all 0.3s;
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white !important;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 968px) {
    nav {
        top: 1rem;
        width: calc(100% - 2rem);
    }

    nav .nav-center {
        display: none;
    }

    .nav-cta {
        font-size: 0.85rem;
        padding: 0.7rem 1.5rem;
    }
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

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

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

    .services-grid {
        gap: 3rem;
    }

    .process-grid::before {
        display: none;
        /* Hide horizontal line on mobile */
    }

    .process-step {
        margin-bottom: 2rem;
        /* Add space between stacked items */
    }

    .final-cta-card {
        flex-direction: column;
    }

    .final-cta-content-wrapper {
        text-align: center;
    }

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

    .final-cta-content-wrapper .cta-button {
        align-self: center;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about p {
        margin: 0 auto;
    }

    .footer-socials,
    .footer-links ul {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 1.5rem;
    }
}

/* ========================================
   ESPAGNE PAGE SPECIFIC STYLES
   ======================================== */

/* Services Section - White Background Override */
.espagne-page #services {
    background-color: white !important;
}

/* Hero Section - Custom Layout for Espagne Page */
.espagne-page .hero {
    background: var(--gradient-1-2) !important;
    color: var(--dark) !important;
}

.espagne-page .hero .container {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    max-width: 1200px;
    text-align: left;
}

.espagne-page .hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.espagne-page .hero-content h1 {
    text-align: left;
}

.espagne-page .hero-content p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    color: var(--dark) !important;
}

.espagne-page .hero-image-wrapper {
    flex: 0 0 40%;
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.espagne-page .hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.espagne-page .location-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 3;
}

.espagne-page .location-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.espagne-page .hero-background {
    display: none;
}

.espagne-page .hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .espagne-page .hero .container {
        flex-direction: column;
        gap: 2rem;
    }

    .espagne-page .hero-content {
        padding-right: 0;
    }

    .espagne-page .hero-content h1,
    .espagne-page .hero-content p {
        text-align: center;
    }

    .espagne-page .hero-cta-group {
        justify-content: center;
    }

    .espagne-page .hero-image-wrapper {
        flex: 0 0 auto;
        height: 400px;
    }
}

/* Benefits Grid */
.espagne-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.espagne-page .benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(80, 221, 196, 0.2);
    border-bottom: 3px solid var(--primary);
    opacity: 0;
    transform: translateY(30px);
}

.espagne-page .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(80, 221, 196, 0.15);
    border-color: var(--primary);
    background: var(--gradient-1-2);
}

.espagne-page .benefit-card h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.espagne-page .benefit-card p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

/* Hero Bullets */
.espagne-page .hero-bullets {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.espagne-page .hero-bullets li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA Secondary */
.espagne-page .cta-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white !important;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.espagne-page .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Service List */
.espagne-page .service-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.espagne-page .service-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #475569;
}

.espagne-page .service-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Mini CTA Section */
.espagne-page .mini-cta-section {
    margin-top: 3rem;
    text-align: center;
}

/* Services Card Grid (Alan Style) */
.espagne-page .services-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.espagne-page .service-card-modern {
    background: #f8fafc;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.espagne-page .service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.espagne-page .service-card-text {
    padding: 2.5rem 2rem 1rem 2rem;
    flex: 1;
    text-align: left;
}

.espagne-page .service-card-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.espagne-page .service-card-text p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Service List Simple */
.espagne-page .service-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.espagne-page .service-list-simple li {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Service Card Visual */
.espagne-page .service-card-visual {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.espagne-page .service-card-modern:nth-child(1) .service-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.espagne-page .service-card-modern:nth-child(2) .service-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.espagne-page .service-card-modern:nth-child(3) .service-card-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.espagne-page .visual-blue {
    background: #eff6ff;
}

.espagne-page .visual-green {
    background: #f0fdf4;
}

.espagne-page .visual-orange {
    background: #fff7ed;
}

.espagne-page .service-img {
    max-width: 80%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.espagne-page .service-card-modern:hover .service-img {
    transform: scale(1.05);
}

/* Floating Badge */
.espagne-page .floating-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Trustpilot Rating Override */
.espagne-page .trustpilot-rating {
    color: var(--dark) !important;
}