/* =========================================
   CONTACT PAGE STYLES
   ========================================= */


/* --- Contact Hero --- */
.contactHero {
    text-align: center;
    padding: clamp(60px, 8vw, 100px) var(--padding-sides) clamp(40px, 5vw, 60px);
}

.contactHero .main-header {
    font-family: var(--font-Header);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #606060;
    margin-bottom: 1rem;
}

.contactHero .subheading {
    font-size: clamp(16px, 1.2vw, 20px);
    color: #8a8a8a;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 1rem;
    text-align: center;
}

/* --- Contact Cards Grid --- */
.contactGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 var(--padding-sides) clamp(60px, 8vw, 100px);
}

.contactCard {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.contactCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.contactCard .cardIcon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #F58123 0%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactCard .cardIcon .material-symbols-outlined {
    font-size: 36px;
    color: white;
}

.contactCard h2 {
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.contactCard .cardContent {
    margin-bottom: 1.5rem;
}

.contactCard .cardContent p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0.5rem;
}

.contactCard .cardContent .note {
    font-size: 12px;
    color: #999;
    font-style: italic;
}
.contactCard{

}
.contactLink {
    color: var(--color-primary, #F58123);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(14px, 1vw, 16px);
    display: block;
    margin: 0.5rem 0;
}

.contactLink:hover {
    color: var(--color-secondary, #74B444);
}

.contactCard .cardLink {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contactCard .cardLink:hover {
    color: var(--color-secondary);
    gap: 0.8rem;
}

/* Social Links */
.socialLinks {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.socialIcon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socialIcon .material-symbols-outlined {
    font-size: 20px;
    color: #606060;
}

.socialIcon:hover {
    background: var(--color-primary);
}

.socialIcon:hover .material-symbols-outlined {
    color: white;
}

/* --- Contact Form Section --- */
.contactFormSection {
    background: white;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: stretch;
    gap: 2rem;
    max-width: 1600px;
    margin-bottom: 100px;
}

.formContainer {
    width: 60%;
    padding: 3rem var(--padding-sides);
    background-color: #f4f4f4;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
}

.formHeader {
    text-align: left;
    margin-bottom: 3rem;
}

.formHeader .main-header {
    font-family: var(--font-Header);
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 400;
    color: #606060;
    margin-bottom: 0;
    height: 50px;
}

.formHeader p {
    font-size: clamp(14px, 1vw, 16px);
    color: #8a8a8a;
    font-weight: 300;
}

.contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.formRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.formGroup {
    display: flex;
    flex-direction: column;
}

.formGroup label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(245, 129, 35, 0.1);
}

.formGroup textarea {
    resize: vertical;
    min-height: 120px;
}

.submitBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--color-secondary, #74B444);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submitBtn:hover {
    background: #5d9237;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(116, 180, 68, 0.3);
}

.submitBtn .material-symbols-outlined {
    font-size: 20px;
}

/* --- Map Section --- */
.mapSection {
    padding: 0;
    margin: 0;
}

.mapContainer {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.mapContainer iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Quick Links Section --- */
.quickLinksSection {
    text-align: left;
    height: 100%;
}

.quickLinksSection .main-header {
    font-family: var(--font-Header);
    font-size: clamp(18px, 1.8vw, 20px);
    font-weight: 400;
    text-align: center;
    color: #606060;
    /* margin-top: 50px; */
}

.quickLinksGrid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.quickLinkCard {
    background: white;
    padding: 2rem 1.5rem;
    height: calc(33% - 2rem);
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quickLinkCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

.quickLinkCard .material-symbols-outlined {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.quickLinkCard h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.quickLinkCard p {
    font-size: 14px;
    color: #666;
    font-weight: 300;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .contactGrid {
        grid-template-columns: 1fr;
    }
    .contactFormSection{
        flex-direction: column;
    }
    .formContainer{
        width: 100%;
    }
    .formRow {
        grid-template-columns: 1fr;
    }
    
    .submitBtn {
        width: 100%;
    }
    
    .quickLinksGrid {
        grid-template-columns: 1fr;
    }
}