@import url('https://rsms.me/inter/inter.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #f0f0f0;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    margin: 0 auto;
    margin-top: 6rem;
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    z-index: 101;
}

.nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.arrow {
    font-size: 1.5rem;
    color: white;
    font-weight: bold;
}

.book-icon {
    font-size: 1.5rem;
}

.nav-text {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-left {
    margin-right: auto;
}

.nav-right {
    margin-left: auto;
}

/* Two-Column Layout */
.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Left Column: Reasons */
.reasons-column {
    display: flex;
    flex-direction: column;
}

.reasons-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.reasons-card h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.tagline {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f5f5f5;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: #efefef;
    transform: translateX(4px);
}

.reason-icon {
    font-size: 2rem;
    min-width: 2.5rem;
    text-align: center;
}

.reason-content h3 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.reason-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* CTA Section */
.cta-primary {
    margin: 2rem 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 16px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #2563eb;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-subtitle {
    color: white;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

/* Cancellation Policy */
.cancellation-policy {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.cancellation-policy p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
}

/* Right Column: Form */
.form-column {
    display: flex;
    flex-direction: column;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-card h2 {
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    padding: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-success {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    color: #065f46;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 1rem;
        margin-top: 5rem;
    }

    .reasons-card,
    .form-card {
        padding: 1.5rem;
    }

    .reasons-card h1 {
        font-size: 1.8rem;
    }

    .form-card h2 {
        font-size: 1.3rem;
    }

    .navigation {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        margin: 0;
    }

    .reason-item {
        padding: 1rem;
    }

    .cta-primary {
        padding: 1.5rem;
    }

    .reasons-list {
        gap: 1rem;
    }
}
