/* --- Hero Section --- */
.page-hero {
    position: relative;
    background-image: url('../assets/view1.JPEG');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-hero h1 {
    font-size: 38px; /* Slightly larger */
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
}

.separator-center {
    width: 50px;
    height: 3px;
    background-color: var(--accent-gold);
}

/* --- Contact Main Layout --- */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* Increased gap */
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 15px;
    font-family: var(--font-main);
    color: #555;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.btn-submit {
    background-color: var(--accent-gold);
    color: white;
    border: none;
    padding: 14px 40px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: var(--hover-gold);
}

/* --- Right Column Info Styles --- */
.info-block {
    margin-bottom: 50px;
}

.info-block h2 {
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-text);
    margin-bottom: 15px;
}

.separator-left {
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
    margin-bottom: 25px;
}

.info-block p.description {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.8;
}

/* Contact Details List (Right Column Specific) */
.contact-list li {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.contact-list li:first-child {
    padding-top: 0;
}

/* Styles for the clickable links inside the list */
.contact-list a {
    display: flex;
    align-items: center;
    color: var(--light-text);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--accent-gold);
}

.contact-list li i {
    color: var(--accent-gold);
    width: 25px;
    margin-right: 15px;
    font-size: 16px;
}

/* --- Map Section --- */
.map-section {
    width: 100%;
    margin-bottom: 0; 
}

.map-section iframe {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}