/* ============================================
   CONTACT PAGE - MODERN REDESIGN
   ============================================ */

/* ---- Section Background ---- */
.contact-section.ftco-section {
    background: #f8f9fa !important;
    padding: 70px 0 80px;
}

/* ---- Contact Cards Grid ---- */
.sgn-contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .sgn-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sgn-contact-cards {
        grid-template-columns: 1fr;
    }
}

/* ---- Individual Card ---- */
.sgn-contact-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.sgn-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* ---- Card Icon ---- */
.sgn-contact-card .sgn-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(26, 77, 5, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: background 0.3s ease;
}

.sgn-contact-card:hover .sgn-card-icon {
    background: var(--brand-primary, #1a4d05);
}

.sgn-contact-card .sgn-card-icon span {
    font-size: 26px;
    color: var(--brand-primary, #1a4d05);
    transition: color 0.3s ease;
}

.sgn-contact-card:hover .sgn-card-icon span {
    color: #ffffff;
}

/* ---- Card Text ---- */
.sgn-contact-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--brand-primary, #1a4d05);
    margin-bottom: 8px;
}

.sgn-contact-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-bottom: 0;
    line-height: 1.7;
}

.sgn-contact-card p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sgn-contact-card p a:hover {
    color: var(--brand-primary, #1a4d05);
}

/* ---- Form & Map Row ---- */
.sgn-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* ---- Contact Form ---- */
.contact-form.bg-white {
    border-radius: 14px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08) !important;
    padding: 35px !important;
    border: none !important;
}

.contact-form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-dark, #1a4d05);
    margin-bottom: 25px;
}

.contact-form .form-control {
    height: 50px !important;
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea.form-control {
    height: auto !important;
    padding-top: 14px;
}

.contact-form .form-control:focus {
    background: #fff !important;
    border-color: var(--brand-primary, #1a4d05) !important;
    box-shadow: 0 0 0 3px rgba(26, 77, 5, 0.1) !important;
}

.contact-form .btn-primary {
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 36px !important;
    box-shadow: 0 6px 18px rgba(26, 77, 5, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 77, 5, 0.3);
}

/* ---- Map Container ---- */
.sgn-map-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sgn-map-wrap iframe {
    border: 0;
    min-height: 450px;
    width: 100%;
    height: 100%;
    display: block;
}

/* ---- Hero Breadcrumb Enhancement ---- */
.hero-wrap.hero-bread {
    position: relative;
    overflow: hidden;
}

.hero-wrap.hero-bread::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(26, 77, 5, 0.4) 100%);
    pointer-events: none;
}

.hero-wrap.hero-bread .bread {
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   END CONTACT PAGE STYLES
   ============================================ */