/* ===== CONTACT HERO BANNER ===== */
.contact-hero {
    position: relative;
    height: 55vh;
    min-height: 400px;
    max-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.contact-breadcrumb a {
    color: #fff;
    transition: color 0.3s;
}

.contact-breadcrumb a:hover {
    color: #f7921e;
}

.breadcrumb-sep {
    color: #f7921e;
    font-size: 11px;
}

.contact-breadcrumb span:last-child {
    color: #f7921e;
    font-weight: 600;
}

/* ===== CONTACT MAIN SECTION ===== */
.contact-main-section {
    padding: 100px 0 80px;
    background: #f5f5f0;
}

.contact-main-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* --- Contact Form Area --- */
.contact-form-area {
    padding-right: 20px;
}

.contact-form-pin {
    margin-bottom: 10px;
}

.contact-form-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.contact-form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-form-title .highlight-text {
    color: #f7921e;
}

.contact-form-desc {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #f7921e;
    box-shadow: 0 0 0 3px rgba(247, 146, 30, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    color: #333;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f7921e;
    color: #fff;
    padding: 16px 45px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-color: #f7921e;
}

.btn-contact-submit:hover {
    background-color: #e07d0a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 146, 30, 0.4);
}

.btn-contact-submit i {
    font-size: 14px;
    transition: transform 0.3s;
}

.btn-contact-submit:hover i {
    transform: translateX(3px);
}

/* --- Form Status Message --- */
.form-status {
    margin-top: 15px;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.form-status.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-status.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.form-status.loading {
    background: rgba(247, 146, 30, 0.1);
    color: #f7921e;
    border: 1px solid rgba(247, 146, 30, 0.2);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* --- Reach Us Area --- */
.contact-reach-area {
    background: #fff;
    border-radius: 16px;
    padding: 45px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.reach-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #111;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.reach-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f7921e;
    border-radius: 2px;
}

.reach-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 35px;
}

.reach-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s;
}

.reach-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.reach-card:hover {
    transform: translateX(5px);
}

.reach-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgba(247, 146, 30, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.reach-card:hover .reach-card-icon {
    background: #f7921e;
}

.reach-card-icon i {
    font-size: 20px;
    color: #f7921e;
    transition: color 0.3s;
}

.reach-card:hover .reach-card-icon i {
    color: #fff;
}

.reach-card-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.reach-card-content h4 a {
    color: #222;
    transition: color 0.3s;
}

.reach-card-content h4 a:hover {
    color: #f7921e;
}

.reach-card-content p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* Social links */
.reach-social h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.reach-social-links {
    display: flex;
    gap: 10px;
}

.reach-social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 15px;
    transition: all 0.3s;
    border-radius: 50%;
}

.reach-social-links a:hover {
    background: #f7921e;
    border-color: #f7921e;
    color: #fff;
    transform: translateY(-3px);
}

/* ===== GOOGLE MAP SECTION ===== */
.contact-map-section {
    background: #f0efe8;
}

.contact-map-header {
    padding: 60px 0 40px;
    text-align: center;
}

.contact-map-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.contact-map-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.contact-map-wrapper {
    width: 100%;
    line-height: 0;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    filter: grayscale(20%) contrast(1.05);
}

/* ===== OFFICE LOCATIONS ===== */
.contact-offices-section {
    padding: 80px 0;
    background: #f5f5f0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.office-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.office-card-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.office-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.office-card:hover .office-card-icon img {
    transform: scale(1.08);
}

.office-card-content {
    padding: 28px 25px;
}

.office-card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.office-badge {
    display: inline-block;
    background: #f7921e;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.office-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.office-card-content p:last-child {
    margin-bottom: 0;
}

.office-card-content p i {
    color: #f7921e;
    font-size: 14px;
    margin-top: 3px;
    min-width: 16px;
}

.office-card-content p a {
    color: #666;
    transition: color 0.3s;
}

.office-card-content p a:hover {
    color: #f7921e;
}

/* ===== FAQ SECTION ===== */
.contact-faq-section {
    padding: 80px 0 100px;
    background: #f0efe8;
    position: relative;
    overflow: hidden;
}

.contact-faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://advenx.wpengine.com/wp-content/uploads/2023/03/map-bg.png') center/contain no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.contact-faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-faq-pin {
    margin-bottom: 10px;
}

.contact-faq-cursive {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    font-style: italic;
}

.contact-faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
}

.faq-grid {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(247, 146, 30, 0.12);
    border-color: rgba(247, 146, 30, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    text-align: left;
    gap: 15px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #f7921e;
}

.faq-item.active .faq-question {
    color: #f7921e;
}

.faq-question i {
    font-size: 14px;
    color: #f7921e;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.faq-answer p {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    font-family: 'Open Sans', sans-serif;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-main-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-area {
        padding-right: 0;
    }

    .contact-form-title {
        font-size: 36px;
    }

    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-map-title {
        font-size: 36px;
    }

    .contact-faq-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .contact-hero {
        height: 45vh;
        min-height: 320px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-form-title {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-reach-area {
        padding: 30px 25px;
    }

    .reach-title {
        font-size: 26px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper iframe {
        height: 350px;
    }

    .contact-faq-title {
        font-size: 30px;
    }

    .faq-question {
        font-size: 14px;
        padding: 18px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .contact-form-title {
        font-size: 26px;
    }

    .contact-map-title {
        font-size: 28px;
    }

    .contact-faq-title {
        font-size: 28px;
    }

    .office-card-icon {
        height: 160px;
    }
}