/* Contact Page Styles */

.page-hero-contact {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%), url('../assets/images/contact-hero.png');
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* Contact Information Column */
.info-card-row {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-card-row:hover .info-icon {
    background: var(--primary-gold);
    color: #fff;
    transform: rotateY(360deg);
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-details p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 5px;
}

.secondary-addr {
    margin-top: 10px;
    font-size: 0.95rem;
}

/* Contact Form Column */
.premium-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.premium-form h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--bg-cream);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group textarea {
    resize: none;
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 15px;
    color: #999;
    pointer-events: none;
    transition: 0.3s ease all;
}

/* Floating Label Logic using Placeholder */
.form-group input:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:focus,
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--primary-gold);
    background: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:focus+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: #fff;
    padding: 0 8px;
    color: var(--primary-gold);
    font-weight: 600;
}

.w-100 {
    width: 100%;
}

/* Map Section */
.map-section {
    padding-top: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    background: #eee;
    /* Placeholder color */
    border-radius: 0;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

.mb-40 {
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .premium-form {
        padding: 30px;
    }
}