/* =============================================
   LKRA Capital â€” Contact Page Styles (Premium Redesign)
   Theme: Light + Blue, Poppins only
   ============================================= */

:root {
    --bg-light: #F8FAFF;
    --form-bg: #FFFFFF;
    --input-border: rgba(30, 95, 216, 0.1);
    --input-focus: var(--blue-main);
    --toast-success: #10B981;
    --toast-error: #EF4444;
}

body {
    background-color: var(--white);
    font-family: var(--font);
}

.contact-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}

/* --- Hero Section --- */
.contact-hero {
    position: relative;
    padding: 220px 0 140px;
    background: var(--blue-deep);
    overflow: hidden;
    text-align: center;
}

.contact-hero .hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    /* Subtler background */
}

.contact-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(6, 13, 24, 0.4) 0%,
            rgba(6, 13, 24, 0.2) 100%);
}

.contact-hero .contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* Increased to accommodate one-line title */
}



.contact-hero .hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.contact-hero .hero-title strong {
    font-weight: 500;
    color: var(--blue-light);
}

.contact-hero .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 650px;
    margin: 32px auto 0;
    line-height: 1.8;
    font-weight: 300;
}

.hero-trust-tagline {
    font-size: 0.85rem;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    margin-top: 16px;
    opacity: 0.9;
}

/* --- Contact Grid --- */
.contact-grid-section {
    padding: 100px 0;
    background: var(--off-white);
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form Card (White) */
.contact-form-card {
    background: var(--white);
    padding: 64px;
    border-radius: 16px;
    /* Sharper institutional radius */
    box-shadow: 0 12px 64px rgba(6, 13, 24, 0.05);
    /* Deeper, subtler shadow */
    border: 1px solid rgba(30, 95, 216, 0.08);
    /* Subtle inner border */
}

.form-header {
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    /* Heavier label */
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 24px;
    /* Slightly taller */
    border-radius: 8px;
    /* Sharper inputs */
    border: 1px solid rgba(30, 95, 216, 0.12);
    font-family: var(--font);
    font-size: 0.98rem;
    color: var(--text-dark);
    background: var(--blue-pale);
    transition: all 0.3s var(--ease);
    width: 100%;
}

.form-group select {
    padding-right: 48px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23060d18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(6, 13, 24, 0.25);
    /* Subtler contrast */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-main);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(30, 95, 216, 0.08);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    border: 2px solid var(--input-border);
    border-radius: 6px;
    cursor: pointer;
    accent-color: var(--blue-main);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 300;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    /* Heavier button */
    background: var(--blue-main);
    color: var(--white);
    border: none;
    border-radius: 100px !important;
    /* Ensure pill site-wide requirement */
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(30, 95, 216, 0.2);
}

.btn-submit:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 95, 216, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
}

/* Info Card (Dark) */
.contact-info-card {
    background: var(--blue-deep);
    color: var(--white);
    padding: 64px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.info-header {
    margin-bottom: 56px;
    position: relative;
}

.info-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
}

.info-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
    /* Increased spacing between items */
    position: relative;
}

.info-item {
    display: flex;
    gap: 24px;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.info-item:hover .info-icon {
    background: var(--blue-main);
    color: var(--white);
    border-color: var(--blue-main);
    transform: scale(1.05);
}

.info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
    font-weight: 500;
}

.info-value {
    font-size: 16px;
    color: var(--white);
    font-weight: 300;
    transition: color 0.3s;
    line-height: 1.6;
}

.info-value--large {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue-light);
}

.info-item:hover .info-value {
    color: var(--blue-light);
}

.info-footer {
    margin-top: auto;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.info-note {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.info-note i {
    color: var(--blue-light);
}

/* --- FAQ Section --- */
.faq-section {
    padding: 120px 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 140px;
}

.faq-header .section-label {
    margin-left: auto;
    margin-right: auto;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-header h2 strong {
    font-weight: 500;
    color: var(--blue-main);
}

.faq-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--off-white);
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    border-color: rgba(30, 95, 216, 0.3);
}

.faq-item.active {
    background: var(--white);
    border-color: var(--blue-main);
    box-shadow: 0 12px 40px rgba(30, 95, 216, 0.08);
}

.faq-question {
    width: 100%;
    padding: 32px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    font-family: var(--font);
}

.faq-question span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-main);
    font-size: 0.8rem;
    transition: all 0.3s var(--ease);
}

.faq-item.active .faq-icon-wrap {
    background: var(--blue-main);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.faq-content {
    padding: 0 32px 32px;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* --- Global Presence Redesign --- */
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.location-card {
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.04);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.location-map {
    height: 350px;
    width: 100%;
    filter: grayscale(1) contrast(1.1);
    transition: filter 0.5s var(--ease);
}

.location-card:hover .location-map {
    filter: grayscale(0) contrast(1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    padding: 40px;
}

.location-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--blue-pale);
    color: var(--blue-main);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.location-details h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.location-details p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}



/* --- Call Block --- */
.book-call-cta {
    padding: 100px 0;
    background: var(--white);
}

.call-card {
    background: var(--blue-mid);
    border-radius: 32px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.call-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('Assets/abstract-light-rays.mov');
    /* Note: can't use mov as bg img, using a placeholder gradient instead */
    background: linear-gradient(45deg, var(--blue-dark), var(--blue-main));
    opacity: 0.95;
    z-index: 0;
}

.call-card-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.call-card-content h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.call-card-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.call-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1100px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-header {
        position: static;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    .call-card {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
        gap: 40px;
    }

    .call-card-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 24px;
    }

    .contact-hero {
        padding: 180px 0 100px;
    }

    .contact-form-card {
        padding: 40px 24px;
    }

    .contact-info-card {
        padding: 32px 24px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(10, 22, 40, 0.1);
        background: linear-gradient(180deg, var(--blue-deep) 0%, #0f1a2d 100%);
    }

    .contact-info-card .info-header {
        margin-bottom: 24px;
    }

    .contact-info-card .info-header h2 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .contact-info-card .info-header p {
        font-size: 14px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
    }

    .contact-info-card .info-list {
        gap: 0;
    }

    .contact-info-card .info-item {
        gap: 14px;
        margin-bottom: 22px;
        align-items: flex-start;
    }

    .contact-info-card .info-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        font-size: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: none;
    }

    .contact-info-card .info-label {
        font-size: 11px;
        letter-spacing: 0.08em;
        opacity: 0.6;
        margin-bottom: 4px;
    }

    .contact-info-card .info-value {
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        word-break: break-all;
    }

    .contact-info-card .info-footer {
        padding-top: 18px;
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .contact-info-card .info-note {
        font-size: 12px;
        opacity: 0.7;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid-section {
        margin-top: -40px;
    }

    .faq-question {
        padding: 24px;
    }

    .faq-question span {
        font-size: 1rem;
    }
}

/* --- Toasts --- */
.toast-container {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.toast {
    background: var(--white);
    padding: 20px 32px;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.15);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 340px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    border-left: 6px solid transparent;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: var(--toast-success);
}

.toast.error {
    border-left-color: var(--toast-error);
}

.toast-icon {
    font-size: 1.4rem;
}

.toast-message {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}