/* ============================================================
   Contact Page Styles
   Theme: Industrial Minimalist (Superior Construction Inspired)
   ============================================================ */

/* 1. HERO BANNER */
.contact-hero {
    padding: 30px 0;
    background: var(--white-primary);
}

@media (min-width: 900px) {
    .contact-hero {
        padding: 50px 0;
    }
}

.contact-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 900px) {
    .contact-hero-inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
}

.contact-hero-inner .hero-content {
    flex: 1.2;
}





.contact-hero-inner .hero-image {
    flex: 1;
    position: relative;
    width: 100%;
}

.contact-hero-inner .hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.contact-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white-primary);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    font-family: var(--fontH);
}

.contact-badge .badge-num {
    font-size: 1.4em;
    font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
    .contact-badge .badge-num {
        font-size: 1.8em;
    }
}

.contact-badge .badge-text {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}



/* 2. CONTACT SECTION GRID */
.contact-section {
    padding: 30px 0;
    background: var(--bg-section-light);
}

@media (min-width: 900px) {
    .contact-section {
        padding: 50px 0;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

/* 3. CONTACT DETAILS (LEFT) */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}





.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 15px;
}

@media (min-width: 600px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-card {
    background: var(--white-primary);
    padding: 30px 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow: none;
    /* No drop shadows */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-4px);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 1.2em;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .info-icon {
        font-size: 1.5em;
    }
}

.info-title {
    font-family: var(--fontH);
    font-size: 1em;
    font-weight: var(--font-weight-bold);
    color: var(--black-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .info-title {
        font-size: 1.1em;
    }
}

.info-text {
    font-size: 16px;
    color: var(--black-secondary);
    line-height: 1.6;
}

.info-link {
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    word-break: break-all;
}

@media (min-width: 768px) {
    .info-text {
        font-size: 15px;
    }
    .info-link {
        font-size: 15px;
    }
}

.info-link:hover {
    color: var(--bg-dark);
}

/* 4. CONTACT FORM (RIGHT) */
.contact-form-wrapper {
    background: var(--white-primary);
    padding: 40px;
    border-radius: 0;
    border-top: 4px solid var(--primary-color);
    box-shadow: none;
    /* No drop shadows */
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 20px;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: var(--white-primary);
    border: 1px solid #b3b3b3;
    border-radius: 0;
    font-family: var(--fontH);
    font-size: 16px;
    color: var(--black-primary);
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-shadow: none;
}

@media (min-width: 768px) {
    .form-control {
        font-size: 14px;
    }
}

.form-control::placeholder {
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1px;
}

.form-control:focus {
    background: var(--white-primary);
    border-color: var(--primary-color);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form-wrapper .btn {
    width: 100%;
}

.contact-form-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black-primary);
}

@media (min-width: 768px) {
    .contact-form-title {
        font-size: 20px;
    }
}
