/* ================= CONTACT HERO ================= */
.contact-header-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: #d5e7f9;
}

/* SOFT GLOW */
.contact-header-hero::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: -20%;
    right: -20%;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent 60%);
    filter: blur(80px);
}

/* CONTENT */
.contact-header-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

/* BREADCRUMB */
.contact-header-breadcrumb {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #64748b;
}

.contact-header-breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.contact-header-breadcrumb .active {
    color: #0f172a;
}

/* ================= DEFAULT STATE ================= */
.contact-header-title,
.contact-header-text,
.contact-header-btns {
    opacity: 1;
    transform: translateY(0);
}

/* ================= ANIMATION INIT ================= */
.contact-header-hero.animate-init .contact-header-title,
.contact-header-hero.animate-init .contact-header-text,
.contact-header-hero.animate-init .contact-header-btns {
    opacity: 0;
    transform: translateY(40px);
}

/* ================= ACTIVE ================= */
.contact-header-hero.active .contact-header-title,
.contact-header-hero.active .contact-header-text,
.contact-header-hero.active .contact-header-btns {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease;
}

.contact-header-hero.active .contact-header-text {
    transition-delay: 0.2s;
}

.contact-header-hero.active .contact-header-btns {
    transition-delay: 0.4s;
}

/* HEADING */
.contact-header-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #0f172a;
}

.contact-header-title span {
    display: block;
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* TEXT */
.contact-header-text {
    font-size: 18px;
    color: #475569;
    margin-bottom: 30px;
}

/* BUTTON GROUP */
.contact-header-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* PRIMARY BUTTON */
.contact-btn-primary {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

.contact-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}

/* SECONDARY BUTTON */
.contact-btn-secondary {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.contact-btn-secondary:hover {
    background: #2563eb;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-header-title {
        font-size: 40px;
    }

    .contact-header-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .contact-header-title {
        font-size: 30px;
    }

    .contact-header-btns {
        flex-direction: column;
    }

    .contact-btn-primary,
    .contact-btn-secondary {
        width: 100%;
    }
}
/* ================= CONTACT INFO (THEME FIXED) ================= */
.contact-info-section {
    padding: 80px 0;
    background: #f8fafc; /* light clean bg */
}

/* BOX */
.contact-box {
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;

    background: #ffffff;
    border: 1px solid #e2e8f0;

    box-shadow: 0 10px 25px rgba(0,0,0,0.04);

    transition: all 0.4s ease;

    opacity: 0;
    transform: translateY(40px);
}

/* ICON */
.contact-box .icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;

    background: rgba(37,99,235,0.1); /* blue light */
    color: #2563eb;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    font-size: 22px;

    transition: 0.4s;

    box-shadow: 0 8px 20px rgba(37,99,235,0.15);
}

/* TITLE */
.contact-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

/* MAIN TEXT */
.contact-box .main {
    font-size: 16px;
    color: #334155;
    margin-bottom: 5px;
    font-weight: 500;
}

/* SUB TEXT */
.contact-box span {
    font-size: 13px;
    color: #64748b;
}

/* HOVER EFFECT */
.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: #2563eb;
}

/* ICON HOVER */
.contact-box:hover .icon {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    transform: scale(1.1);
}

/* ACTIVE ANIMATION */
.contact-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .contact-box {
        padding: 25px 15px;
    }

    .contact-box h4 {
        font-size: 16px;
    }

    .contact-box .main {
        font-size: 14px;
    }
}

/* ================= CONTACT FORM (THEME FIXED) ================= */
.contact-form-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    /* BACKGROUND IMAGE */
    background: url('../images/my-approch-bg-img.webp') no-repeat center/cover;
}

/* OVERLAY */
.contact-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
}

/* CONTENT ABOVE */
.contact-form-section .container {
    position: relative;
    z-index: 2;
}

/* ================= HEADER ================= */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header .badge {
    display: inline-block;
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0f172a;
}

/* ================= ANIMATION ================= */
.contact-form-box,
.map-box {
    opacity: 0;
    transform: translateY(40px);
}

/* ACTIVE */
.contact-form-section.contact-show .contact-form-box {
    opacity: 1;
    transform: translateY(0);
    transition: 0.8s ease;
}

.contact-form-section.contact-show .map-box {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease;
}

/* ================= FORM BOX ================= */
.contact-form-box {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);

    padding: 35px;
    border-radius: 20px;

    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* INPUTS */
.contact-form-box label {
    font-size: 14px;
    color: #334155;
    margin-bottom: 5px;
    display: block;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    outline: none;
    background: #f8fafc;

    transition: 0.3s;
}

/* FOCUS */
.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,0.15);
    background: #fff;
}

/* BUTTON */
.contact-btn {
    margin-top: 20px;
    width: 100%;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    padding: 14px;
    border: none;
    border-radius: 30px;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;

    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}

/* RESPONSE TEXT */
.response-text {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

/* ================= MAP ================= */
.map-box {
    height: 520px;
    border-radius: 20px;
    overflow: hidden;

    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .contact-header h2 {
        font-size: 30px;
    }

    .map-box {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-form-box {
        padding: 25px;
    }
}
/* ================= WHY CONTACT (THEME FIXED) ================= */
.why-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative;
    overflow: hidden;
}

/* SOFT BLUE GLOW */
.why-contact-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.25), transparent);
    top: -120px;
    right: -120px;
}

/* HEADER */
.why-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-badge {
    display: inline-block;
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    font-weight: 600;
}

.why-contact-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

/* ================= ANIMATION ================= */
.why-card {
    opacity: 1;
    transform: translateY(0);
}

.why-contact-section.animate-init .why-card {
    opacity: 0;
    transform: translateY(40px);
}

.why-contact-section.active .why-card {
    opacity: 1;
    transform: translateY(0);
    transition: 0.6s ease;
}

/* STAGGER */
.why-contact-section.active .why-card:nth-child(1) { transition-delay: 0.1s; }
.why-contact-section.active .why-card:nth-child(2) { transition-delay: 0.2s; }
.why-contact-section.active .why-card:nth-child(3) { transition-delay: 0.3s; }
.why-contact-section.active .why-card:nth-child(4) { transition-delay: 0.4s; }

/* ================= CARD ================= */
.why-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 35px 25px;
    border-radius: 18px;
    text-align: center;

    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
    height: 100%;
}

/* ICON */
.why-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;
    font-size: 22px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* TITLE */
.why-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* HOVER */
.why-card:hover {
    transform: translateY(-10px);
    border-color: #2563eb;
    box-shadow: 0 20px 50px rgba(37,99,235,0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .why-contact-header h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .why-contact-header h2 {
        font-size: 24px;
    }
}
/* ================= PROCESS SECTION (THEME FIXED) ================= */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* HEADER */
.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-badge {
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
}

/* ================= CARD ================= */
.process-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;

    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);

    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease;
}

/* LIST */
.process-card ul {
    list-style: none;
    padding: 0;
}

.process-card li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-size: 15px;
    color: #334155;
}

/* NUMBER */
.process-card li span {
    min-width: 32px;
    height: 32px;

    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 600;

    box-shadow: 0 8px 20px rgba(37,99,235,0.2);
}

/* NOTE */
.note-text {
    margin-top: 15px;
    font-size: 14px;
    color: #64748b;
}

/* ================= QUICK NOTE ================= */
.quick-note-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;

    border-left: 4px solid #2563eb;

    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);

    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.quick-note-card h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0f172a;
}

.quick-note-card p {
    font-size: 14px;
    color: #64748b;
}

.quick-note-card .highlight {
    margin-top: 10px;
    color: #2563eb;
    font-weight: 600;
}

/* ================= DIVIDER ================= */
.process-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 70px 0;
}

/* ================= SOLO ================= */
.solo-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0f172a;
}

/* LIST */
.solo-list {
    list-style: none;
    padding-left: 0;
}

.solo-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #334155;
    position: relative;
    padding-left: 22px;
}

.solo-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 12px;
}

/* BOX */
.solo-box {
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    padding: 25px;
    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(37,99,235,0.2);
}

/* ================= ANIMATION ================= */
.process-section.show .process-card,
.process-section.show .quick-note-card {
    opacity: 1;
    transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .process-header h2 {
        font-size: 30px;
    }

    .solo-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .process-header h2 {
        font-size: 24px;
    }
}
/* ================= PREMIUM FAQ ================= */
.faq-premium-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative;
    overflow: hidden;
}

/* GLOW */
.faq-premium-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent);
    top: -150px;
    left: -150px;
}

/* HEADER */
.faq-premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-premium-badge {
    background: rgba(37,99,235,0.1);
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-premium-header h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
}

.faq-premium-header h2 span {
    color: #14B8A6;
}

.faq-premium-header p {
    color: #94a3b8;
}

/* ================= SIDE CARD ================= */
.faq-side-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.faq-side-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.faq-side-card p {
    color: #94a3b8;
    font-size: 14px;
}

.faq-contact-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #2563eb, #14B8A6);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* ================= FAQ LIST ================= */
.faq-premium-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faq-item {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;

    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* ICON */
.faq-question i {
    color: #2563eb;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #cbd5f5;
    font-size: 14px;
}

/* ACTIVE */
.faq-item.active {
    border-color: rgba(37,99,235,0.4);
    box-shadow: 0 10px 30px rgba(37,99,235,0.15);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active i {
    transform: rotate(45deg);
    color: #14B8A6;
}

/* HOVER */
.faq-item:hover {
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .faq-premium-header h2 {
        font-size: 30px;
    }
}