/* =========================================
   CONTACT PAGE STYLES
========================================= */

/* --- 1. Hero Section --- */
.contactHero {
    width: 100%;
    min-height: 60vh;
    /* Reduced slightly so content is visible above fold */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 300px;
    /* Account for fixed nav */
    padding-bottom: 80px;
}

.conHeroContainer {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #040053;
    background: rgba(69, 63, 255, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 600;
    border: 1px solid rgba(69, 63, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00FF9C;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(0, 255, 156, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 156, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 156, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 156, 0);
    }
}

.contactHero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #010008;
    margin-bottom: 20px;
    font-weight: 800;
}

.contactHero p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.grad-text-violet {
    background: linear-gradient(135deg, #453fff 0%, #7000FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --- 2. Direct Lines (Holographic Cards) --- */
.directLinesSection {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.dl-Container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dl-Card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.dl-Card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(69, 63, 255, 0.12);
    border-color: rgba(69, 63, 255, 0.3);
}

.dl-Icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: 0.3s;
    flex-shrink: 0;
}

.dl-Card.whatsapp .dl-Icon {
    background: #e7fcf0;
    color: #25D366;
}

.dl-Card.email .dl-Icon {
    background: #f1f3ff;
    color: #453fff;
}

.dl-Card.phone .dl-Icon {
    background: #fff0f0;
    color: #ff4d4d;
}

.dl-Info h3 {
    font-size: 1.2rem;
    color: #010008;
    margin-bottom: 4px;
    font-weight: 700;
}

.dl-Info p {
    font-size: 0.9rem;
    color: #666;
}

.dl-Arrow {
    margin-left: auto;
    color: #ccc;
    font-size: 1.2rem;
    transition: 0.3s;
}

.dl-Card:hover .dl-Arrow {
    color: #453fff;
    transform: translateX(5px) rotate(-45deg);
}

/* --- 3. Application Section --- */
.applicationSection {
    width: 100%;
    padding: 100px 0;
    background: #f8f9ff;
}

.appContainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.app-Left {
    width: 60%;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.form-Header {
    margin-bottom: 40px;
}

.form-Header h2 {
    font-size: 2.5rem;
    color: #010008;
    margin-bottom: 10px;
}

.form-Header p {
    color: #666;
    font-size: 1.1rem;
}

.form-Group {
    margin-bottom: 25px;
}

.form-Group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.form-Group input[type="text"],
.form-Group input[type="email"],
.form-Group input[type="tel"],
.form-Group select,
.form-Group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    background: #fcfcfc;
    transition: 0.3s;
    font-family: "Inter", sans-serif;
    color: #333;
}

.form-Group input:focus,
.form-Group select:focus,
.form-Group textarea:focus {
    outline: none;
    border-color: #453fff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(69, 63, 255, 0.1);
}

.form-Group input.error,
.form-Group select.error,
.form-Group textarea.error {
    border-color: #ff4d4d;
    background: #fff0f0;
}

.form-Group input.success {
    border-color: #25D366;
    background: #f0fff4;
}

.error-message {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-Group textarea {
    height: 120px;
    resize: vertical;
}

/* Service Chips */
.service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    cursor: pointer;
    user-select: none;
}

.chip input {
    display: none;
}

.chip span {
    display: inline-block;
    padding: 10px 20px;
    background: #f8f9ff;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #555;
    transition: 0.3s;
    font-weight: 500;
}

.chip:hover span {
    background: #eee;
}

.chip input:checked+span {
    background: #040053;
    color: #fff;
    border-color: #040053;
    box-shadow: 0 5px 15px rgba(4, 0, 83, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #040053, #453fff);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(69, 63, 255, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.app-Right {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
}

/* Video Card */
.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vid-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vid-overlay span {
    font-weight: 600;
    color: #010008;
    font-size: 0.95rem;
}

.play-icon {
    width: 36px;
    height: 36px;
    background: #040053;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Timeline */
.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #010008;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 50px;
    bottom: -20px;
    width: 2px;
    background: #eee;
}

.step-num {
    width: 42px;
    height: 42px;
    background: #fff;
    border: 2px solid #453fff;
    color: #453fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #010008;
}

.step-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- 4. Location Section --- */
.locationSection {
    width: 100%;
    padding: 0 0 100px 0;
    background: #f8f9ff;
}

.locContainer {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.loc-card {
    position: absolute;
    top: 40px;
    left: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
    max-width: 350px;
    align-items: flex-start;
}

.loc-icon {
    width: 50px;
    height: 50px;
    background: #f1f3ff;
    color: #453fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.loc-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #010008;
}

.loc-details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.loc-details a {
    font-size: 0.9rem;
    color: #453fff;
    font-weight: 600;
    text-decoration: underline;
}

/* --- 5. Pre-Consultation FAQ (Modern) --- */
.faq-Section-Modern {
    padding: 100px 0;
    background: #fcfcfc;
    position: relative;
}

.faq-Container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-Header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-Header h3 {
    font-size: 2rem;
    color: #010008;
    margin-bottom: 10px;
}

.faq-Header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-Grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-Card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-Card.active {
    border-color: #453fff;
    box-shadow: 0 10px 30px rgba(69, 63, 255, 0.05);
}

.faq-Head {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #010008;
    font-size: 1.1rem;
}

.faq-Head i {
    color: #453fff;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-Card.active .faq-Head i {
    transform: rotate(45deg);
}

.faq-Body {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
}

.faq-Body p {
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* --- 6. Custom SweetAlert --- */
.swal-popup-custom {
    border-radius: 20px !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
}

.swal-title-custom {
    font-family: "Host Grotesk", sans-serif !important;
    color: #010008 !important;
    font-size: 1.8rem !important;
}

.swal-text-custom {
    color: #555 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .appContainer {
        flex-direction: column;
    }

    .app-Left,
    .app-Right {
        width: 100%;
    }

    .app-Right {
        position: static;
    }

    .dl-Container {
        grid-template-columns: 1fr;
    }

    .app-Right {
        margin-top: 40px;
    }

    .video-card {
        height: 400px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .dl-Container {
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .conHeroContainer{
        margin-top: 150px;
    }

    .contactHero {
        min-height: auto;
        padding-top: 180px !important;
        padding-bottom: 60px;
    }

    .contactHero h1 {
        font-size: 2.8rem;
    }

    .applicationSection {
        padding: 60px 0;
    }

    .app-Left {
        padding: 30px 20px;
    }

    .locationSection {
        padding-bottom: 60px;
    }

    .loc-card {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin: 20px;
    }

    .map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        background: #fff;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .dl-Card {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .dl-Arrow {
        margin: 0;
        transform: rotate(90deg);
    }

    .dl-Card:hover .dl-Arrow {
        transform: rotate(90deg) translateY(5px);
    }

    .faq-Header h3 {
        font-size: 1.8rem;
    }
}