/* ==========================================
   7. Contact Form & Newsletter Section
   ========================================== */
.contact-section {
    background: var(--color-deep-blue);
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/meetings-bg.webp') center center / cover no-repeat;
    filter: grayscale(1);
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,206,250,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-section .section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7CCEFA;
    margin-bottom: var(--spacing-xs);
}

.contact-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-sm);
}

.contact-section .section-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.contact-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 38px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.glass-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(124,206,250,0.15), transparent 70%);
    pointer-events: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: #2778D6;
    pointer-events: none;
    flex-shrink: 0;
    z-index: 2;
    opacity: 0.6;
}

.msg-icon {
    align-self: flex-start;
    margin-top: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f1f5f9;
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border 0.3s;
    box-sizing: border-box;
}

.input-wrap label {
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 600;
}
.input-wrap {
    flex-direction: column;
    align-items: flex-start;
}

.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
}

.check-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #2778D6;
    box-shadow: 0 0 0 3px rgba(39, 120, 214, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.contact-form select option {
    color: #333;
    background: #fff;
}

.contact-form textarea {
    padding: 14px 16px 14px 42px;
    resize: vertical;
    min-height: 90px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-deep-blue);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--color-professional-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 59, 140, 0.3);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact-info-card {
    background: var(--color-corporate-navy);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-item h6 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: normal;
}

.contact-info-item span {
    display: block;
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
}

.contact-subscribe-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
}

.contact-subscribe-card h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-subscribe-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin-bottom: 16px;
}

.sub-row {
    display: flex;
    gap: 8px;
}

.sub-row input {
    flex: 1;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border 0.3s;
}

.sub-row input::placeholder {
    color: rgba(255,255,255,0.35);
}

.sub-row input:focus {
    border-color: #7CCEFA;
}

.sub-row button {
    background: linear-gradient(135deg, #f5b342, #e8a832);
    color: #0D1F4B;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.sub-row button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(245, 179, 66, 0.3);
}

/* Subscribe Section */
.subscribe-section {
    background: linear-gradient(135deg, var(--color-dark-navy), var(--color-deep-blue));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124,206,250,0.05), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.subscribe-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255,255,255,0.3);
}

.subscribe-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-deep-blue);
    margin-bottom: 8px;
}

.subscribe-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-card .sub-row {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.subscribe-card .sub-row input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(13, 27, 74, 0.08);
    border-radius: var(--radius-lg);
    background: var(--color-light-gray);
    color: var(--color-dark-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

.subscribe-card .sub-row input:focus {
    border-color: var(--color-deep-blue);
    box-shadow: 0 0 0 4px rgba(13, 27, 74, 0.06);
}

.subscribe-card .sub-row button {
    background: var(--color-deep-blue);
    color: var(--color-white);
    border: none;
    padding: 0 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.subscribe-card .sub-row button:hover {
    background: var(--color-professional-purple);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 59, 140, 0.3);
}

/* AI Chatbot Widget */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transition: opacity 0.3s ease;
}

.ai-chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: var(--color-deep-blue);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(13, 27, 74, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s;
    padding: 0;
    overflow: hidden;
}

.ai-chat-toggle video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ai-chat-toggle span {
    display: none;
}

.ai-chat-toggle:hover {
    transform: scale(1.08);
}

.ai-chat-panel {
    display: none;
    flex-direction: column;
    width: 360px;
    max-height: 520px;
    background: rgba(13, 27, 74, 0.97);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: var(--shadow-premium);
    animation: chatSlideUp 0.35s ease;
}

.ai-chat-panel.open {
    display: flex;
}

@keyframes chatSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ai-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ai-chat-avatar video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-chat-header-info {
    flex: 1;
}

.ai-chat-header-info strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
    font-family: 'Poppins', sans-serif;
}

.ai-chat-header-info span {
    color: #4ade80;
    font-size: 0.75rem;
}

.ai-chat-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.3s;
}

.ai-chat-close:hover {
    color: #fff;
}

.ai-chat-messages {
    flex: 1;
    padding: 16px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
}

.ai-msg {
    display: flex;
    gap: 8px;
    max-width: 85%;
}

.ai-msg-in {
    align-self: flex-start;
}

.ai-msg-out {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-msg-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.ai-msg-avatar video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-msg-bubble {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.45;
    font-family: 'Inter', sans-serif;
}

.ai-msg-in .ai-msg-bubble {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border-bottom-left-radius: 4px;
}

.ai-msg-out .ai-msg-bubble {
    background: var(--color-deep-blue);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.ai-chat-input-row {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ai-chat-input-row input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    outline: none;
}

.ai-chat-input-row input::placeholder {
    color: rgba(255,255,255,0.35);
}

.ai-chat-input-row input:focus {
    border-color: #7CCEFA;
}

.ai-chat-input-row button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--color-deep-blue);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.ai-chat-input-row button svg {
    width: 18px;
    height: 18px;
}

.ai-chat-input-row button:hover {
    transform: scale(1.08);
}

/* Vision Section - moved to home.css for consistency */

/* AI Lab Section */
.ailab-section {
    padding: 0 0 var(--spacing-xxl) 0;
    background: var(--color-light-gray);
}

.ailab-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(13, 27, 74, 0.06);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.ailab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 35px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s;
}

.ailab-header:hover {
    background: var(--color-soft-blue);
}

.ailab-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-deep-blue);
    margin-bottom: 6px;
}

.ailab-header p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin: 0;
    max-width: 80%;
}

.ailab-chevron {
    font-size: 1.2rem;
    color: var(--color-sky-blue);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.ailab-body {
    padding: 0 35px 35px 35px;
}

/* Reviews Section */
.reviews-section {
    padding: var(--spacing-xxl) 0;
    background: var(--color-soft-blue);
    overflow: hidden;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-section .section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-sky-blue);
    margin-bottom: var(--spacing-xs);
}

.reviews-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-deep-blue);
    margin-bottom: var(--spacing-sm);
}

.reviews-section .section-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.reviews-carousel-row {
    overflow: hidden;
    margin-bottom: 24px;
}

.reviews-carousel-row:last-child {
    margin-bottom: 0;
}

.reviews-track {
    display: flex;
    overflow: hidden;
    gap: 0;
}

.reviews-track-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.review-item {
    position: relative;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s, filter 0.4s;
}

.review-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 2;
}

.review-item:hover img {
    filter: brightness(0.55);
}

.review-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    text-align: center;
    padding: 4px;
    line-height: 1.2;
}

.review-item:hover .review-label {
    opacity: 1;
}

.reviews-track.track-ltr .reviews-track-inner {
    animation: scrollLtr 45s linear infinite;
}

.reviews-track.track-rtl .reviews-track-inner {
    animation: scrollRtl 45s linear infinite;
}

.reviews-track.track-ltr:hover .reviews-track-inner {
    animation-play-state: paused;
}

.reviews-track.track-rtl:hover .reviews-track-inner {
    animation-play-state: paused;
}

/* ==========================================
   8. Partnership Note
   ========================================== */
.partnership-note-bar {
    background-color: var(--color-bg-very-light-grey);
    border-top: 1px solid var(--color-light-blue);
    border-bottom: 1px solid var(--color-light-blue);
    padding: var(--spacing-sm) 0;
}

.partnership-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.partnership-text-col {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.partnership-handshake-icon {
    color: var(--color-accent-main);
    flex-shrink: 0;
}

.partnership-handshake-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.partnership-text-col a {
    color: var(--color-accent-main);
    font-weight: 600;
}

.partnership-text-col a:hover {
    text-decoration: underline;
}

.partnership-logo-col {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-blue);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.partnership-logo-col span {
    color: var(--color-warning-orange);
}

/* ==========================================
   Contact Page Styles
   ========================================== */

/* 1. Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%), url('../assets/images/hero-section/contact-us.webp') no-repeat center center/cover;
    color: var(--color-white);
    padding: var(--spacing-xxl) 0;
    text-align: center;
    border-bottom: 3px solid var(--color-accent-main);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 400px 300px at 80% 50%, rgba(123, 97, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-badge {
    display: inline-block;
    background-color: rgba(123, 97, 255, 0.15);
    border: 1px solid var(--color-accent-main);
    color: var(--color-sky-blue);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 25px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto var(--spacing-md);
    color: var(--color-white);
}

.contact-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* 2. Contact Main & Split Grid */
.contact-main {
    background-color: var(--color-bg-very-light-grey);
    padding: var(--spacing-xxl) 0;
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* 3. Office Cards & Info */
.contact-info-col h2 {
    font-size: 2rem;
    color: var(--color-primary-blue);
    margin-bottom: var(--spacing-xs);
}

.contact-info-col .section-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.office-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-accent-main);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.office-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.office-header svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-main);
    margin-right: 12px;
    flex-shrink: 0;
}

.office-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--color-primary-blue);
}

.office-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.direct-contact-list {
    margin-top: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
}

.contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-light-blue);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item strong {
    font-size: 0.9rem;
    color: var(--color-primary-blue);
    margin-bottom: 4px;
}

.contact-item span {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* 4. Contact Form Card */
.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-light-blue);
}

.contact-form-card h2 {
    font-size: 2rem;
    color: var(--color-primary-blue);
    margin-bottom: var(--spacing-xs);
}

.contact-form-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.contact-page-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-page-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary-blue);
    margin-bottom: 6px;
}

.contact-page-form .form-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-light-blue);
    border-radius: var(--radius-md);
    background-color: var(--color-bg-very-light-grey);
    color: var(--color-dark-text);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
    outline: none;
}

.contact-page-form .form-field:focus {
    border-color: var(--color-accent-main);
    background-color: var(--color-white);
}

.contact-page-form select.form-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B0B45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-page-form textarea.form-field {
    min-height: 120px;
    resize: vertical;
}

/* 5. FAQ Accordion styles */
.faq-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-very-light-grey);
    border: 1px solid var(--color-light-blue);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-blue);
    cursor: pointer;
    outline: none;
    transition: background var(--transition-fast);
}

.faq-header:hover {
    background: rgba(123, 97, 255, 0.04);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-accent-main);
    line-height: 1;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.faq-item.active .faq-body {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

.faq-body p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* 6. Map Section Styles */
.map-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg-very-light-grey);
}

.map-box {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-light-blue);
}

.map-placeholder-bg {
    width: 100%;
    height: 100%;
    background-color: #e5e9f0;
    background-image: radial-gradient(var(--color-light-blue) 1.5px, transparent 1.5px), radial-gradient(var(--color-light-blue) 1.5px, #e5e9f0 1.5px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    position: relative;
}

.map-pin {
    width: 24px;
    height: 24px;
    background-color: var(--color-accent-main);
    border: 4px solid var(--color-white);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -12px;
    animation: bounce 2s infinite;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.3);
}

.map-pin::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-white);
    position: absolute;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) rotate(-45deg); }
    50% { transform: translateY(-10px) rotate(-45deg); }
}

.map-overlay {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    z-index: 10;
    width: 320px;
}

.map-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-hover);
    border-top: 4px solid var(--color-accent-main);
}

.map-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-primary-blue);
}

.map-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.map-btn {
    display: inline-block;
    background-color: var(--color-accent-main);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: background-color var(--transition-fast);
}

.map-btn:hover {
    background-color: var(--color-accent-hover);
}

@media (max-width: 991px) {
    .contact-split-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .map-overlay {
        position: static;
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .map-box {
        height: 300px;
    }
}

/* Note: Large Footer styles have been moved to style/footer.css to respect project architecture. */

/* ==========================================
   Responsive Spacing Overrides
   ========================================== */
@media (max-width: 991px) {
    .stats-ribbon-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .what-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .mid-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .partnership-flex {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .footer-top-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        grid-column: span 3;
        margin-bottom: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    .stats-ribbon-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
    
    .what-stats-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .why-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}
