/*==================== VARIABLES CSS ====================*/
:root {
    --header-height: 4.5rem;

    /*========== Colors ==========*/
    --primary-color: #4e57d4;
    --primary-color-alt: #3942c3;
    --primary-color-light: #eef0ff;
    --secondary-color: #ff5757;
    --secondary-color-alt: #ff3a3a;
    --accent-color: #ffca28;
    --accent-color-alt: #ffb300;
    --title-color: #2d2d2d;
    --text-color: #4a4a4a;
    --text-color-light: #6e6e6e;
    --body-color: #ffffff;
    --container-color: #ffffff;
    --border-color: #e0e0e0;
    --scroll-bar-color: #c1c1c1;
    --scroll-thumb-color: #8f8f8f;

    /*========== Font and typography ==========*/
    --body-font: 'Montserrat', sans-serif;
    --heading-font: 'Poppins', sans-serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.8rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    /*========== Font weight ==========*/
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /*========== Transitions ==========*/
    --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);

    /*========== Effects & Animations ==========*/
    --hover-transform: translateY(-8px);
    --card-hover-shadow: 0 15px 35px rgba(78, 87, 212, 0.15);
}

/*========== Responsive typography ==========*/
@media screen and (max-width: 992px) {
    :root {
        --biggest-font-size: 2.25rem;
        --h1-font-size: 1.8rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 0.938rem;
        --small-font-size: 0.813rem;
        --smaller-font-size: 0.75rem;
    }
}

/*==================== BASE ====================*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

img {
    max-width: 100%;
    height: auto;
}

input, 
button,
textarea {
    font-family: var(--body-font);
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

/*==================== REUSABLE CSS CLASSES ====================*/
.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.section__description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-color-light);
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.highlight {
    color: var(--primary-color);
}

/*==================== BUTTONS ====================*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    font-weight: var(--font-medium);
    transition: 0.3s var(--transition-timing);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: 0.4s var(--transition-timing);
    z-index: -1;
}

.button:hover::before {
    transform: translateX(0);
}

.button i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

.button-block {
    width: 100%;
}

.button-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.button-primary:hover {
    background-color: var(--primary-color-alt);
}

.button-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.button-secondary:hover {
    background-color: var(--secondary-color-alt);
}

.button-accent {
    background-color: var(--accent-color);
    color: var(--title-color);
}

.button-accent:hover {
    background-color: var(--accent-color-alt);
}

.button-light {
    background-color: #fff;
    color: var(--primary-color);
}

.button-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/*==================== HEADER ====================*/
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: 0.3s var(--transition-timing);
}

.header.scroll-header {
    background-color: var(--body-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__content {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.logo-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: var(--font-bold);
    margin-bottom: -5px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.logo-img {
    height: 50px;
    width: auto;
    mix-blend-mode: multiply;
    border-radius: 0;
    box-shadow: none;
}

.nav {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    column-gap: 2rem;
}

.nav__link {
    font-weight: var(--font-medium);
    color: var(--title-color);
    transition: 0.3s var(--transition-timing);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link.active {
    position: relative;
    color: var(--primary-color);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    width: 30%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
}

.nav__phone {
    margin-left: 2rem;
}

.phone-button {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: 0.3s var(--transition-timing);
}

.phone-icon {
    margin-right: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.phone-button:hover {
    background-color: var(--primary-color-alt);
}

.nav__toggle,
.nav__close {
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
    display: none;
}

/* Show menu mobile */
@media screen and (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        padding: 5rem 2rem 0;
        background-color: var(--body-color);
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: 0.3s var(--transition-timing);
        z-index: var(--z-fixed);
        flex-direction: column;
        align-items: flex-start;
    }

    .nav.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 2rem;
        margin-bottom: 3rem;
    }

    .nav__phone {
        margin: 0;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
}

/*==================== HERO ====================*/
.hero {
    padding-top: calc(var(--header-height) + 3rem);
    background: linear-gradient(135deg, var(--primary-color-light), #fff);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%234e57d4" opacity="0.1"/></svg>');
    z-index: 0;
}

.hero__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero__title {
    font-size: var(--biggest-font-size);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero__description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--primary-color);
}

.hero__image {
    position: relative;
}

.image-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.image-placeholder {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

.image-placeholder p {
    color: #fff;
}

.image-placeholder .small {
    opacity: 0.7;
    font-size: 0.8rem;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    max-height: 250px;
}

.card-info {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 0.75rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.info-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.info-item p {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.card-banner {
    background-color: var(--primary-color-light);
    padding: 1rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: var(--font-medium);
}

/* Hero responsiveness */
@media screen and (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero__content {
        text-align: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__features {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .hero__features {
        grid-template-columns: 1fr;
    }

    .hero__buttons {
        flex-direction: column;
    }
}

/*==================== SERVICES ====================*/
.services {
    background-color: #f8f9ff;
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 87, 212, 0.1) 0%, rgba(78, 87, 212, 0) 70%);
    z-index: 0;
}

.services__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.service__card {
    background-color: var(--container-color);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s var(--transition-timing);
    border-bottom: 4px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--transition-timing);
    z-index: -1;
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--card-hover-shadow);
    border-bottom: 4px solid transparent;
}

.service__icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color-light), rgba(78, 87, 212, 0.2));
    color: var(--primary-color);
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    animation: pulse 3s infinite;
}

.service__title {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
    color: var(--title-color);
}

.service__description {
    color: var(--text-color-light);
}

.services__cta {
    margin-top: 4rem;
    background-color: var(--primary-color-light);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
}

.services__cta h3 {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
    color: var(--title-color);
}

.services__cta p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*==================== REGIONS ====================*/
.regions {
    background: linear-gradient(135deg, #f8f9ff, var(--primary-color-light));
    position: relative;
    overflow: hidden;
}

.regions::before {
    content: '';
    position: absolute;
    left: -5%;
    top: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.1) 0%, rgba(255, 87, 87, 0) 70%);
    z-index: 0;
}

.regions__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.region__card {
    background-color: var(--container-color);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: 0.4s var(--transition-timing);
    border-left: 4px solid transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.region__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s var(--transition-timing);
    z-index: -1;
}

.region__card:hover::before {
    transform: scaleY(1);
}

.region__card:hover {
    transform: var(--hover-transform);
    box-shadow: var(--card-hover-shadow);
    border-left: 4px solid transparent;
}

.region__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color-light), rgba(78, 87, 212, 0.2));
    color: var(--primary-color);
    border-radius: 1rem;
    flex-shrink: 0;
    animation: pulse 3s infinite;
}

.region__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.region__description {
    color: var(--text-color-light);
}

.regions__cta {
    margin-top: 3rem;
    background-color: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.regions__cta h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--title-color);
}

.regions__cta p {
    margin-bottom: 1.5rem;
}

.regions__badge {
    display: inline-block;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: var(--font-medium);
}

/*==================== COMPARISON ====================*/
.comparison {
    background-color: var(--body-color);
    position: relative;
    overflow: hidden;
}

.comparison::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 202, 40, 0.1) 0%, rgba(255, 202, 40, 0) 70%);
    z-index: 0;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--container-color);
}

.comparison__table th {
    background-color: var(--primary-color);
    color: #fff;
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: var(--font-semi-bold);
}

.comparison__table th.highlight-column {
    background-color: var(--secondary-color);
}

.comparison__table th:first-child {
    text-align: left;
    border-top-left-radius: 1rem;
}

.comparison__table th:last-child {
    border-top-right-radius: 1rem;
}

.comparison__table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison__table tr:last-child td {
    border-bottom: none;
}

.criteria {
    font-weight: var(--font-medium);
    color: var(--title-color);
}

.table-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.highlight-column {
    background-color: rgba(255, 87, 87, 0.05);
    font-weight: var(--font-medium);
}

.positive {
    color: #23c16b;
}

.negative {
    color: #ff5757;
}

.neutral {
    color: #ffca28;
}

.comparison__cta {
    margin-top: 3rem;
    background-color: var(--primary-color-light);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.comparison__cta h3 {
    font-size: var(--h3-font-size);
    margin-bottom: 1rem;
    color: var(--title-color);
}

.comparison__cta p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/*==================== CONTACT ====================*/
.contact {
    background: linear-gradient(135deg, var(--primary-color), #383ebd);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
}

.contact__title {
    font-size: var(--h2-font-size);
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.availability {
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    font-weight: var(--font-medium);
}

.contact__form-container {
    position: relative;
}

.contact__form {
    background-color: var(--container-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contact__reservation {
    background-color: var(--container-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.contact__reservation h3 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.reservation-text {
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.reservation-cta {
    margin-bottom: 2rem;
}

.reservation-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    color: var(--text-color-light);
}

.reservation-separator span {
    padding: 0 1rem;
    background-color: var(--container-color);
    position: relative;
    z-index: 2;
}

.reservation-separator::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.phone-text {
    margin-bottom: 1rem;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: var(--font-semi-bold);
    transition: all 0.3s ease;
}

.phone-cta:hover {
    transform: translateY(-3px);
    color: var(--accent-color-alt);
}

.contact__form h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: var(--h3-font-size);
}

.form__logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-logo-img {
    height: 60px;
    width: auto;
    mix-blend-mode: multiply;
    border-radius: 0;
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group label {
    display: block;
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
    color: var(--title-color);
}

.form__group input,
.form__group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    color: var(--text-color);
    font-size: var(--normal-font-size);
    border: 1px solid transparent;
    transition: 0.3s var(--transition-timing);
}

.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--primary-color);
    background-color: #fff;
}

@media screen and (max-width: 992px) {
    .contact__container {
        grid-template-columns: 1fr;
    }
}

/*==================== FOOTER ====================*/
.footer {
    background-color: #262837;
    color: #fff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(rgba(38, 40, 55, 0), rgba(33, 35, 49, 1));
    z-index: 0;
}

.footer__container {
    position: relative;
    z-index: 1;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    left: 0;
}

.footer__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.footer__list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer__list i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.footer__list a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s var(--transition-timing);
}

.footer__list a:hover {
    color: var(--primary-color);
}

.day {
    font-weight: var(--font-medium);
    color: #fff;
}

.hours {
    color: rgba(255, 255, 255, 0.7);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s var(--transition-timing);
}

.footer__links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: 0.3s var(--transition-timing);
}

.social-link:hover {
    background-color: var(--primary-color);
}

.newsletter-form {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Styles pour la section de réservation */
.reservation-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 202, 40, 0.3) 0%, rgba(255, 202, 40, 0) 70%);
    z-index: 0;
}

.reservation-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(78, 87, 212, 0.2) 0%, rgba(78, 87, 212, 0) 70%);
    z-index: 0;
}

.reservation-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.reservation-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.reservation-title p {
    color: rgba(255, 255, 255, 0.7);
}

.reservation-form {
    position: relative;
    z-index: 1;
}

.reservation-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-full {
    grid-column: span 2;
}

.reservation-form .form__group input,
.reservation-form .form__group textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
}

.reservation-form .form__group input::placeholder,
.reservation-form .form__group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.reservation-form .form__group input:focus,
.reservation-form .form__group textarea:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}

.reservation-form .form__group label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.reservation-form .button-accent {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-alt), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientShift 4s infinite;
    color: var(--title-color);
    font-weight: 600;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(255, 202, 40, 0.2);
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.reservation-form .button-accent::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: 0.6s ease;
    opacity: 0;
}

.reservation-form .button-accent:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(-10%, -10%);
}

.reservation-form .button-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 202, 40, 0.3);
}

.reservation-form .button-accent i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .reservation-form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-full {
        grid-column: span 1;
    }
    
    .reservation-section {
        padding: 2rem 1.5rem;
    }
    
    .reservation-title h3 {
        font-size: 1.5rem;
    }
}

/* Fin des styles pour la section de réservation */

/* Styles pour la bannière de contact dans le footer */
.footer-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 4px, transparent 4px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 150px 150px;
    opacity: 0.6;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.banner-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: pulse 3s infinite;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-bold);
}

.banner-text h3::after {
    display: none;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.banner-button {
    background-color: #fff;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: var(--font-bold);
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: 0.6s ease;
    z-index: -1;
}

.banner-button:hover::before {
    transform: translateX(100%);
}

.banner-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.banner-button i {
    animation: pulse 1.5s infinite;
}

@media screen and (max-width: 768px) {
    .footer-banner {
        padding: 1.5rem;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-icon {
        margin: 0 auto;
    }
    
    .banner-button {
        width: 100%;
        justify-content: center;
    }
}

/* Fin des styles pour la bannière de contact */

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--small-font-size);
}

/*==================== SCROLL UP ====================*/
.scrolltop {
    position: fixed;
    right: 1.5rem;
    bottom: -20%;
    background-color: var(--primary-color);
    opacity: 0.8;
    padding: 0.5rem;
    border-radius: 0.5rem;
    z-index: var(--z-tooltip);
    transition: 0.3s var(--transition-timing);
}

.scrolltop:hover {
    opacity: 1;
    background-color: var(--primary-color-alt);
}

.scrolltop__icon {
    font-size: 1.5rem;
    color: #fff;
}

.show-scroll {
    bottom: 5rem;
}

/*==================== MEDIA QUERIES ====================*/
/* For medium devices */
@media screen and (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section__header {
        margin-bottom: 3rem;
    }

    .services__container,
    .regions__container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For small devices */
@media screen and (max-width: 576px) {
    .section {
        padding: 3rem 0;
    }

    .region__card {
        padding: 1.25rem;
    }

    .comparison__table th, 
    .comparison__table td {
        padding: 1rem 0.75rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
    }
}

/* For large devices */
@media screen and (min-width: 992px) {
    .button {
        padding: 1rem 2rem;
    }
}

/* Ajout d'animations pour les éléments */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(78, 87, 212, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(78, 87, 212, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(78, 87, 212, 0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Applique les animations */
.service__icon, .region__icon {
    animation: pulse 3s infinite;
}

.contact__form {
    animation: floating 6s infinite ease-in-out;
}

.hero__title .highlight, .section__title::after {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--primary-color));
    background-size: 300% 100%;
    animation: gradientShift 8s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section__title::after {
    -webkit-text-fill-color: initial;
}

/* Style pour la réservation */
.reservation-form .button-accent {
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-alt), var(--accent-color));
    background-size: 200% 100%;
    animation: gradientShift 4s infinite;
    color: var(--title-color);
    font-weight: 600;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 20px rgba(255, 202, 40, 0.2);
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.reservation-form .button-accent::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: 0.6s ease;
    opacity: 0;
}

.reservation-form .button-accent:hover::after {
    opacity: 1;
    transform: rotate(30deg) translate(-10%, -10%);
}

.reservation-form .button-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 202, 40, 0.3);
}

.reservation-form .button-accent i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
} 