/* ===================================
   Villa Sionne - UNIFIED STYLES
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #4e642d;
    background-color: antiquewhite;
    overflow-x: hidden;
}


.gallery-caption p {
    margin-left: 1rem;
    margin-bottom: 10px;
}

.gallery-caption h3 {
    margin-left: 1rem;
}

/* === HEADER === */
header {
    background: linear-gradient(135deg, #7CB342 0%, #C0E19A 100%);
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: white;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.9;
}

.logo-text {
    margin: 0;
}

/* === NAVIGATION MENU === */
.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.03);
}

.lang-current-flag {
    font-size: 1.8rem;
}

.lang-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-arrow.open {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 150px;
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.lang-option:hover {
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 100%);
    color: white;
    transform: translateX(5px);
}

.lang-option-flag {
    font-size: 1.5rem;
}

.lang-option-name {
    font-size: 0.95rem;
}

/* === HERO SECTION === */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 500"><rect fill="%23F5E6D3" width="1200" height="500"/><path fill="%237CB342" d="M0 350 Q300 300 600 350 T1200 350 L1200 500 L0 500 Z"/><circle fill="%23FFD700" cx="900" cy="100" r="60"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: antiquewhite;
    text-shadow: 6px 4px 9px black;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(124, 179, 66, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.hero-gallery {
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23F5E6D3" width="1200" height="400"/><path fill="%237CB342" d="M0 280 Q300 240 600 280 T1200 280 L1200 400 L0 400 Z"/><circle fill="%23FFD700" cx="950" cy="80" r="50"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content p {
    font-size: 1.5rem;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* === BREADCRUMB === */
.breadcrumb {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    font-size: 0.95rem;
    color: antiquewhite;
}

.breadcrumb a {
    color: antiquewhite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #f6ff00;
    text-shadow: 0 0 10px rgba(246, 255, 0, 0.5);
}

/* === MAIN CONTAINER === */
.container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #558B2F;
    margin-bottom: 2rem;
    position: relative;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #7CB342, #9CCC65);
    margin: 1rem auto;
    animation: expandWidth 1s ease-out;
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

/* Centered title class */
.centered-title {
    text-align: center;
}

/* === IMAGE CAROUSEL === */
.image-carousel {
    margin: 1.5rem 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(124, 179, 66, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: rgba(124, 179, 66, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #7CB342;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #9CCC65;
    transform: scale(1.1);
}

/* === VILLA SECTIONS === */
.about-villa {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-villa::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #7CB342, #9CCC65, #C5E1A5);
}

@keyframes shimmerTop {

    0%,
    100% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }
}

.about-villa:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.2);
}

.about-villa h2 {
    font-size: 2.2rem;
    color: #558B2F;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.about-villa h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #7CB342, #9CCC65);
    margin: 0.5rem auto;
}

.about-villa p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-top: 1rem;
}

.territory {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.territory::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #7CB342, #9CCC65, #C5E1A5);
    animation: shimmerTop 2s infinite;
}

.territory:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(124, 179, 66, 0.2);
}

.territory h2 {
    font-size: 2.2rem;
    color: #558B2F;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.territory h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #7CB342, #9CCC65);
    margin: 0.5rem auto;
}

.territory p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-top: 1rem;
}

/* === SERVICES SECTION === */
.services {
    background: rgba(245, 245, 245, 0.8);
    padding: 4rem 0;
    margin: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1), rgba(156, 204, 101, 0.1));
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 0;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(124, 179, 66, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.service-item h4 {
    font-size: 1.1rem;
    color: #558B2F;
    position: relative;
    z-index: 1;
}

/* === CARDS SECTION === */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0), rgba(124, 179, 66, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(124, 179, 66, 0.2);
}

.card-image {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #7CB342;
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.card:hover .card-image::after {
    transform: translateX(100%);
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.3rem;
    color: #558B2F;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: color 0.3s ease;
}

.card:hover .card-content h3 {
    color: #7CB342;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.card:hover .card-content p {
    color: #555;
}

/* === GALLERY SECTION === */
.gallery-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

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

.gallery-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 179, 66, 0.2);
}

.gallery-image {
    height: 250px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #7CB342;
}

.gallery-text {
    padding: 1.5rem;
    text-align: center;
}

.gallery-text h3 {
    font-size: 1.2rem;
    color: #558B2F;
    margin-bottom: 0.5rem;
}

.gallery-text p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    min-width: 60%;
    min-height: 80%;
}

.lightbox-image {
    width: 100%;
    min-height: 400px;
    border-radius: 25px;
    margin-bottom: 1rem;
    margin-top: 5%;
}

.lightbox-text {
    text-align: center;
    padding: 1rem;
}

.lightbox-text h3 {
    font-size: 1.5rem;
    color: #558B2F;
    margin-bottom: 0.5rem;
}

.lightbox-text p {
    color: #666;
    line-height: 1.6;
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #7CB342;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #558B2F;
    transform: scale(1.1);
}

/* === CONTACT SECTION === */
.contact-section {
    background: rgba(245, 245, 245, 0.8);
    padding: 4rem 0;
    margin: 4rem 0 0 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {

    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.1);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #558B2F;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(124, 179, 66, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(124, 179, 66, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.contact-details h4 {
    color: #558B2F;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-details a {
    color: #7CB342;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #558B2F;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #558B2F;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #558B2F;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Georgia', serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7CB342;
    box-shadow: 0 0 0 3px rgba(124, 179, 66, 0.1);
    transform: scale(1.01);
}

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

.submit-btn {
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 400px;
    transition: all 0.4s ease;
}

.map-container:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.2);
}

#map {
    width: 100%;
    height: 100%;
}

/* === FOOTER === */
footer {
    background: linear-gradient(135deg, #2E5016 0%, #3E6B20 100%);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #9CCC65;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #9CCC65;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* === CTA BUTTON === */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #7CB342 0%, #9CCC65 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.4);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 968px) {
    .main-nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
    }

    .header-content {
        gap: 0.75rem;
    }

    .logo img {
        height: 60px !important;
        width: 78px !important;
    }

    .logo-text {
        display: none;
    }

    .main-nav {
        order: 2;
        width: auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .lang-switcher {
        order: 3;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .lang-current {
        padding: 0.4rem 0.8rem;
    }

    .lang-current-flag {
        font-size: 1.5rem;
    }

    .lang-dropdown {
        right: -10px;
    }

    .hero {
        height: 350px;
    }

    .hero-gallery {
        height: 300px;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .container,
    .gallery-container {
        margin: 2rem auto;
        padding: 0 1rem;
    }

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

    .about-villa {
        padding: 2rem 1.5rem;
    }

    .about-villa h2 {
        font-size: 1.5rem;
    }

    .about-villa p {
        font-size: 1rem;
    }

    .carousel-container {
        height: 300px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }

    .carousel-btn.prev {
        left: 0.5rem;
    }

    .carousel-btn.next {
        right: 0.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        max-width: 100%;
    }

    .card-image {
        height: 200px;
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .service-item {
        padding: 1.5rem 0.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-item h4 {
        font-size: 0.9rem;
    }

    .territory {
        padding: 2rem 1.5rem;
    }

    .territory p {
        font-size: 1rem;
        text-align: left;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image {
        height: 220px;
        font-size: 3rem;
    }

    .lightbox-content {
        padding: 0.75rem;
        max-width: 98vw;
        max-height: 98vh;
        min-width: 90vw;
    }

    .lightbox-image {
        max-height: calc(98vh - 100px);
    }

    .lightbox-text h3 {
        font-size: 1.1rem;
    }

    .lightbox-text p {
        font-size: 0.85rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .contact-icon {
        font-size: 1.5rem;
        min-width: auto;
    }

    .contact-details {
        width: 100%;
    }

    .map-container {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 0;
    }

    .logo img {
        height: 67px !important;
        width: 80px !important;
        margin-left: -15px;
    }

    .main-nav {
        gap: 0.35rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

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

    .carousel-container {
        height: 250px;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .lightbox-content {
        padding: 0.5rem;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}