.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
/* PROFESSIONAL HERO DESIGN */
.contact-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect for premium feel */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 180px 20px 100px;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    /* Gradient overlay: Darker at top for header visibility, balanced for contrast */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.hero-content p {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
    color: #f4a940;
    border-bottom-color: #f4a940;
}

.breadcrumb span {
    margin: 0 15px;
    opacity: 0.5;
}

/* CONTACT INFO */
.contact-info {
    padding: 80px 0;
    text-align: center;
}

.section-title span {
    color: #5d6d3c;
    font-weight: 600;
}

.section-title h2 {
    font-size: 36px;
    margin: 15px 0;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.info-boxes {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-8px);
}

.info-card .icon {
    background: #5d6d3c;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 22px;
}

/* FORM SECTION */
.contact-form-section {
    background: #5d6d3c;
    padding: 80px 0;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.form-left {
    flex: 1;
    color: #fff;
}

.form-left span {
    color: #ffd54f;
}

.form-left h2 {
    font-size: 36px;
    margin: 15px 0 30px;
}

form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

form input,
form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 30px;
    border: none;
    outline: none;
}

form textarea {
    border-radius: 20px;
    height: 120px;
    resize: none;
}

form button {
    margin-top: 20px;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    background: #ffd54f;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

form button:hover {
    background: #ffc107;
}

.form-right {
    flex: 1;
}

.form-right img {
    width: 100%;
    border-radius: 20px;
}

/* MAP */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* RESPONSIVE */
@media(max-width:992px) {
    .form-container {
        flex-direction: column;
    }

    .form-right {
        display: none;
        /* Hide illustrative image on mobile to save space */
    }
}

@media(max-width:768px) {
    .contact-hero {
        min-height: 50vh;
        padding: 120px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    form .row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .form-left h2 {
        font-size: 1.8rem;
    }
}













/* LOCATION SECTION */
.location-section {
    padding: 80px 0;
    background: #f8f6f2;
}

.property-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-8px);
}

.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-info {
    padding: 20px;
}

.property-info h4 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.property-info p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* LIST + MAP */
.location-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 30px;
}

.location-list {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.location-list input {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.location-item {
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.location-item:hover {
    background: #f3f3f3;
}

.location-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: none;
}

/* RESPONSIVE */
@media(max-width: 991px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
}



.location-item {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.location-item:hover {
    background: #f5f5f5;
}

.location-item.active {
    background: #5d6d3c;
    color: #fff;
}

.location-item.active p {
    color: #ddd;
}

.location-map iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 10px;
}