/* Consultation Booking Form Styles */

.consultation-booking-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.consultation-booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.consultation-booking-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.consultation-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.consultation-phone {
    font-size: 18px;
    font-weight: 600;
    color: #2563eb;
    margin: 0;
}

.consultation-phone a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.consultation-phone a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.consultation-booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control:required {
    border-left: 3px solid #2563eb;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.char-count {
    font-size: 12px;
    color: #6b7280;
    text-align: right;
    margin-top: -5px;
}

.char-count span {
    font-weight: 600;
}

.consultation-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.consultation-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

.consultation-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.consultation-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
    text-align: center;
    font-weight: 500;
}

.consultation-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.consultation-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* 15-Minute Call Section Styles */

.consultation-call-section {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.call-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.call-subtitle {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stars {
    font-size: 32px;
    color: #fbbf24;
    letter-spacing: 4px;
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #1a1a1a;
}

.rating-text strong {
    font-size: 24px;
    color: #2563eb;
}

.rating-label {
    color: #6b7280;
    font-size: 14px;
}

.google-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #4285f4;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.call-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 16px;
    color: #374151;
    line-height: 1.5;
}

.call-booking-cta {
    margin-top: 30px;
}

.book-call-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.book-call-btn:active {
    transform: translateY(0);
}

/* Responsive Design */

@media (max-width: 768px) {
    .consultation-booking-form-wrapper,
    .consultation-call-section {
        margin: 20px;
        padding: 20px;
    }
    
    .consultation-booking-header h2 {
        font-size: 26px;
    }
    
    .call-section-header h2 {
        font-size: 28px;
    }
    
    .consultation-subtitle,
    .call-subtitle {
        font-size: 16px;
    }
    
    .form-control {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .call-features {
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .book-call-btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .consultation-booking-form-wrapper,
    .consultation-call-section {
        margin: 10px;
        padding: 15px;
    }
    
    .consultation-booking-header h2 {
        font-size: 22px;
    }
    
    .call-section-header h2 {
        font-size: 24px;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}



