/*==================================================
CONTACT HERO
==================================================*/

.contact-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(11, 30, 60, .05);
    border-radius: 50%;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/*==================================================
LEFT CONTENT
==================================================*/

.contact-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #094C80;
    margin: 20px 0;
}

.contact-content h1 span {
    color: #B87333;
}

.contact-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 30px;
}

/*==================================================
BUTTONS
==================================================*/

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/*==================================================
RIGHT IMAGE
==================================================*/

.contact-image {
    position: relative;
}

.contact-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/*==================================================
FLOATING CARD
==================================================*/

.contact-image .floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.contact-image .floating-card h3 {
    color: #0B1E3C;
    margin-bottom: 8px;
}

.contact-image .floating-card p {
    margin: 0;
    color: #6B7280;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:992px) {

    .contact-hero {
        padding: 120px 0 80px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-content {
        order: 1;
    }

    .contact-image {
        order: 2;
    }

    .contact-image img {
        height: 500px;
    }
}

@media (max-width:768px) {

    .contact-hero {
        padding: 100px 0 60px;
    }

    .contact-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .contact-image img {
        height: 380px;
    }

    .contact-image .floating-card {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width:576px) {

    .contact-content h1 {
        font-size: 2rem;
    }

    .contact-image .floating-card {
        padding: 18px;
    }

    .contact-image .floating-card h3 {
        font-size: 1.3rem;
    }
}

/*==================================================
CONTACT INFO
==================================================*/

.contact-info {
    padding: 110px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    transition: .35s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.contact-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #0B1E3C;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: .35s;
}

.contact-card:hover .icon {
    background: #B87333;
}

.contact-card h3 {
    color: #0B1E3C;
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.contact-card p {
    color: #6B7280;
    line-height: 1.8;
}

/*==================================================
CONTACT FORM
==================================================*/

.contact-form-section {
    padding: 110px 0;
    background: #f8fbff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: start;
}

.contact-form-content h2 {
    font-size: 2.6rem;
    color: #0B1E3C;
    margin: 20px 0;
    line-height: 1.25;
}

.contact-form-content p {
    color: #6B7280;
    line-height: 1.9;
}

.contact-form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #dce3eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: .3s ease;
    margin-bottom: 20px;
    background: #fff;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    border-color: #B87333;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, .12);
}

.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 180px;
}

.contact-form-wrapper button {
    width: 100%;
    justify-content: center;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .contact-hero-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-content {
        order: 2;
        max-width: 100%;
    }

    .contact-image {
        order: 1;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .contact-hero,
    .contact-info,
    .contact-form-section {
        padding: 80px 0;
    }

    .contact-content h1 {
        font-size: 2.5rem;
    }

    .contact-image img {
        height: 380px;
    }

    .floating-card {
        position: static !important;
        width: 100% !important;
        margin-top: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

}

@media(max-width:576px) {

    .contact-content h1 {
        font-size: 2rem;
    }

    .contact-form-content h2 {
        font-size: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 30px 20px;
    }

}

/*==================================================
OFFICE LOCATION
==================================================*/

.office-location {
    padding: 110px 0;
    background: #ffffff;
}

.office-location .section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.office-location .section-heading p {
    color: #6B7280;
    line-height: 1.8;
    margin-top: 18px;
}

.location-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
    align-items: stretch;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    transition: .35s ease;
}

.location-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.location-item i {
    width: 60px;
    height: 60px;
    background: #0B1E3C;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: .35s ease;
}

.location-item:hover i {
    background: #B87333;
}

.location-item h3 {
    color: #0B1E3C;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.location-item p {
    color: #6B7280;
    line-height: 1.8;
    margin: 0;
}

.map-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    min-height: 620px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/*==================================================
WHY CONNECT
==================================================*/

.why-connect {
    padding: 110px 0;
    background: #f8fbff;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.connect-card {
    background: #fff;
    padding: 45px 35px;
    text-align: center;
    border-radius: 22px;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

.connect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.connect-card i {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: #0B1E3C;
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: .35s;
}

.connect-card:hover i {
    background: #B87333;
}

.connect-card h3 {
    color: #0B1E3C;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.connect-card p {
    color: #6B7280;
    line-height: 1.9;
}

/*==================================================
FAQ
==================================================*/

.contact-faq {
    padding: 110px 0;
    background: #ffffff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    border: 1px solid #edf2f7;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    background: #fff;
    transition: .3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B1E3C;
    transition: .3s ease;
}

.faq-question:hover {
    color: #B87333;
}

.faq-question i {
    color: #B87333;
    transition: .3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #6B7280;
    line-height: 1.8;
    margin: 0;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:992px) {

    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-box {
        min-height: 450px;
    }

    .connect-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .office-location,
    .why-connect,
    .contact-faq {
        padding: 80px 0;
    }

    .location-item {
        padding: 22px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

}

@media(max-width:576px) {

    .location-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .location-item i {
        margin-bottom: 10px;
    }

    .connect-card {
        padding: 35px 25px;
    }

}

/*==================================================
CONSULTATION CTA
==================================================*/

.consultation-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #0B1E3C, #12294F);
}

.consultation-box {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.consultation-box .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

.consultation-box h2 {
    color: #fff;
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
}

.consultation-box p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto 40px;
}

.consultation-box .hero-buttons {
    justify-content: center;
}

/*==================================================
OUR PROCESS
==================================================*/

.contact-process {
    padding: 110px 0;
    background: #f8fbff;
}

.contact-process .section-heading {
    max-width: 760px;
    margin: 0 auto 60px;
}

.contact-process .section-heading p {
    color: #6B7280;
    line-height: 1.8;
    margin-top: 18px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    position: relative;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 22px;
    padding: 45px 30px;
    text-align: center;
    transition: .35s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.step-number {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #0B1E3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    transition: .35s ease;
}

.process-card:hover .step-number {
    background: #B87333;
}

.process-card h3 {
    color: #0B1E3C;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-card p {
    color: #6B7280;
    line-height: 1.8;
    margin: 0;
}

/*==================================================
FINAL CTA
==================================================*/

.contact-final-cta {
    padding: 110px 0;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: #0B1E3C;
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
}

.cta-content p {
    color: #6B7280;
    line-height: 1.9;
    max-width: 680px;
    margin: 0 auto 40px;
}

.cta-content .hero-buttons {
    justify-content: center;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:992px) {

    .consultation-box h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }

}

@media(max-width:768px) {

    .consultation-cta,
    .contact-process,
    .contact-final-cta {
        padding: 80px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .consultation-box h2,
    .cta-content h2 {
        font-size: 2.2rem;
    }

    .process-card {
        padding: 35px 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

}

@media(max-width:576px) {

    .consultation-box h2,
    .cta-content h2 {
        font-size: 1.9rem;
    }

    .consultation-box p,
    .cta-content p {
        font-size: 0.95rem;
    }

    .step-number {
        width: 65px;
        height: 65px;
        font-size: 1.2rem;
    }

    .process-card h3 {
        font-size: 1.3rem;
    }

}