/* Variables CSS */
@import url('https://fonts.googleapis.com/css2?family=Momo+Signature&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playwrite+AU+TAS:wght@100..400&display=swap');

.momo-signature-regular {
    font-family: "Momo Signature", cursive;
    font-weight: 400;
    font-style: normal;
}

.playwrite-au-tas-second {
    font-family: "Playwrite AU TAS", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #307044;
    --secondary-color: #152642;
    --accent-color: #dc0f19;
    --light-color: #f7fafc;
    --dark-color: #152642;
    --text-color: #307044;
    --black-color: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    font-size: clamp(14px, 2vw, 16px); /* Taille responsive */
}

.language-switcher {
    display: flex;
    position: relative;
    left: clamp(1rem, 5vw, 8rem); /* Responsive positioning */
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.language-switcher a {

    padding: 0.3rem 0.3rem;
    min-width: 2rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: clamp(12px, 1.5vw, 14px);
}

.language-switcher a:hover {
    background-color: #307044d3;
    color: white;
    transform: translateY(-3.5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(16px, 4vw, 24px);
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: clamp(13px, 1.5vw, 16px);
}

#btn-footer {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(16px, 4vw, 24px);
    background-color: #152642d8;
    color: white;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: clamp(13px, 1.5vw, 16px);
}
#btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.btn-soumission {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(16px, 4vw, 24px);
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: clamp(13px, 1.5vw, 16px);
}

.btn-soumission:hover {
    background-color: #307044d3;
    color: white;
    transform: translateY(-3.5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section {
    padding: clamp(40px, 10vw, 80px) 0;
}

.section-title {
    text-align: center;
    margin-bottom: clamp(30px, 8vw, 50px);
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 30vw, 180px);
    height: 6px;
    background-color: var(--primary-color);
}

.section-title p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header et Navigation */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: clamp(5px, 1vw, 10px) 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 3vw, 20px) 0;
}

.logo {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.logo i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.nav-links {
    display: flex;
    position: relative;
    left: clamp(0, 5vw, 15rem);
    gap: clamp(15px, 2vw, 30px);
    flex-wrap: wrap;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    font-weight: 800;
    transition: var(--transition);
    position: relative;
    left: 10rem;
    font-size: clamp(13px, 1.5vw, 16px);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 1rem;
}

.hero {
    height: 100vh;
    min-height: 600px;
    background: #307044a5;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeBackground 45s infinite;
    z-index: -1;
}

@keyframes fadeBackground {
    0%, 11.11% {
        background-image: url('https://images.pexels.com/photos/7937753/pexels-photo-7937753.jpeg');
    }
    11.12%, 22.22% {
        background-image: url('https://images.pexels.com/photos/8469937/pexels-photo-8469937.jpeg');
    }
    22.23%, 33.33% {
        background-image: url('https://d15zjc2r4e8kr7.cloudfront.net/9328/blog/pexels-mart-production-7415028.jpg');
    }
    33.34%, 44.44% {
        background-image: url('https://coachello.ai/wp-content/uploads/2025/07/Z11drpbqstJ98f-n_pexels-antoni-shkraba-7144262-scaled.jpg');
    }
    44.45%, 55.55% {
        background-image: url('https://www.expert-comptable-tpe.fr/wp-content/uploads/2013/11/expert-comptable-fiscaliste-scaled.webp');
    }
    55.56%, 66.66% {
        background-image: url('https://img.centrefrance.com/N0Bco89PTcivM7PkXYWNuScFTx3QLHSHEmByfP7WIAU/rs:fill:1200:800:1:0/g:sm/bG9jYWw6Ly8vMDAvMDAvMDYvODgvODEvMjAwMDAwNjg4ODE0Mw.jpg');
    }
    66.67%, 77.77% {
        background-image: url('https://img.freepik.com/free-photo/crop-real-estate-agent-with-keys-house_23-2147797578.jpg?semt=ais_hybrid&w=740&q=80');
    }
    77.78%, 88.88% {
        background-image: url('https://www.ccsfinance.co.uk/wp-content/uploads/2023/02/modern-apartment-architecture.jpg');
    }
    88.89%, 100% {
        background-image: url('https://www.academiedesinvestisseurs.com/wp-content/uploads/2025/08/biens-rentables-immobilier.jpg');
    }
}


.hero-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    padding: 0 1rem;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: clamp(20px, 5vw, 30px);
    padding: 0 1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 3vw, 20px);
    flex-wrap: wrap;
    padding: 0 1rem;
}

.hero-buttons button,
.hero-buttons a {
    flex: 1;
    min-width: 150px;
    max-width: 230px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 100%, 300px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    padding: 0 1rem;
}

.service-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    border: 1px solid rgba(26, 54, 93, 0.06);
    border-radius: 12px;
    padding: clamp(20px, 5vw, 30px);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.06);
    transition: transform 450ms cubic-bezier(.2, .9, .3, 1), box-shadow 350ms, background 350ms;
    transform-style: preserve-3d;
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 350ms;
}

.service-card::before {
    width: 160px;
    height: 160px;
    right: -40px;
    top: -40px;
}

.service-card::after {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -60px;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-14px) rotateX(4deg);
    box-shadow: 0 22px 46px rgba(26, 54, 93, 0.14);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 0.24;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 15vw, 84px);
    height: clamp(60px, 15vw, 84px);
    border-radius: 50%;
    margin: 0 auto clamp(12px, 3vw, 18px);
    font-size: clamp(2rem, 4vw, 2.4rem);
    color: white;
    background: var(--primary-color);
    box-shadow: 0 8px 20px rgba(45, 55, 72, 0.08);
    transition: transform 350ms, box-shadow 350ms;
    will-change: transform;
    animation: float 6s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 18px 36px rgba(45, 55, 72, 0.12);
}

.service-card h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--black-color);
    font-size: clamp(0.85rem, 2vw, 0.98rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    z-index: 2;
}

.service-card .btn {
    display: inline-block;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    font-weight: 600;
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.95);
    color: rgba(212, 175, 55, 0.95);
    transition: background 300ms, color 300ms, transform 250ms;
    z-index: 2;
    font-size: clamp(13px, 1.5vw, 15px);
}

.service-card .btn:hover {
    background: rgba(212, 175, 55, 0.95);
    color: var(--primary-color);
    transform: translateY(-4px);
}

.service-card .features {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    z-index: 2;
}

.service-card .features .tag {
    background: rgba(26, 54, 93, 0.06);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: clamp(12px, 1.2vw, 14px);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Featured Properties */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 100%, 350px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    padding: 0 1rem;
}

.property-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: clamp(200px, 40vw, 250px);
    overflow: hidden;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: clamp(10px, 2vw, 15px);
    right: clamp(10px, 2vw, 15px);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: clamp(12px, 1.5vw, 14px);
}

.property-content {
    padding: clamp(15px, 3vw, 20px);
}

.property-price {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.property-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 0.75rem;
}

.property-location {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: clamp(13px, 1.5vw, 15px);
}

.property-location i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    font-size: clamp(12px, 1.3vw, 14px);
}

.feature i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

/* About Section */
.about-content {
    
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 8vw, 50px);
    align-items: center;
    padding: 0 1rem;
}

.about-container {
    display: flex;
    gap: clamp(2rem, 5vw, 5rem);
    position: relative;
    left: clamp(0, 3vw, 1rem);
    bottom: clamp(0, 5vw, 3rem);
    flex-wrap: wrap;
}

#about{
    height: 58rem;
}
.about-image {
    border-radius: 8px;
    overflow: hidden;
    width: clamp(250px, 80vw, 50rem);
    height: clamp(250px, 80vw, 27rem);
    max-width: 35rem;
    position: relative;
    right: clamp(0, 3vw, 2rem);
    max-height: 40rem;
    object-fit: contain;
    box-shadow: var(--shadow);
}

.image-about {
    width: clamp(200px, 80vw, 30rem);
    height: clamp(200px, 80vw, 30rem);
    position: relative;
    left: 0;
    top: clamp(1rem, 3vw, 3rem);
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--light-color);
    border: clamp(0.4rem, 1vw, 0.7rem) solid var(--primary-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-description {
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
    color: var(--text-color);
}

.about-text h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: clamp(15px, 3vw, 20px);
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: clamp(15px, 3vw, 20px);
    color: #000000;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

#about-texts {
    position: relative;
    bottom: 30rem;
    left: 34rem;
    top: clamp(0, 2vw, 0.5rem);
}




.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(20px, 5vw, 20px);
    margin-top: clamp(20px, 5vw, 30px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-color);
}

/* Reservation Section */
.reservation {
    background-color: #224e30;
    color: white;
    padding: clamp(40px, 10vw, 80px) 1rem;
}

.reservation .section-title h2 {
    color: white;
}

.reservation .section-title h2::after {
    background-color: #FFFFFF;
}

.reservation-form {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    background-color: white;
    padding: clamp(25px, 5vw, 40px);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: clamp(15px, 3vw, 20px);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: clamp(13px, 1.5vw, 15px);
}

.form-control {
    width: 100%;
    padding: clamp(10px, 2vw, 12px) clamp(12px, 2vw, 15px);
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: clamp(13px, 1.5vw, 16px);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px #30704451;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(15px, 3vw, 20px);
}
input[type="date"] {
    -webkit-appearance: none;
    width: 100%;
    text-align: left;
    min-height: 2.5rem; /* Ajuste selon ton design */
    padding: 0.5rem;
     /* Évite le zoom auto */
}
/* Testimonials */
.testimonials-slider {
    max-width: 60rem;
    width: 90%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.testimonial {
    background-color: white;
    padding: clamp(20px, 5vw, 30px);
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
    background-color: var(--primary-color);
    animation: fadeIn 0.5s ease;
    color: #FFFFFF;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: clamp(15px, 3vw, 20px);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    position: relative;
    color: #FFFFFF;
    padding: 0 1rem;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: clamp(2rem, 5vw, 3rem);
    color: #FFFFFF;
    position: absolute;
    opacity: 0.3;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-image {
    width: clamp(50px, 10vw, 60px);
    height: clamp(50px, 10vw, 60px);
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0;
    flex-shrink: 0;
    color: var(--primary-color);
    background-color: white;
}



.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: bold;
    background-color: var(--light-color);
    color: var(--primary-color);
}

.author-info h4 {
    color: #FFFFFF;
    margin-bottom: 0.3rem;
    font-size: clamp(13px, 1.8vw, 16px);
}

.author-info p {
    font-size: clamp(11px, 1.3vw, 14px);
    color: #FFFFFF;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: clamp(20px, 5vw, 30px);
    gap: 0.5rem;
    flex-wrap: wrap;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e0;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 8vw, 50px);
    padding: 0 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 3vw, 20px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact-details p {
    font-size: clamp(13px, 1.5vw, 15px);
}

.social-links {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    margin-top: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.social-link {
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.social-link:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: clamp(40px, 8vw, 60px) 1rem clamp(15px, 3vw, 20px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 5vw, 30px);
    margin-bottom: clamp(30px, 5vw, 40px);
}

.footer-column h3 {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: clamp(15px, 2vw, 20px);
    color: #FFFFFF;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #FFFFFF;
}

.footer-links li {
    margin-bottom: clamp(8px, 1.5vw, 10px);
}

.footer-links a {
    transition: var(--transition);
    font-size: clamp(12px, 1.5vw, 14px);
}

.footer-links a:hover {
    padding-left: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(15px, 2vw, 20px);
    border-top: 1px solid #ffffff;
    font-size: clamp(12px, 1.3vw, 14px);
}

.footer-measure {
    height: clamp(6rem, 15vw, 10rem);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slider for about */
.simple-slider {
    width: clamp(280px, 90vw, 40rem);
    margin: clamp(20px, 5vw, 40px) auto;
    background: var(--primary-color);
    border-radius: 10px;
    padding: 0.75rem;
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    height: clamp(200px, 50vw, 250px);
    position: relative;
    margin-bottom: clamp(15px, 3vw, 20px);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    text-align: center;
    padding: clamp(15px, 3vw, 20px);
    max-width: 400px;
    width: 90%;
}

.slide-icon {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(10px, 2vw, 15px);
    animation: float 3s ease-in-out infinite;
}

.slide-title {
    color: #2c3e50;
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    margin-bottom: clamp(10px, 2vw, 15px);
    font-weight: 700;
}

.slide-text {
    color: #555;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.5;
    margin-bottom: clamp(15px, 3vw, 20px);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.mini-stats {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 20px);
    margin-top: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
}

.mini-stat {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2vw, 15px);
    border-radius: 20px;
    font-weight: bold;
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: clamp(10px, 2vw, 15px);
    margin-top: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
}

.trust-badges span {
    background: #e8f4fc;
    color: #3498db;
    padding: clamp(5px, 1vw, 6px) clamp(10px, 2vw, 12px);
    border-radius: 10px;
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    border: 1px solid #3498db33;
}

.services-tags {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 10px);
    margin-top: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
}

.services-tags span {
    background: #f8f9fa;
    color: #2c3e50;
    padding: clamp(5px, 1vw, 6px) clamp(12px, 2vw, 15px);
    border-radius: 15px;
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.services-tags span:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.simple-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 3vw, 20px);
    margin-top: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.control {
    background: #3498db;
    color: white;
    border: none;
    width: clamp(35px, 8vw, 40px);
    height: clamp(35px, 8vw, 40px);
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(1rem, 2vw, 1.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.control:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: clamp(8px, 1.5vw, 10px);
    flex-wrap: wrap;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #3498db;
    transform: scale(1.3);
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.simple-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2c3e50, #3498db);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

.slider-container {
    margin-bottom: clamp(20px, 5vw, 30px);
    overflow: hidden;
    padding: 0 1rem;
}

.slider-track {
    position: relative;
    height: clamp(60px, 15vw, 80px);
}

.slider-item {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: fadeInOut 7s ease-in-out infinite;
    text-align: center;
    padding: 0 1rem;
}

.slider-item.active {
    opacity: 1;
    animation: slideIn 0.8s ease-out;
}

.slider-badge {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: clamp(5px, 1vw, 5px) clamp(12px, 2vw, 15px);
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(11px, 1.3vw, 13px);
}

.slider-item p {
    color: #333;
    font-size: clamp(13px, 2vw, 16px);
    margin: 0;
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }
    10%, 90% {
        opacity: 1;
    }
}

#logo-all-pass {
    width: clamp(2.5rem, 8vw, 4.2rem);
    height: clamp(2rem, 6vw, 3rem);
    position: relative;
    right: 0.4rem;
    bottom: 0.1rem;
    object-fit: contain;
}

#role {
    position: relative;
    bottom: 30rem;
    left: 34rem;
    
    background-color: var(--primary-color);
    text-align: center;
    font-weight: bolder;
    color: white;
    height: clamp(3.5rem, 12vw, 5rem);
    border-radius: 0.5rem;
    padding: clamp(0.5rem, 2vw, 1rem);

}

#role p {
    color: white;
    position: relative;
    top: -1rem;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-weight: 800;
    margin: 0;
}

.profile {
    position: relative;
    
    top: clamp(0.9rem, 1vw, 0.7rem);
}


/* Responsive Design */
@media (max-width: 992px) {

        
    .logo {
        font-size: clamp(0.3rem, 2.2vw, 2rem);
        position: relative;
        right: 2rem;
        width: clamp(40rem, 20vw, 6rem);
    }
    .language-switcher a{
        padding: 0.1rem 0.3rem;
        font-size: clamp(0.1rem, 2vw, 1rem);

    }
    .language-switcher{
        width: clamp(20rem, 5vw, 6rem);
    }
    .mobile-menu {
        position: relative;
        left: 2.8rem;
       
    }

    .language-switcher{
        position: relative;
        left: 2rem;
    }
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    #about-texts {
        position: relative;
        left: 0rem;
        bottom: 0rem;
        top: clamp(0, 2vw, 0.5rem);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    

    .nav-links {
        left: 0;
        gap: 1rem;
    }
    
    .nav-links a {
        left: 0;
    }
    #role p{
        position: relative;
        left: 0rem;
        top: -0.50rem;
        
    }
}

@media (max-width: 768px) {

    .logo {
        font-size: clamp(0.3rem, 2.2vw, 2rem);
        position: relative;
        right: 2rem;
        width: clamp(40rem, 20vw, 6rem);
    }
    .language-switcher a{
        padding: 0.1rem 0.3rem;
        font-size: clamp(0.1rem, 2vw, 1rem);

    }
    .language-switcher{
        width: clamp(20rem, 5vw, 6rem);
    }
    .mobile-menu {
        position: relative;
        left: 2.8rem;
       
    }

    .language-switcher{
        position: relative;
        left: 2rem;
    }
    .navbar {
        padding: clamp(12px, 2vw, 15px) 0;
    }
    #about-texts {
        position: relative;
        left: 0rem;
        bottom: 0rem;
   
        top: clamp(0, 2vw, 0.5rem);
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: clamp(30px, 5vw, 50px);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: clamp(10px, 2vw, 15px) 0;
    }
    .nav-links a {
        left: 0;
    }
    .mobile-menu {
        display: block;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .language-switcher {
        left: clamp(1rem, 3vw, 3rem);
    }
        #role{
        position: relative;
        left: 0rem;
        bottom: 0rem;
        top: clamp(0, 2vw, 0.5rem);
    }
    #role p{
        position: relative;
        left: 0rem;
        top: -0.50rem;
        
    }
    
    #about{
        height: 75rem;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: clamp(0.3rem, 2.2vw, 2rem);
        position: relative;
        right: 2rem;
        width: clamp(40rem, 20vw, 6rem);
    }
    .language-switcher a{
        padding: 0.1rem 0.15rem;
        font-size: clamp(0.1rem, 2vw, 1rem);

    }
    .language-switcher{
        width: clamp(20rem, 5vw, 6rem);
    }
    .mobile-menu {
        position: relative;
        left: 2.8rem;
       
    }

    .language-switcher{
        position: relative;
        left: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: clamp(10px, 2vw, 12px);
        width: 100%;
    }
    #about-texts {
        position: relative;
        left: 0rem;
        bottom: 0rem;
   
        top: clamp(0, 2vw, 0.5rem);
    }
    .hero-buttons button,
    .hero-buttons a {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: clamp(12px, 3vw, 15px);
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 3vw, 20px);
        padding: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: clamp(20px, 4vw, 25px);
        padding: clamp(20px, 3vw, 30px) 1rem;
    }

    h1 {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
        line-height: 1.2;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .language-switcher {
        left: 0;
        
    }

    .nav-links {
        width: 100vw;
        left: -100vw;
    }
    .nav-links a {
        left: 0;
    }

    .reservation-form {
        width: 100%;
        padding: clamp(20px, 4vw, 25px);
    }
        #role{
        position: relative;
        left: 0rem;
        bottom: 0rem;
        top: clamp(0, 2vw, 0.5rem);
    }
    #role p{
        position: relative;
        left: 0rem;
        top: -0.50rem;
        
    }
    
    #about{
        height: 75rem;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: clamp(0.3rem, 2.2vw, 2rem);
        position: relative;
        right: 2rem;
        width: clamp(40rem, 20vw, 6rem);
    }
    .language-switcher a{
        padding: 0.03rem 0.03rem;
        font-size: clamp(0.1rem, 2vw, 1rem);

    }
    .language-switcher{
        width: clamp(18rem, 4vw, 5rem);
    }
    .mobile-menu {
        position: relative;
        left: 2.8rem;
       
    }

    .language-switcher{
        position: relative;
        left: 2rem;
    }
    .nav-links a {
        left: 0;
    }

    #about-texts {
        position: relative;
        left: 0rem;
        bottom: 0rem;
        
   
        top: clamp(0, 2vw, 0.5rem);
    }
 
    #role{
        position: relative;
        left: 0rem;
        bottom: 0rem;
        top: clamp(0, 2vw, 0.5rem);
    }
    #role p{
        position: relative;
        left: 0rem;
        top: -0.50rem;
        
    }
    .nav-links {
        gap: 0.5rem;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .section-title h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .footer-column h3 {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    #about{
        height: 75rem;
    }

}
