
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-form-area {
    flex: 3; /* Form takes up more space */
    padding-right: 30px; 
}

.contact-details-area {
    flex: 1.5; /* Details take up less space */
    padding-top: 5px; /* Alignment with form heading */
}

/* --- Form Styling (Left Side) --- */
.contact-form-area h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 0.95rem;
    color: var(--charcoal);
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row input,
.form-row textarea {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--charcoal);
    background-color: var(--light-gray); 
    transition: border-color 0.3s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--charcoal); /* Placeholder color matches the text in the image */
    opacity: 0.5;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
}

.full-width-row {
    position: relative;
    margin-bottom: 30px;
}

.full-width-row textarea {
    width: 100%;
    resize: vertical;
    padding-right: 70px; /* Space for icons */
}

.textarea-icons {
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    gap: 15px;
}

.textarea-icons i {
    color: var(--medium-gray);
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s;
}

/* Match the color of the icons in the screenshot */
.textarea-icons i:hover,
.textarea-icons i {
    color: #999;
}

.send-message-btn {
    width: 200px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
}

/* --- Details and Map Styling (Right Side) --- */
.contact-details-area h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    margin-bottom: 20px; 
    border-bottom: 1px solid var(--light-gray); /* Subtle line as seen in the image */
    padding-bottom: 5px;
}

.contact-details {
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.detail-item i {
    color: var(--gold);
    margin-right: 15px;
    font-size: 1rem;
    padding-top: 3px; 
}

.detail-item span,
.detail-item a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-item a:hover {
    color: var(--gold);
}

/* Map Section */
.contact-map h3 {
    margin-top: 30px; 
    margin-bottom: 10px;
}

.contact-map .view-larger {
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.contact-map .view-larger a {
    color: #4285F4; /* Typical Google blue link color for "View larger map" */
    text-decoration: none;
    transition: color 0.3s;
}

.contact-map .view-larger a:hover {
    text-decoration: underline;
}

/* Locate and DELETE this block from css/contact.css */
/* Add this style to target the live iframe for borders/styling */
.contact-map iframe {
    width: 100%;
    height: 350px; /* Standard map height */
    border: 1px solid var(--medium-gray); /* Add the border shown in your screenshot */
    border-radius: 4px;
    display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .contact-form-area {
        flex: 1;
        width: 100%;
        padding-right: 0;
    }

    .contact-details-area {
        flex: 1;
        width: 100%;
        padding-top: 0;
    }

    .send-message-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-form-area h2 {
        font-size: 2rem;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .form-row input:not(:last-child),
    .form-row input:last-child {
        margin-bottom: 20px;
    }
    .full-width-row textarea {
        margin-bottom: 0;
    }
}


.success-message {
    color: #2e7d32;
    font-weight: 600;
    margin-top: 15px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .hidden {
    display: none;
  }
  