/* ==========================================
   CONTACT US PAGE SPECIFIC STYLES
   ========================================== */

/* Hero Section */
.contact-hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 145px); /* Matches standard interior page hero height */
    min-height: 600px;
    overflow: hidden;
    background-color: #253038;
    color: #ffffff;
    margin-top: 145px;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .contact-hero-section {
        margin-top: 112px;
        height: calc(100vh - 112px);
        min-height: 520px;
    }
}

@media (max-width: 480px) {
    .contact-hero-section {
        margin-top: 102px;
        height: calc(100vh - 102px);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 5;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    text-align: left;
}

.contact-hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 5px;
}

.contact-hero-desc {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 10px;
}

.contact-hero-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;
}

.contact-hero-buttons .btn-cert-submit {
    flex: 0 0 auto;
    max-width: 250px;
    width: 100%;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: "Hind", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 0 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-height: none !important;
}

@media (max-width: 576px) {
    .contact-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .contact-hero-buttons .btn-cert-submit {
        max-width: 100%;
        width: 100%;
    }
}

/* Map Embed Section */
.contact-map-section {
    width: 100%;
    height: 480px;
    border: none;
    background-color: #f1f5f9;
    overflow: hidden;
    display: block;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .contact-map-section {
        height: 360px;
    }
}

/* ==========================================
   CONTACT PAGE SPECIFIC INFO PANEL STYLES
   ========================================== */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-right: 20px;
}

.info-tagline {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #F47425;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-item .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #253038;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .icon-wrapper {
    background-color: #F47425;
    transform: translateY(-2px);
}

.detail-text h3 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #253139;
    margin-bottom: 5px;
}

.detail-text p, 
.detail-text a {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #555555;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: #F47425;
}

.contact-socials {
    margin-top: 15px;
}

.contact-socials h3 {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #253139;
    margin-bottom: 15px;
}

.social-icons-row {
    display: flex;
    gap: 15px;
}

.social-icon-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(37, 48, 56, 0.2);
    color: #253038;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon-link:hover {
    background-color: #F47425;
    color: #ffffff;
    border-color: #F47425;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-info-panel {
        padding-right: 0;
        gap: 25px;
        align-items: center;
        text-align: center;
    }
    
    .contact-details-list {
        align-items: center;
        width: 100%;
    }
    
    .contact-detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .contact-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10px;
    }
    
    .social-icons-row {
        justify-content: center;
    }

    .certified-teams-grid {
        gap: 40px;
    }
}
