/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #222;
    background-color: #ffffff;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 24px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid #333;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-text h3 {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.cookie-text p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept, .btn-decline {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-accept {
    background: #ff385c;
    color: white;
}

.btn-accept:hover {
    background: #e31c5f;
    transform: translateY(-1px);
}

.btn-decline {
    background: transparent;
    color: #b0b0b0;
    border: 1px solid #333;
}

.btn-decline:hover {
    background: #333;
    color: white;
}

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #dddddd;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Header */
.header {
    background: #f7f7f7;
    color: #222;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.header-content h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 400;
}

/* Hero Section */
.hero {
    padding: 40px 0;
    background: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
    align-items: start;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
    grid-column: 1 / 3;
    grid-row: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dot.active {
    background: #ff385c;
    transform: scale(1.2);
    border-color: #ff385c;
}

.dot:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(0, 0, 0, 0.5);
}

.hero-image:hover .slide.active img {
    transform: scale(1.02);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-end !important;
    gap: 16px;
    padding: 0;
    width: 100%;
    grid-column: 1 / 3;
    grid-row: 2;
}

.btn-hero {
    background: white !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    color: #1a4d3a !important;
    min-width: 180px;
    justify-content: flex-start;
}

.btn-hero:hover {
    background: #f8f8f8;
    border-color: #1a4d3a;
    transform: translateY(-1px);
}

.btn-icon {
    color: #1a4d3a;
    font-size: 16px;
}

.btn-text {
    font-weight: 500;
    font-size: 14px;
    color: #1a4d3a;
}

/* Broker Section */
.broker-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    max-width: 85%;
    margin: 0 auto;
    grid-column: 3;
    grid-row: 1;
}

.broker-section:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.broker-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.broker-info {
    flex: 1;
}

.broker-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a4d3a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.broker-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.broker-name a {
    color: #1a4d3a;
    text-decoration: underline;
    text-decoration-color: #1a4d3a;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.broker-name a:hover {
    color: #144039;
    text-decoration-color: #144039;
    text-decoration-thickness: 2px;
}

.verification-links {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.verification-link {
    color: #1a4d3a;
    text-decoration: underline;
    text-decoration-color: #1a4d3a;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.verification-link:hover {
    color: #144039;
    text-decoration-color: #144039;
    text-decoration-thickness: 2px;
}

.broker-agency {
    font-size: 0.875rem;
    color: #222;
    font-weight: 400;
    margin: 0 0 8px 0;
}

.broker-languages {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.languages-label {
    font-size: 0.75rem;
    color: #717171;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.languages-list {
    font-size: 0.875rem;
    color: #222;
    font-weight: 400;
}

.broker-photo {
    flex-shrink: 0;
}

.broker-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}

.broker-image:hover {
    border-color: #1a4d3a;
    transform: scale(1.05);
}

.broker-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-show-phone {
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    color: #1a4d3a;
    width: 100%;
    justify-content: flex-start;
}

.btn-show-phone:hover {
    background: #f8f8f8;
    border-color: #1a4d3a;
    transform: translateY(-1px);
}

.btn-show-phone i {
    color: #1a4d3a;
    font-size: 16px;
}

.btn-email-broker {
    background: #1a4d3a;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    color: white;
    width: 100%;
    justify-content: flex-start;
}

.btn-email-broker:hover {
    background: #144039;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 77, 58, 0.3);
}

.btn-email-broker i {
    color: white;
    font-size: 16px;
}

.btn-show-phone.revealed {
    background: #1a4d3a;
    color: white;
    border-color: #1a4d3a;
}

.btn-show-phone.revealed:hover {
    background: #144039;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 77, 58, 0.3);
}

.btn-show-phone.revealed i {
    color: white;
}

/* Property Details Hero Section */
.property-details-hero {
    padding: 60px 0;
    background: #f7f7f7;
    border-top: 1px solid #e0e0e0;
}

.property-details-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Left Column: Description */
.description-column {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.description-column h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.description-text {
    margin-top: 0;
}

.description-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #717171;
    margin-bottom: 24px;
}

.description-full {
    margin-bottom: 24px;
}

.description-full p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #717171;
    margin-bottom: 16px;
}

.show-more-btn {
    background: transparent;
    border: 2px solid #ff385c;
    color: #ff385c;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-more-btn:hover {
    background: #ff385c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.3);
}

.show-more-btn i {
    transition: transform 0.3s ease;
}

.show-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Right Column: Price and Details */
.price-details-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.price-details-column .price-section {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.property-details-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
}

.info-label {
    font-weight: 500;
    color: #333;
    min-width: 140px;
    font-size: 0.9rem;
}

.info-value {
    font-weight: 600;
    color: #1a4d3a;
    flex: 1;
    font-size: 0.9rem;
}

.info-link {
    color: #1a4d3a;
    text-decoration: underline;
    text-decoration-color: #1a4d3a;
    text-underline-offset: 3px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.info-link:hover {
    color: #144039;
    text-decoration-color: #144039;
    text-decoration-thickness: 2px;
}

.info-icon {
    color: #717171;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.info-icon:hover {
    color: #1a4d3a;
}

/* Responsive Design for Two-Column Layout */
@media (max-width: 768px) {
    .property-details-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .description-column {
        padding: 30px 20px;
    }
    
    .price-details-column .price-section {
        padding: 30px 20px;
    }
    
    .property-details-section {
        padding: 30px 20px;
    }
    
    .description-column h2 {
        font-size: 1.75rem;
    }
    
    .description-intro,
    .description-full p {
        font-size: 1rem;
    }
}



.price-section {
    margin-bottom: 32px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.price-per-sqm {
    font-size: 1.125rem;
    color: #717171;
    font-weight: 400;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.feature:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature i {
    font-size: 24px;
    color: #ff385c;
}

.feature span {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    margin: 0 auto;
}

.btn-primary {
    background: #ff385c;
    color: white;
}

.btn-primary:hover {
    background: #e31c5f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.3);
}

.btn-secondary {
    background: #222;
    color: white;
}

.btn-secondary:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(34, 34, 34, 0.3);
}

.btn-outline {
    background: transparent;
    color: #222;
    border: 2px solid #dddddd;
}

.btn-outline:hover {
    background: #222;
    color: white;
    border-color: #222;
    transform: translateY(-2px);
}

/* Property Description */
.property-description {
    padding: 80px 0;
    background: #f7f7f7;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
}

.description-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
}

.description-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #717171;
    margin-bottom: 24px;
}


/* Photo Gallery */
.photo-gallery {
    padding: 80px 0;
    background: white;
}

.photo-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

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

.gallery-nav-btn {
    padding: 12px 24px;
    border: 2px solid #dddddd;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    color: #222;
}

.gallery-nav-btn:hover,
.gallery-nav-btn.active {
    background: #ff385c;
    color: white;
    border-color: #ff385c;
    transform: translateY(-1px);
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item[data-room="floor-plan"] img {
    object-fit: contain;
    background: #f8f9fa;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 32px;
}

/* Property Details */
.property-details {
    padding: 80px 0;
    background: white;
}

.details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.detail-item {
    background: #f7f7f7;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.detail-item:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    font-size: 32px;
    color: #ff385c;
}

.detail-item h3 {
    font-size: 14px;
    color: #717171;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
}


/* Location & Amenities */
.location-amenities {
    padding: 80px 0;
    background: #f7f7f7;
}

.location-amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #222;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.amenity-item {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.amenity-item:hover {
    background: #f0f0f0;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.amenity-item i {
    font-size: 48px;
    color: #ff385c;
    margin-bottom: 24px;
}

.amenity-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #222;
}

.amenity-item p {
    color: #717171;
    font-size: 16px;
    line-height: 1.5;
}


/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content-full {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-content-full h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a4d3a;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #222;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #dddddd;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background: #f7f7f7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff385c;
    background: white;
}

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

.form-disclaimer {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 12px;
    line-height: 1.3;
    font-style: italic;
    opacity: 0.8;
}

/* Form validation error messages */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    display: none;
    font-weight: 500;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}


/* Footer */
.footer {
    background: #222;
    color: white;
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 16px;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 32px;
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1000px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.modal-content img[data-room="floor-plan"] {
    object-fit: contain;
    background: #f8f9fa;
    max-height: 80vh;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.2s ease;
}

.close:hover {
    color: #ff385c;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.modal-nav-btn:hover {
    background: white;
    transform: scale(1.1);
}

.modal-nav-btn i {
    color: #222;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .broker-section {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 24px;
    }
    
    .hero-image {
        grid-column: 1;
        grid-row: 1;
    }
    
    .broker-section {
        grid-column: 1;
        grid-row: 2;
    }
    
    .hero-buttons {
        grid-column: 1;
        grid-row: 3;
        justify-content: center !important;
    }
    
    .broker-section {
        padding: 24px;
        max-width: 100%;
        margin: 0;
    }
    
    .broker-content {
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .broker-image {
        width: 80px;
        height: 80px;
    }
    
    .broker-title {
        font-size: 1.125rem;
    }
    
    .broker-name {
        font-size: 1rem;
    }
    
    .property-details-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .property-details-content .price-section {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .property-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .info-section {
        padding: 24px;
    }
    
    .info-section-title {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }
    
    .info-label {
        min-width: 120px;
        font-size: 0.85rem;
    }
    
    .info-value {
        font-size: 0.85rem;
    }
    
    .header-content h1 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .key-features {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-content-full {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .contact-content-full h2 {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .gallery-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 16px;
    }
    
    .gallery-nav-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .similar-properties-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
        padding: 0 16px;
        justify-content: center;
    }
    
    .btn-hero {
        padding: 12px 16px;
        font-size: 14px;
        min-width: 100%;
        gap: 8px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .btn-text {
        font-size: 14px;
    }
    
}

@media (max-width: 480px) {
    .header {
        padding: 30px 0;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .property-description,
    .photo-gallery,
    .floor-plan,
    .property-details,
    .association-operation,
    .loan-calculation,
    .location-amenities,
    .similar-properties,
    .contact-section {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .language-toggle {
        top: 16px;
        right: 16px;
    }
    
    .lang-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff385c;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* Analytics tracking styles */
[data-analytics] {
    position: relative;
}

[data-analytics]:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 56, 92, 0.05);
    pointer-events: none;
    border-radius: inherit;
}

/* Contact Broker Info */
.contact-broker-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 32px;
    border: 1px solid #e9ecef;
}

.contact-broker-details {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.contact-broker-photo {
    flex-shrink: 0;
}

.contact-broker-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.contact-broker-text {
}

.contact-broker-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 2px 0;
}

.contact-broker-name a {
    color: #1a4d3a;
    text-decoration: underline;
    text-decoration-color: #1a4d3a;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
}

.contact-broker-name a:hover {
    color: #144039;
    text-decoration-color: #144039;
    text-decoration-thickness: 2px;
}

.contact-broker-agency {
    font-size: 0.875rem;
    color: #222;
    font-weight: 400;
    margin: 0 0 4px 0;
}

.contact-verification-links {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-verification-link {
    color: #1a4d3a;
    text-decoration: underline;
    text-decoration-color: #1a4d3a;
    text-underline-offset: 3px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.contact-verification-link:hover {
    color: #144039;
    text-decoration-color: #144039;
    text-decoration-thickness: 2px;
}

.contact-broker-languages {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-languages-label {
    font-size: 0.75rem;
    color: #717171;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-languages-list {
    font-size: 0.875rem;
    color: #222;
    font-weight: 400;
}

@media (max-width: 768px) {
    .contact-broker-details {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    
    .contact-broker-image {
        width: 70px;
        height: 70px;
    }
    
    .contact-broker-name {
        font-size: 1rem;
    }
}