/* --- Modern Contact Hero Section --- */
.contact-hero-modern {
    position: relative;
    height: 90vh;
    background-image: url(../image/contact-us.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-text .subtitle {
    display: block;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-hero-text .title {
    color: var(--color-primary);
    font-size: 6.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin: 0 0 15px;
    line-height: 1.1;
}

.contact-hero-text .divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-gold);
    margin-bottom: 25px;
}

.contact-hero-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.hero-bottom-wave {
    position: absolute;
    bottom: -5px; /* prevent 1px gap */
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}

.hero-bottom-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@media (max-width: 991px) {
    .hero-gradient-overlay {
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.5) 100%);
    }
}

@media (max-width: 768px) {
    .contact-hero-modern {
        height: auto;
        padding: 15pc 0 120px; /* space for wave */
    }
    .hero-gradient-overlay {
        background: rgba(255, 255, 255, 0.85); /* Solid overlay on mobile for readability */
    }
    .contact-hero-text .title {
        font-size: 3rem;
    }
}

/* --- Nature Contact Section --- */
.contact-nature-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: var(--font-body);
}

.contact-nature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.nature-card {
    position: relative;
    padding: 30px 30px 10px;
    border-radius: 20px;
    border: 1px dashed rgba(0,0,0,0.1);
}

.nature-card.light-card {
    background-color: #f4efdc;
    color: #333;
    border-color: #d1ccb9;
}

.nature-card.dark-card {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.nature-card .card-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nature-card .card-icon.green-icon {
    background-color: var(--color-primary);
    color: #fff;
}

.nature-card .card-icon.light-icon {
    background-color: #f4efdc;
    color: var(--color-primary);
}

.nature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.nature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0px;
    opacity: 0.8;
}

.nature-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.nature-card.light-card .learn-more {
    color: var(--color-primary);
}

.nature-card.dark-card .learn-more {
    color: var(--color-white);
}

.nature-card .learn-more:hover {
    opacity: 0.7;
}

/* Bottom Content Grid */
.contact-nature-bottom {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Left Content */
.nature-heading {
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.nature-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.working-time-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.working-time-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    color: #444;
    font-size: 0.95rem;
}

.working-time-list li i {
    color: var(--color-primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.working-time-list li i.fa-xmark {
    color: var(--color-primary);
}

.nature-map-wrapper {
    height: 250px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nature-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Right Content Form */
.form-header-badge {
    display: inline-block;
    padding: 5px 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.nature-main-heading {
    color: var(--color-primary);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.nature-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.nature-form-group {
    margin-bottom: 25px;
}

.nature-form-group label {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.nature-form-group input,
.nature-form-group textarea {
    width: 100%;
    background-color: #f4efdc;
    border: 1px dashed #d1ccb9;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: 0.3s;
}

.nature-form-group input:focus,
.nature-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.nature-form-group textarea {
    height: 150px;
    resize: vertical;
}

.nature-submit-btn {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.nature-submit-btn:hover {
    background-color: var(--color-primary);
}

@media(max-width: 991px) {

    .contact-nature-bottom {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 768px) {

    .contact-nature-bottom {
        grid-template-columns: 1fr;
    }
}
@media(max-width: 568px) {
    .contact-nature-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-nature-bottom {
        grid-template-columns: 1fr;
    }
}

