/* ========================================
   Dr Weight Loss - Main Stylesheet
   Consolidated CSS for all pages
   ======================================== */

/* CSS Custom Properties (Variables) */
:root {
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Colors */
    --primary-color: #2c5aa0;
    --primary-dark: #1e3f6b;
    --primary-light: #4a7bc8;
    --secondary-color: #f8f9fa;
    --accent-color: #28a745;
    --accent-dark: #1e7e34;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   Base Styles
   ======================================== */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background: #fefbee;
    min-height: 100vh;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: 1.1rem;
    font-weight: var(--font-weight-normal);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ========================================
   Logo Section
   ======================================== */
.logo-section {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: var(--shadow-sm);
}

.logo-image {
    max-height: 70px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: var(--transition-normal);
}

.logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

/* Quiz-specific hero styles */
.hero-section.quiz-hero {
    padding: 80px 0;
}

.hero-section.quiz-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-section.quiz-hero .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-normal);
    display: inline-block;
    margin: var(--spacing-xs);
}

.btn-secondary-custom:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   CTA Buttons
   ======================================== */
.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ========================================
   CQC Badges
   ======================================== */
.cqc-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* ========================================
   Features Section
   ======================================== */
.features-section {
    padding: 80px 0;
    background: white;
}

.feature-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

/* ========================================
   Doctor Section
   ======================================== */
.doctor-section {
    padding: var(--spacing-xxl) 0;
    background: var(--secondary-color);
    position: relative;
}

.doctor-profile {
    background: white;
    border-radius: 20px;
    padding: var(--spacing-xl);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.doctor-image {
    width: 260px;
    height: 420px;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
    margin: 0 auto var(--spacing-lg);
    transition: transform 0.3s ease;
}

.doctor-image:hover {
    transform: scale(1.05);
}

.doctor-name {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.doctor-credentials {
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-md);
}

/* ========================================
   Process Section
   ======================================== */
.process-section {
    padding: var(--spacing-xxl) 0;
}

.process-step-card {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin: 0 auto var(--spacing-md);
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.process-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: rgba(44, 90, 160, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.process-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.process-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e9ecef 100%);
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
}

.doctor-profile {
    margin-bottom: var(--spacing-lg);
}

.doctor-image {
    width: 260px;
    height: 420px;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    object-position: top center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--spacing-md);
}

.doctor-name {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.doctor-credentials {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    font-style: italic;
}

.blockquote-footer {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: var(--spacing-sm);
}

/* ========================================
   Quiz Section
   ======================================== */
.quiz-section {
    background: white;
    padding: var(--spacing-xxl) 0;
}

.quiz-container {
    max-width: 600px;
    margin: 0 auto;
}

.quiz-step {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.quiz-progress {
    margin-bottom: var(--spacing-xl);
}

.progress-step {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    margin: 0 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.progress-step.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4);
}

.progress-step.completed {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.progress-step.pending {
    background: var(--secondary-color);
    color: var(--text-muted);
    border: 2px solid #dee2e6;
}

.progress-step::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-step.active::after,
.progress-step.completed::after {
    opacity: 1;
}

.bmi-display {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: var(--spacing-lg);
    text-align: center;
    margin: var(--spacing-lg) 0;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.15);
    position: relative;
    overflow: hidden;
}

.bmi-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.bmi-category-bar {
    height: 24px;
    background: linear-gradient(to right, #27ae60, #f39c12, #e74c3c);
    border-radius: 12px;
    position: relative;
    margin: var(--spacing-md) 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.bmi-indicator {
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 4px;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(44, 90, 160, 0.4);
    border: 2px solid white;
}

.unit-toggle {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.unit-toggle .btn {
    min-width: 100px;
    border-radius: 25px;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-color);
}

.unit-toggle .btn:not(.active) {
    background: transparent;
    color: var(--primary-color);
}

.unit-toggle .btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.unit-toggle .btn:hover:not(.active) {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.form-section {
    background: white;
    border-radius: 16px;
    padding: var(--spacing-xl);
    margin: var(--spacing-lg) 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.eligibility-result {
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.eligibility-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.eligibility-result.eligible {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--accent-color);
    color: #155724;
}

.eligibility-result.ineligible {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
    color: #721c24;
}

/* Enhanced form inputs */
.form-control {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: var(--spacing-md);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
    transform: translateY(-1px);
}

.form-label {
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

/* Enhanced buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border: none;
    border-radius: 25px;
    padding: var(--spacing-md) var(--spacing-lg);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.quiz-form {
    margin-top: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.btn-quiz {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: var(--spacing-sm) var(--spacing-xl);
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-semibold);
    transition: var(--transition-normal);
}

.btn-quiz:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Booking Section
   ======================================== */
.booking-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.booking-header-content {
    position: relative;
    z-index: 2;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.booking-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.booking-benefits {
    margin: var(--spacing-lg) 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    color: white;
    padding: var(--spacing-xs) 0;
}

.benefit-item i {
    color: #90EE90;
    font-size: 1.2rem;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.benefit-item span {
    line-height: 1.4;
}

.urgency-message {
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-weight: var(--font-weight-semibold);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
}

.calendar-container {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.calendly-inline-widget {
    min-height: 900px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    margin-top: var(--spacing-lg);
}

/* ========================================
   Appointment Options Section
   ======================================== */
.appointment-options {
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-lg) 0;
}

.options-intro {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.options-intro h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.options-intro p {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    margin: 0;
}

.options-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
}

.option-info {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    text-align: left;
    backdrop-filter: blur(5px);
}

.option-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
}

.option-header i {
    font-size: 1.8rem;
    color: #90EE90;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}

.option-header h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin: 0;
}

.option-description {
    color: white;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.feature-item {
    color: white;
    opacity: 0.9;
    font-size: 0.95rem;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.booking-note {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-md);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.booking-note p {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.booking-note i {
    color: #90EE90;
}

/* Responsive adjustments for appointment options */
@media (max-width: 768px) {
    .options-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .option-info {
        padding: var(--spacing-md);
    }
    
    .option-header i {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.5rem;
    }
    
    .option-header h4 {
        font-size: 1.2rem;
    }
}

.calendly-inline-widget iframe {
    border-radius: var(--border-radius-md);
}

/* ========================================
   Admin Styles
   ======================================== */
.admin-header {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-lg) 0;
}

.admin-nav {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: var(--spacing-sm) 0;
}

.admin-content {
    padding: var(--spacing-xl) 0;
}

.admin-card {
    background: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #e9ecef;
    margin-bottom: var(--spacing-lg);
}

.admin-table {
    background: white;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table th {
    background: var(--secondary-color);
    border: none;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
}

/* ========================================
   Animations
   ======================================== */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.border-primary-custom {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-md) !important;
}

.rounded-custom {
    border-radius: var(--border-radius-md) !important;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section.quiz-hero {
        padding: 60px 0;
    }
    
    .booking-title {
        font-size: 2rem;
    }
    
    .booking-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-item {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .urgency-message {
        margin: var(--spacing-md) var(--spacing-sm);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .calendly-inline-widget {
        min-height: 700px;
        margin: var(--spacing-md) var(--spacing-sm);
    }
    
    .logo-image {
        max-height: 60px;
    }
    
    .doctor-image {
        width: 200px;
        height: 320px;
    }
    
    .feature-card {
        margin-bottom: var(--spacing-md);
    }
    
    .form-section {
        padding: var(--spacing-lg);
        margin: var(--spacing-md) 0;
    }
    
    .progress-step {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: var(--spacing-xl) 0;
    }
    
    .features-section,
    .doctor-section,
    .quiz-section,
    .process-section,
    .testimonials-section {
        padding: var(--spacing-xl) 0;
    }
    
    .quiz-step {
        padding: var(--spacing-lg);
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin: var(--spacing-xs) 0;
        text-align: center;
    }
    
    .container {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }
}

/* ========================================
   Additional Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }
    
    .feature-card {
        margin-bottom: var(--spacing-md);
    }
    
    .doctor-profile {
        padding: var(--spacing-lg);
    }
    
    .process-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Animation Delays
   ======================================== */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .no-print {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .page-wrapper {
        min-height: auto;
    }
}
