/* ==========================================
   VARIABLES & RESET
   ========================================== */
:root {
    /* Palette de couleurs */
    --color-sand: #E6D5B8;
    --color-sand-light: #F5EFE6;
    --color-ocean: #2C5F7C;
    --color-ocean-dark: #1A3D4F;
    --color-white: #FFFFFF;
    --color-cream: #FAF7F2;
    --color-gold: #C9A961;
    --color-gold-light: #D4B978;
    --color-text: #2C3E50;
    --color-text-light: #6C757D;
    
    /* Typographie */
    --font-primary: 'Poppins', sans-serif;
    
    /* Espacements */
    --section-padding: 5rem 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Ombres */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* ==========================================
   UTILITIES
   ========================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.text-center {
    text-align: center;
}

.section__title {
    font-size: 2.5rem;
    color: var(--color-ocean-dark);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-ocean));
    border-radius: 2px;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-fast);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-ocean);
}

.nav__logo i {
    color: var(--color-gold);
    font-size: 1.8rem;
}

.nav__list {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link.active {
    color: var(--color-ocean);
}

/* Language Selector */
.nav__lang {
    display: flex;
    gap: 1rem;
    margin-left: 2rem;
}

.lang-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    transition: var(--transition-fast);
}

.lang-link:hover,
.lang-link.active {
    background: var(--color-ocean);
    color: var(--color-white);
}

/* Mobile Menu Toggle */
.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-ocean);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.1);
    animation: parallax 20s infinite alternate;
}

@keyframes parallax {
    from { transform: scale(1.1) translateY(0); }
    to { transform: scale(1.1) translateY(-20px); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 61, 79, 0.7), rgba(44, 95, 124, 0.5));
    z-index: -1;
}

.hero__content {
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 2rem;
}

.hero__title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero__subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--color-sand);
}

.hero__description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--outline {
    background: transparent;
    border-color: var(--color-ocean);
    color: var(--color-ocean);
}

.btn--outline:hover {
    background: var(--color-ocean);
    color: var(--color-white);
    transform: translateY(-3px);
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    background: var(--color-white);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-cream);
    border-radius: 15px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
}

.feature-card__title {
    font-size: 1.5rem;
    color: var(--color-ocean-dark);
    margin-bottom: 1rem;
}

.feature-card__text {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ==========================================
   PREVIEW SECTION
   ========================================== */
.preview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.preview__card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.preview__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.preview__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.preview__content {
    padding: 1.5rem;
}

.preview__content h3 {
    color: var(--color-ocean);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.preview__content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* ==========================================
   PAGE HEADER
   ========================================== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.page-header__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 61, 79, 0.7);
    z-index: -1;
}

.page-header__title {
    font-size: 3.5rem;
    color: var(--color-white);
    text-align: center;
    font-weight: 600;
}

/* ==========================================
   LOCATIONS SECTION
   ========================================== */
.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.location-card--reverse {
    direction: rtl;
}

.location-card--reverse > * {
    direction: ltr;
}

.location-card__image {
    height: 500px;
    overflow: hidden;
}

.location-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.location-card:hover .location-card__image img {
    transform: scale(1.05);
}

.location-card__content {
    padding: 3rem;
}

.location-card__content h2 {
    font-size: 2.5rem;
    color: var(--color-ocean);
    margin-bottom: 1.5rem;
}

.location-card__text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.location-card__features {
    list-style: none;
    margin-bottom: 2rem;
}

.location-card__features li {
    padding: 0.5rem 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.location-card__features i {
    color: var(--color-gold);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    background: var(--color-white);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery__item {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    position: relative;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 95, 124, 0.3);
    opacity: 0;
    transition: var(--transition-fast);
}

.gallery__item:hover::after {
    opacity: 1;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text-light);
}

.about__text p {
    margin-bottom: 1.5rem;
}

.about__image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: auto;
}

/* ==========================================
   VALUES SECTION
   ========================================== */
.values {
    background: linear-gradient(135deg, var(--color-ocean), var(--color-ocean-dark));
    color: var(--color-white);
}

.values .section__title {
    color: var(--color-white);
}

.values .section__title::after {
    background: var(--color-gold);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.value-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    opacity: 0.9;
    line-height: 1.8;
}

/* ==========================================
   TEAM SECTION
   ========================================== */
.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.team__card {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.team__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team__card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--color-sand);
}

.team__card h3 {
    color: var(--color-ocean);
    margin-bottom: 0.5rem;
}

.team__card p {
    color: var(--color-gold);
    font-weight: 500;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact__intro {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact__intro h2 {
    font-size: 2.5rem;
    color: var(--color-ocean);
    margin-bottom: 1rem;
}

.contact__buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact__btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.contact__btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold);
}

.contact__btn--whatsapp:hover {
    border-color: #25D366;
}

.contact__btn-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    flex-shrink: 0;
}

.contact__btn--whatsapp .contact__btn-icon {
    background: #25D366;
}

.contact__btn-content h3 {
    color: var(--color-ocean);
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.contact__btn-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact__info-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact__info-card h3 {
    color: var(--color-ocean);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact__info-card i {
    color: var(--color-gold);
}

.contact__map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-ocean-dark);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.footer__logo i {
    color: var(--color-gold);
    font-size: 2rem;
}

.footer__info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.9;
}

.footer__info i {
    color: var(--color-gold);
    width: 20px;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
}

.footer__copyright {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.2s; }
.fade-in:nth-child(2) { animation-delay: 0.4s; }
.fade-in:nth-child(3) { animation-delay: 0.6s; }
.fade-in:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media screen and (max-width: 992px) {
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.5rem;
    }
    
    .location-card,
    .location-card--reverse {
        grid-template-columns: 1fr;
    }
    
    .location-card__image {
        height: 350px;
    }
    
    .about__content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--color-white);
        padding: 6rem 2rem;
        transition: var(--transition-smooth);
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__lang {
        margin-left: 0;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 2rem;
        font-size: 1.8rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .page-header__title {
        font-size: 2.5rem;
    }
    
    .features__grid,
    .preview__grid,
    .values__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__buttons {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .location-card__content {
        padding: 2rem 1.5rem;
    }
    
    .location-card__content h2 {
        font-size: 2rem;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] .nav__lang {
    margin-left: 0;
    margin-right: 2rem;
}

[dir="rtl"] .nav__menu {
    right: auto;
    left: -100%;
}

[dir="rtl"] .nav__menu.show-menu {
    left: 0;
}

[dir="rtl"] .nav__close {
    right: auto;
    left: 2rem;
}

[dir="rtl"] .section__title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

/* ==========================================
   PAGE TARIFS
   ========================================== */

/* Sous-titre du header de page */
.page-header__subtitle {
    color: var(--color-sand);
    font-size: 1.2rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: 300;
}

/* Section tarifs */
.tarifs {
    background: var(--color-cream);
}

.tarifs--alt {
    background: var(--color-white);
}

/* En-tête de chaque site */
.tarifs__site-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tarifs__site-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-ocean), var(--color-ocean-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    box-shadow: 0 8px 25px rgba(44, 95, 124, 0.3);
}

.tarifs__site-badge--green {
    background: linear-gradient(135deg, #4A7C59, #2D5A3F);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
}

.tarifs__site-badge--urban {
    background: linear-gradient(135deg, var(--color-gold), #B8943E);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.tarifs__site-title {
    font-size: 2.5rem;
    color: var(--color-ocean-dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tarifs__site-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grille des cartes de prix */
.tarifs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

/* ==========================================
   CARTE DE PRIX (PRICING CARD)
   ========================================== */
.pricing-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Carte populaire (mise en avant) */
.pricing-card--popular {
    border-color: var(--color-gold);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular:hover {
    transform: scale(1.03) translateY(-8px);
}

/* Badge "Populaire" */
.pricing-card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

[dir="rtl"] .pricing-card__badge {
    right: auto;
    left: 20px;
}

/* Image de la carte */
.pricing-card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.pricing-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.pricing-card:hover .pricing-card__image img {
    transform: scale(1.08);
}

/* Corps de la carte */
.pricing-card__body {
    padding: 2rem;
}

.pricing-card__name {
    font-size: 1.4rem;
    color: var(--color-ocean-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-card__desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Prix */
.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-sand-light);
}

.pricing-card__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-ocean);
    line-height: 1;
}

.pricing-card--popular .pricing-card__amount {
    color: var(--color-gold);
}

.pricing-card__currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-ocean);
}

.pricing-card__period {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-left: 0.3rem;
}

[dir="rtl"] .pricing-card__period {
    margin-left: 0;
    margin-right: 0.3rem;
}

/* Liste des commodités */
.pricing-card__amenities {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-card__amenities li {
    padding: 0.45rem 0;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.92rem;
}

.pricing-card__amenities li i {
    color: var(--color-gold);
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
}

/* Bouton de la carte */
.pricing-card__btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 2rem;
}

/* ==========================================
   NOTE SUR LES TARIFS
   ========================================== */
.tarifs-note {
    background: var(--color-sand-light);
    padding: 3rem 0;
}

.tarifs-note__card {
    background: var(--color-white);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
    border-left: 5px solid var(--color-gold);
}

[dir="rtl"] .tarifs-note__card {
    border-left: none;
    border-right: 5px solid var(--color-gold);
}

.tarifs-note__icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.tarifs-note__card p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ==========================================
   RESPONSIVE TARIFS
   ========================================== */
@media screen and (max-width: 992px) {
    .tarifs__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-card--popular {
        transform: scale(1);
    }
    
    .pricing-card--popular:hover {
        transform: translateY(-8px);
    }
}

@media screen and (max-width: 768px) {
    .tarifs__site-title {
        font-size: 2rem;
    }
    
    .tarifs__grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .pricing-card__amount {
        font-size: 2.5rem;
    }
    
    .tarifs-note__card {
        padding: 2rem 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .pricing-card__body {
        padding: 1.5rem;
    }
    
    .pricing-card__image {
        height: 180px;
    }
}