/* ====================================
   CONTACT PAGE SPECIFIC STYLES
   Extracted from inline <style> block
   ==================================== */

/* Transparent navbar overlay on hero */
.navbar-no-shadow {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: transparent !important;
    background-color: transparent !important;
}

.navbar-no-shadow-container-2,
.navbar-wrapper-2,
div.navbar-no-shadow,
.w-nav {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* White logo on purple background */
.navbar-brand-2 .image-16 {
    filter: none !important;
}

/* White text for navbar on purple background */
.nav-link-2 {
    color: #fff !important;
    position: relative;
    padding-bottom: 5px;
}

.nav-link-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.nav-link-2:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link-2:hover::after {
    width: 100%;
}

/* Keep current page link white */
.nav-link-2.w--current {
    color: #fff !important;
}

/* Show underline for current/active page */
.nav-link-2.w--current::after {
    width: 100% !important;
}

/* Language toggle styling for purple background */
.language-toggle {
    color: #fff !important;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.language-toggle option {
    color: #000 !important;
    background-color: #fff !important;
}

.text-block-64 {
    color: #fff !important;
}

/* Media query override for mobile menu */
@media screen and (max-width: 991px) {
    .nav-menu-wrapper-2,
    .nav-menu-2 {
        background: #2B1343 !important;
        background-color: #2B1343 !important;
    }

    .nav-link-2 {
        color: #fff !important;
    }
}

/* Contact Hero Section */
.contact-hero {
    background-image: linear-gradient(135deg, rgba(107, 70, 193, 0.85) 0%, rgba(128, 0, 255, 0.85) 50%, rgba(107, 70, 193, 0.85) 100%), url('assets/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 70, 193, 0.1);
    opacity: 0.4;
}

.contact-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.contact-hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.95;
    color: white;
}

/* Contact Options Section */
.contact-options-section {
    padding: 80px 20px;
    background: #F9FAFB;
}

.contact-options-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-option-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(107, 70, 193, 0.2);
}

.contact-option-card.recommended::before {
    content: attr(data-recommended-text);
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #6B46C1, #8000FF);
    color: white;
    padding: 6px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(128, 0, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-option-card:hover .contact-icon-wrapper {
    background: linear-gradient(135deg, #6B46C1, #8000FF);
}

.contact-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: #6B46C1;
    transition: all 0.3s ease;
}

.contact-option-card:hover .contact-icon-wrapper svg {
    color: white;
}

.contact-option-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 12px;
}

.contact-option-description {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 48px;
}

.contact-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6B46C1, #8000FF);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-option-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.contact-option-btn svg {
    width: 18px;
    height: 18px;
}

.contact-option-meta {
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 15px;
}

/* Progressive Form Container */
.progressive-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 50px;
    display: none;
}

.progressive-form-container.active {
    display: block;
}

.form-progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6B46C1, #8000FF);
    border-radius: 10px;
    transition: width 0.4s ease;
    width: 0%;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.form-step-subtitle {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 35px;
}

.form-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.form-option-card {
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-option-card:hover {
    border-color: #6B46C1;
    background: rgba(107, 70, 193, 0.05);
}

.form-option-card.selected {
    border-color: #8000FF;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(128, 0, 255, 0.1));
}

.form-option-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-option-icon svg {
    width: 32px;
    height: 32px;
    color: #6B46C1;
}

.form-option-label {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
}

.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #F9FAFB;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-checkbox-item:hover {
    border-color: #6B46C1;
    background: rgba(107, 70, 193, 0.05);
}

.form-checkbox-item.selected {
    border-color: #8000FF;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(128, 0, 255, 0.1));
}

.form-checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 15px;
    font-weight: 500;
    color: #1F2937;
    cursor: pointer;
}

.form-textarea {
    width: 100%;
    min-height: 150px;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.form-textarea:focus {
    outline: none;
    border-color: #8000FF;
    box-shadow: 0 0 0 4px rgba(128, 0, 255, 0.1);
}

.form-tip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(107, 70, 193, 0.05);
    border-radius: 8px;
    margin-bottom: 35px;
}

.form-tip svg {
    width: 18px;
    height: 18px;
    color: #6B46C1;
    flex-shrink: 0;
}

.form-tip-text {
    font-size: 14px;
    color: #6B7280;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.form-input:focus {
    outline: none;
    border-color: #8000FF;
    box-shadow: 0 0 0 4px rgba(128, 0, 255, 0.1);
}

.form-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input-optional {
    font-size: 13px;
    font-weight: 400;
    color: #9CA3AF;
}

.form-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 35px;
}

.form-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: white;
    border: 2px solid #E5E7EB;
    color: #6B7280;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn-back:hover {
    border-color: #6B46C1;
    color: #6B46C1;
}

.form-btn-back svg {
    width: 18px;
    height: 18px;
}

.form-btn-next {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6B46C1, #8000FF);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn-next:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.form-btn-next svg {
    width: 18px;
    height: 18px;
}

/* Success Screen */
.success-screen {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-screen.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: #10B981;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
}

.success-message {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.success-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.success-step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6B46C1, #8000FF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.success-step-content {
    flex: 1;
    padding-top: 8px;
}

.success-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.success-step-description {
    font-size: 14px;
    color: #6B7280;
}

.success-email {
    padding: 12px 20px;
    background: rgba(107, 70, 193, 0.05);
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #6B7280;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Alternative Contact Methods */
.alternative-contact {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #E5E7EB;
}

.alternative-contact-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 40px;
}

.alternative-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.alternative-contact-item {
    text-align: center;
}

.alternative-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.1), rgba(128, 0, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alternative-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #6B46C1;
}

.alternative-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 6px;
}

.alternative-contact-value {
    font-size: 15px;
    color: #6B46C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.alternative-contact-value:hover {
    color: #8000FF;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .progressive-form-container {
        padding: 35px 25px;
    }

    .form-options-grid {
        grid-template-columns: 1fr;
    }

    .alternative-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-options-section {
        padding: 50px 20px;
    }

    .progressive-form-container {
        padding: 30px 20px;
    }

    .form-step-title {
        font-size: 24px;
    }

    .form-nav-buttons {
        flex-direction: column-reverse;
    }

    .form-btn-back,
    .form-btn-next {
        width: 100%;
        justify-content: center;
    }

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

    .success-actions {
        flex-direction: column;
    }

    .success-actions .contact-option-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Quick Message Form */
.quick-message-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    padding: 50px;
    display: none;
}

.quick-message-container.active {
    display: block;
}

.quick-message-title {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 15px;
    text-align: center;
}

.quick-message-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 40px;
    text-align: center;
}

/* Hover button effects */
.hover-btn:hover img {
    content: url(https://uploads-ssl.webflow.com/64b68ca245c2ac61522605c9/6579aa1d694f43158583e981_black-arrow.svg);
}

/* Mobile-specific footer styling */
@media (max-width: 768px) {
    .footer-bottom {
        background: transparent !important;
    }
}

/* Cal.com Scheduling Modal */
.schedule-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.schedule-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.schedule-modal {
    background: white;
    border-radius: 24px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(107, 70, 193, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.schedule-modal-overlay.active .schedule-modal {
    transform: scale(1);
}

.schedule-modal-header {
    background: linear-gradient(135deg, #6B46C1 0%, #8000FF 50%, #6B46C1 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    padding: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.schedule-modal-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.schedule-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.schedule-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

.schedule-modal-close svg {
    width: 20px;
    height: 20px;
}

.schedule-modal-body {
    height: calc(90vh - 120px);
    max-height: 700px;
    background: white;
}

.schedule-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (max-width: 768px) {
    .schedule-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .schedule-modal-header {
        padding: 25px 20px;
    }

    .schedule-modal-header h2 {
        font-size: 22px;
        margin-right: 40px;
    }

    .schedule-modal-header p {
        font-size: 14px;
    }

    .schedule-modal-body {
        height: calc(95vh - 100px);
    }
}

/* Center align alternative contact section */
.alternative-contact {
    text-align: center;
}

.alternative-contact-title {
    text-align: center;
}

.alternative-contact-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 40px !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.alternative-contact-item {
    text-align: center;
    flex: 0 1 auto !important;
}
