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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #111416;
    background-color: #ffffff;
}

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

/* Header */
.header {
    border-bottom: 1px solid #e5e8ea;
    padding: 4px 0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    order: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nav-brand h1 {
    font-size: 18px;
    font-weight: 700;
    color: #111416;
    order: 1;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #111416;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #043b3a;
}

.mobile-contact-btn {
    display: none;
}

.desktop-contact-btn {
    display: block;
}

/* Language Selector */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eff2f4;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #111416;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-btn:hover {
    background: #dbe0e5;
}

.flag-icon {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.language-btn:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e8ea;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border: none;
    background: none;
    font-size: 14px;
    color: #111416;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: left;
}

.language-option:hover {
    background: #f8f9fa;
}

.language-option:first-child {
    border-radius: 12px 12px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 12px 12px;
}

/* Mobile Language Selector */
.mobile-language-selector {
    display: none;
    padding: 16px 0;
    border-top: 1px solid #e5e8ea;
    margin-top: 16px;
}

.mobile-language-selector h4 {
    font-size: 14px;
    font-weight: 600;
    color: #111416;
    margin-bottom: 12px;
}

.mobile-language-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e5e8ea;
    border-radius: 8px;
    background: white;
    font-size: 13px;
    color: #111416;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-language-option:hover {
    background: #f8f9fa;
    border-color: #085d5a;
}

.mobile-language-option .flag-icon {
    width: 14px;
    height: 10px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #111416;
    transition: 0.3s;
}

.fixed-banner {
    position: fixed;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #085d5a;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 2px 0;
    z-index: 999;
    white-space: nowrap;
    pointer-events: none;
    text-align: center;
}

.contact-btn {
    background: #eff2f4;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #111416;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background: #dbe0e5;
}

/* Hero Section */
.hero {
    background: linear-gradient(90deg, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.1) 100%), url('./public/Ibero\ Mijas\ Cala\ Cam\ 04\ Campo\ de\ golf.jpg') center/cover;
    background-position: center 20%;
    height: 480px;
    display: flex;
    align-items: flex-end;
    padding: 45px 20px;
    border-radius: 12px;
    margin: 80px 20px 40px 20px;
    position: relative;
}

.hero-content {
    max-width: 848px;
    color: white;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.hero-content p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    background: #085d5a;
    border: none;
    padding: 12px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #f1f1f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #043b3a;
    transform: translateY(-2px);
}

/* Property Info Section */
.property-info {
    padding: 40px 0;
    background: #f8f9fa;
    width: 40%;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.property-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.stat-icon {
    flex-shrink: 0;
}

.stat-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #085d5a;
    margin-bottom: 4px;
}

.stat-text p {
    font-size: 16px;
    color: #637787;
    line-height: 1.4;
}

/* Section Titles */
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: #111416;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
    background-color: #dbdbdb;
    border-radius: 25px 25px 5px 25px;
    padding: 8px 16px;
}

/* Amenities Section */
.amenities {
    padding: 40px 0;
}

.amenities-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px;
    justify-content: center;
    align-items: center;
    scroll-snap-type: x mandatory;
}

.amenity-card {
    flex-shrink: 0;
    width: 176px;
}

.amenity-image {
    width: 100%;
    height: 176px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 12px;
}

.amenity-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #111416;
    text-align: center;
    margin-bottom: 8px;
}

/* Experience Section */
.experience {
    padding: 40px 0;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.experience-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.experience-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 60px;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.experience-text p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
    color: #111416;
}

/* High Life Section */
.high-life {
    padding: 115px 0;
    text-align: center;
}

.high-life h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.property-gallery {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gallery-item {
    width: 301px;
    height: 169px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-intro {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
}

.amenities-list {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
}

.check-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 16px;
    line-height: 24px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 33px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 480px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #111416;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dbe0e5;
    border-radius: 12px;
    font-size: 16px;
    color: #637787;
    background: white;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #085d5a;
}

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

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #085d5a;
}

.checkbox-item label {
    font-size: 16px;
    line-height: 24px;
    color: #111416;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #085d5a;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #f1f1f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #043b3a;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #085d5a;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #f1f1f1;
    text-decoration: underline;
}

/* Terms Section */
.terms {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.terms h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111416;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero {
        height: 520px;
        margin: 90px 20px 50px 20px;
    }
    
    .hero-content h2 {
        font-size: 52px;
        line-height: 64px;
    }
    
    .experience-text h2 {
        font-size: 52px;
        line-height: 64px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 18px;
    }
    
    .property-stats {
        gap: 50px;
    }
    
    .gallery-item {
        width: 280px;
        height: 157px;
    }
}

/* Tablet landscape */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        margin: 60px 16px 30px 16px;
        height: 400px;
    }
    
    .hero-content h2 {
        font-size: 40px;
        line-height: 50px;
    }
    
    .experience-text h2 {
        font-size: 40px;
        line-height: 50px;
    }
    
    .property-stats {
        gap: 40px;
    }
    
    .property-info {
        width: 60%;
    }
    
    .gallery-item {
        width: 260px;
        height: 146px;
    }
    
    .amenities-grid {
        justify-content: flex-start;
        padding-left: 16px;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 16px;
        position: relative;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
        border-top: 1px solid #e5e8ea;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 200;
        margin-top: 1px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-contact-btn {
        display: block;
        width: 100%;
        margin-top: 8px;
    }
    
    .desktop-contact-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
    }
    
    .language-selector {
        order: 2;
        display: none;
    }
    
    .mobile-language-selector {
        display: block;
    }
    
    .fixed-banner {
        font-size: 0.85rem;
        padding: 1px 0;
    }
    
    .hero {
        margin: 40px 16px 20px 16px;
        height: 350px;
        padding: 32px 16px;
    }
    
    .hero-content h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .cta-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .property-info {
        width: 80%;
        padding: 30px 0;
    }
    
    .property-stats {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        justify-content: center;
        text-align: center;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .experience-text h2 {
        font-size: 32px;
        line-height: 40px;
    }
    
    .amenities-grid {
        justify-content: flex-start;
        padding: 0 16px;
    }
    
    .amenity-card {
        width: 150px;
    }
    
    .amenity-image {
        height: 150px;
    }
    
    .property-gallery {
        justify-content: center;
        overflow-x: auto;
        padding: 0 16px 12px 16px;
        gap: 8px;
    }
    
    .gallery-item {
        flex-shrink: 0;
        width: 240px;
        height: 135px;
    }
    
    .high-life {
        padding: 60px 0;
    }
    
    .contact h2 {
        font-size: 28px;
    }
    
    .footer-contact {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .container {
            padding: 0 16px;
    }

    .header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .map-header h2 {
        font-size: 28px;
    }

    .map-header p {
        font-size: 16px;
    }

    .map-iframe {
        height: 350px;
    }

    .map-section {
        padding: 40px 0;
    }

    .location-info {
        padding: 40px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-card {
        padding: 24px;
    }
}

/* Mobile landscape */
@media (max-width: 640px) {
    .property-gallery {
        justify-content: center;
    }
    
    .gallery-item {
        width: 220px;
        height: 124px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .fixed-banner {
        font-size: 0.75rem;
        padding: 1px 0;
        line-height: 1.2;
    }
    
    .nav-brand h1 {
        font-size: 16px;
    }
    
    .logo {
        width: 50px;
        height: 50px;
    }
    
    .language-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
    
    .hero {
        margin: 30px 12px 15px 12px;
        height: 300px;
        padding: 24px 12px;
    }
    
    .hero-content h2 {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -1px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
    
    .property-info {
        padding: 25px 0;
        width: 95%;
    }
    
    .stat-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: rgba(8, 93, 90, 0.1);
    }
    
    .stat-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .stat-text h3 {
        font-size: 18px;
    }
    
    .stat-text p {
        font-size: 14px;
    }
    
    .experience {
        padding: 30px 0;
    }
    
    .experience-text h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .experience-text p {
        font-size: 15px;
    }
    
    .amenities {
        padding: 30px 0;
    }
    
    .amenities-grid {
        padding: 0 12px;
        justify-content: flex-start;
    }
    
    .amenity-card {
        width: 130px;
    }
    
    .amenity-image {
        height: 130px;
        background-size: 60px !important;
        background-position: center !important;
    }
    
    .amenity-card h3 {
        font-size: 14px;
    }
    
    .high-life {
        padding: 40px 0;
    }
    
    .high-life h2 {
        font-size: 22px;
    }
    
    .section-description {
        font-size: 15px;
        padding: 0 12px;
    }
    
    .property-gallery {
        padding: 0 12px 12px 12px;
        justify-content: center;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-x: visible;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 280px;
        height: 140px;
        margin: 0 auto;
        flex-shrink: 1;
    }
    
    .amenities-intro {
        font-size: 15px;
        padding: 0 12px;
    }
    
    .amenities-list {
        padding: 0 12px;
    }
    
    .amenity-item span {
        font-size: 15px;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .contact h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 0 12px;
        max-width: none;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .checkbox-item label {
        font-size: 14px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-contact {
        gap: 16px;
    }
    
    .contact-item a {
        font-size: 14px;
    }
    
    .terms {
        padding: 40px 0;
    }
    
    .terms h2 {
        font-size: 20px;
    }
    
    .container {
            padding: 0 12px;
        }

        .map-header h2 {
            font-size: 24px;
        }

        .map-iframe {
            height: 300px;
        }

        .map-overlay-content {
            padding: 16px 20px;
        }

        .map-overlay-content h3 {
            font-size: 16px;
        }

        .map-overlay-content p {
            font-size: 13px;
        }
}

/* Extra small devices */
@media (max-width: 360px) {
    .fixed-banner {
        font-size: 0.7rem;
    }
    
    .hero-content h2 {
        font-size: 20px;
        line-height: 26px;
    }
    
    .experience-text h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .gallery-item {
        height: 120px;
    }
    
    .amenity-card {
        width: 120px;
    }
    
    .amenity-image {
        height: 120px;
        background-size: 50px !important;
    }
    
    .contact h2 {
        font-size: 20px;
    }
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111416;
    margin-bottom: 16px;
}

.map-header p {
    font-size: 18px;
    color: #637787;
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.map-iframe {
    width: 100%;
    height: 450px;
    border: none;
    pointer-events: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 93, 90, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-overlay-content {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.map-container:hover .map-overlay-content {
    transform: translateY(0);
}

.map-overlay-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #085d5a;
    margin-bottom: 8px;
}

.map-overlay-content p {
    font-size: 14px;
    color: #637787;
}

/* Location Info */
.location-info {
    padding: 60px 0;
    background: white;
}

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

.info-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #085d5a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111416;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 16px;
    color: #637787;
    line-height: 1.6;
}