/* ========== Contact Page Template Style ========== */

.page-contact {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.8;
}

.page-contact .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Section 1: Hero ========== */
.contact-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-hero .elementor-container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.contact-hero .hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero .breadcrumbs {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

/* ========== Section 2: Body Layout ========== */
.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-column {
    flex: 0 0 65%;
}

.contact-info-column {
    flex: 1;
}

.column-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #272626;
}

.form-subtext {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Inquiry Form */
.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.inquiry-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"],
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    border-color: #f3821a;
    outline: none;
    background-color: #fff;
}

/* Checkboxes */
.product-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.check-container {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

.check-container:hover input~.checkmark {
    background-color: #ccc;
}

.check-container input:checked~.checkmark {
    background-color: #f3821a;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked~.checkmark:after {
    display: block;
}

.check-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.submit-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f3821a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(243, 130, 26, 0.3);
}

.submit-btn:hover {
    background-color: #e07316;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 130, 26, 0.5);
}

/* Info Cards */
.info-cards {
    margin-bottom: 50px;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #f3821a;
    transform: translateY(-5px);
}

.info-icon {
    flex: 0 0 40px;
    height: 40px;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #272626;
}

.info-text {
    font-size: 15px;
    color: #666;
    word-break: break-word;
}

/* Follow Us */
.follow-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #f3821a;
    color: #fff;
    transform: scale(1.1);
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .contact-hero .hero-title {
        font-size: 42px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .contact-form-column {
        width: 100%;
    }

    .contact-info-column {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .product-checkboxes {
        grid-template-columns: 1fr;
    }
}

/* ========== Section 3: Bottom CTA ========== */
.contact-bottom-cta {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-bottom-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Deep dark overlay as per request */
    z-index: 1;
}

.contact-bottom-cta .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-bottom-cta .cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #f3821a;
    /* Brand Orange */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.contact-bottom-cta .cta-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #f3821a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(243, 130, 26, 0.3);
}

.contact-bottom-cta .cta-button:hover {
    background-color: #e07316;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(243, 130, 26, 0.5);
    color: #ffffff;
}

@media (max-width: 767px) {
    .contact-bottom-cta {
        height: 300px;
    }

    .contact-bottom-cta .cta-title {
        font-size: 28px;
    }
}