/* ============================================================================
   Contact Page - Sleek LinkedIn-Inspired Theme
   ============================================================================ */

/* Variables */
:root {
    --linkedin-blue: #0A66C2;
    --linkedin-blue-hover: #004182;
    --sleek-dark: #191919;
    --sleek-grey-100: #f3f2ef;
    --sleek-grey-200: #e9e5df;
    --sleek-grey-300: #d0cec9;
    --sleek-grey-500: #86888a;
    --sleek-grey-700: #38434f;
    --sleek-white: #ffffff;
}

/* Body Override */
.contact-page-sleek {
    background: var(--sleek-grey-100);
}

/* ============================================================================
   Hero Section - Image Background
   ============================================================================ */

.contact-hero-sleek {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(25, 25, 25, 0.7) 0%,
        rgba(25, 25, 25, 0.8) 100%
    );
}

.contact-hero-sleek .container {
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--sleek-white);
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.contact-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--linkedin-blue);
    color: var(--sleek-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-hero-cta:hover {
    background: var(--linkedin-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(10, 102, 194, 0.4);
}

.contact-hero-cta svg {
    transition: transform 0.2s ease;
}

.contact-hero-cta:hover svg {
    transform: translateX(4px);
}

/* ============================================================================
   Stats Bar
   ============================================================================ */

.contact-stats-bar {
    background: var(--sleek-white);
    border-bottom: 1px solid var(--sleek-grey-200);
    padding: 24px 0;
}

.stats-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--sleek-dark);
}

.stat-label {
    font-size: 13px;
    color: var(--sleek-grey-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sleek-grey-200);
}

/* ============================================================================
   Main Contact Section
   ============================================================================ */

.contact-main-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Side - Info */
.contact-info-side {
    padding-right: 40px;
}

.contact-info-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--sleek-dark);
    margin: 0 0 12px 0;
}

.contact-info-header p {
    font-size: 18px;
    color: var(--sleek-grey-500);
    margin: 0 0 40px 0;
}

/* Benefits */
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(10, 102, 194, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    color: var(--linkedin-blue);
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sleek-dark);
    margin: 0 0 4px 0;
}

.benefit-text p {
    font-size: 14px;
    color: var(--sleek-grey-500);
    margin: 0;
    line-height: 1.5;
}

/* Alternative Contact */
.contact-alternative {
    padding-top: 32px;
    border-top: 1px solid var(--sleek-grey-200);
}

.alternative-label {
    font-size: 14px;
    color: var(--sleek-grey-500);
    margin: 0 0 16px 0;
}

.alternative-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alternative-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--sleek-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.alternative-link:hover {
    color: var(--linkedin-blue);
}

.alternative-link svg {
    color: var(--sleek-grey-500);
}

.alternative-link:hover svg {
    color: var(--linkedin-blue);
}

/* Right Side - Booking Card */
.contact-booking-side {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--sleek-white);
    border-radius: 16px;
    box-shadow:
        0 0 0 1px var(--sleek-grey-200),
        0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.booking-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--sleek-grey-200);
    background: var(--sleek-grey-100);
}

.booking-icon {
    width: 56px;
    height: 56px;
    background: var(--linkedin-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-icon svg {
    color: var(--sleek-white);
}

.booking-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--sleek-dark);
    margin: 0 0 4px 0;
}

.booking-card-header p {
    font-size: 14px;
    color: var(--sleek-grey-500);
    margin: 0;
}

.booking-card-body {
    padding: 24px;
}

.booking-description {
    font-size: 15px;
    color: var(--sleek-grey-700);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* Calendly Placeholder */
.calendly-placeholder {
    margin-bottom: 24px;
}

.booking-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--linkedin-blue);
    color: var(--sleek-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 28px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.booking-button:hover {
    background: var(--linkedin-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(10, 102, 194, 0.4);
}

.booking-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--sleek-grey-100);
    border-radius: 8px;
    font-size: 13px;
    color: var(--sleek-grey-500);
}

.booking-note svg {
    flex-shrink: 0;
    color: var(--sleek-grey-500);
}

/* ============================================================================
   FAQ Section
   ============================================================================ */

.contact-faq-sleek {
    background: var(--sleek-white);
    padding: 80px 0;
    border-top: 1px solid var(--sleek-grey-200);
}

.faq-header-sleek {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header-sleek h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sleek-dark);
    margin: 0;
}

.faq-grid-sleek {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item-sleek {
    padding: 24px;
    background: var(--sleek-grey-100);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.faq-item-sleek:hover {
    background: var(--sleek-grey-200);
}

.faq-item-sleek h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sleek-dark);
    margin: 0 0 12px 0;
}

.faq-item-sleek p {
    font-size: 14px;
    color: var(--sleek-grey-500);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================================
   Responsive
   ============================================================================ */

@media (max-width: 968px) {
    .contact-hero-title {
        font-size: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-side {
        padding-right: 0;
    }

    .contact-booking-side {
        position: static;
    }

    .faq-grid-sleek {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .contact-hero-sleek {
        min-height: 350px;
        padding: 100px 0 60px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
    }

    .stats-bar-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 16px;
        padding: 0 16px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        text-align: center;
    }

    .stat-value {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.3;
    }

    .contact-main-section {
        padding: 40px 0;
    }

    .contact-info-header h2 {
        font-size: 22px;
    }

    .contact-info-header p {
        font-size: 15px;
        margin: 0 0 24px 0;
    }

    .contact-benefits {
        gap: 16px;
        margin-bottom: 24px;
    }

    .benefit-item {
        gap: 12px;
    }

    .benefit-icon {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    .benefit-icon svg {
        width: 18px;
        height: 18px;
    }

    .benefit-text h4 {
        font-size: 14px;
        margin: 0 0 2px 0;
    }

    .benefit-text p {
        font-size: 13px;
        line-height: 1.4;
    }

    .contact-alternative {
        padding-top: 20px;
    }

    .alternative-label {
        font-size: 13px;
        margin: 0 0 12px 0;
    }

    .alternative-options {
        gap: 8px;
    }

    .alternative-link {
        font-size: 14px;
    }

    .contact-faq-sleek {
        padding: 40px 0;
    }

    .faq-header-sleek h2 {
        font-size: 22px;
    }
}

/* ============================================================================
   Calendly Desktop/Mobile Toggle
   ============================================================================ */

.calendly-desktop {
    display: block;
}

.calendly-mobile {
    display: none;
}

@media (max-width: 968px) {
    .calendly-desktop {
        display: none;
    }

    .calendly-mobile {
        display: block;
        margin-bottom: 24px;
    }

    .calendly-mobile .booking-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 16px 24px;
        background: var(--linkedin-blue);
        color: var(--sleek-white);
        font-size: 16px;
        font-weight: 600;
        border-radius: 28px;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .calendly-mobile .booking-button:hover {
        background: var(--linkedin-blue-hover);
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(10, 102, 194, 0.4);
    }
}

/* ============================================================================
   Footer Override for Sleek Theme
   ============================================================================ */

.contact-page-sleek .footer {
    background: var(--sleek-dark);
}
