/* GoEast Trial Booking Form Styles - Optimized Single Scroll Experience */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.goeast-booking-container {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* DESKTOP OPTIMIZED: Natural height, single scroll */
.goeast-booking-form {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: visible;
    position: relative;
    width: 100%;
    min-height: auto;
    max-height: none;
    height: auto;
    display: block;
    margin: 20px 0;
}

/* Header Styles - Optimized */
.goeast-form-header {
    background: linear-gradient(135deg, #f15a65 0%, #E94A75 100%);
    color: white;
    padding: 20px 30px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 16px 16px 0 0;
}

.goeast-form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.goeast-form-header h1 {
    font-size: 26px;
    margin-bottom: 6px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.goeast-form-header p {
    opacity: 0.95;
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    color: rgba(255,255,255,0.95);
}

/* DESKTOP SPECIFIC OPTIMIZATIONS */
@media (min-width: 769px) {
    .goeast-booking-container {
        padding: 40px 20px;
        align-items: flex-start;
    }
    
    .goeast-booking-form {
        margin: 0;
    }
    
    .goeast-form-header {
        padding: 24px 35px 20px;
    }
    
    .goeast-form-header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .goeast-form-header p {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .goeast-step-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .goeast-step-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .goeast-form-group {
        margin-bottom: 16px;
    }
    
    .goeast-form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    /* Desktop form layout optimizations */
    .goeast-form-row {
        gap: 16px;
    }
    
    .goeast-option-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .goeast-course-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
    }
    
    .goeast-calendar-dates {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 10px;
    }
    
    .goeast-time-slots {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        max-height: 250px;
        overflow-y: auto;
        padding: 12px;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        background: #fafbfc;
    }
}

/* Social Proof - Optimized */
.goeast-social-proof {
    margin-top: 8px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    clear: both;
}

.goeast-social-proof-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.goeast-stat-item {
    text-align: center;
    min-width: 60px;
}

.goeast-stat-number {
    font-size: 18px;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
    color: white;
}

.goeast-stat-label {
    font-size: 10px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
}

/* Trust Signals */
.goeast-trust-signals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 8px 0 6px;
    padding: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    flex-wrap: wrap;
}

.goeast-trust-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255,255,255,0.9);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
}

.goeast-trust-icon {
    font-size: 12px;
}

/* Progress Bar */
.goeast-progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin: 8px 0 0 0;
    border-radius: 2px;
    overflow: hidden;
}

.goeast-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.8));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* Form Content - SINGLE SCROLL OPTIMIZED */
.goeast-form-content {
    padding: 24px 30px 20px;
    position: relative;
    overflow: visible;
    display: block;
    min-height: auto;
}

.goeast-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    min-height: auto;
}

.goeast-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Step Header - Optimized */
.goeast-step-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.goeast-step-title {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 8px;
    font-weight: 700;
}

.goeast-step-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.goeast-step-progress {
    font-size: 12px;
    color: #f15a65;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Form Layout - Compact but Readable */
.goeast-compact-form {
    overflow: visible;
}

.goeast-form-group {
    margin-bottom: 16px;
    position: relative;
}

.goeast-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.goeast-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #1f2937;
    font-size: 13px;
}

.goeast-required {
    color: #f15a65;
}

/* Input Fields - Enhanced */
.goeast-form-group input[type="text"],
.goeast-form-group input[type="email"],
.goeast-form-group input[type="tel"],
.goeast-form-group select,
.goeast-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafbfc;
}

.goeast-form-group input:focus,
.goeast-form-group select:focus,
.goeast-form-group textarea:focus {
    outline: none;
    border-color: #f15a65;
    background: white;
    box-shadow: 0 0 0 3px rgba(241, 90, 101, 0.1);
    transform: translateY(-1px);
}

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

.goeast-form-group select {
    cursor: pointer;
}

/* Option Grids - Optimized */
.goeast-option-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.goeast-option-button {
    padding: 12px 10px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    line-height: 1.3;
}

.goeast-option-button:hover {
    border-color: #f15a65;
    background: #fef2f2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 90, 101, 0.15);
}

.goeast-option-button.selected {
    border-color: #f15a65;
    background: linear-gradient(135deg, #fef2f2 0%, #fdf2f8 100%);
    color: #be185d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 90, 101, 0.2);
}

.goeast-option-button.selected::after {
    content: '✓';
    position: absolute;
    top: 4px;
    right: 8px;
    color: #f15a65;
    font-weight: bold;
    font-size: 12px;
}

/* Course Options */
.goeast-course-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.goeast-course-option {
    padding: 14px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
}

.goeast-course-option:hover {
    border-color: #f15a65;
    background: #fef2f2;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(241, 90, 101, 0.15);
}

.goeast-course-option.selected {
    border-color: #f15a65;
    background: linear-gradient(135deg, #fef2f2 0%, #fdf2f8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(241, 90, 101, 0.2);
}

.goeast-course-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 14px;
    color: #f15a65;
    font-weight: bold;
    font-size: 14px;
}

.goeast-course-icon {
    font-size: 20px;
    margin-bottom: 6px;
}

.goeast-course-title {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    font-size: 14px;
}

.goeast-course-description {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.3;
}

/* Info Boxes */
.goeast-info-box-compact {
    background: linear-gradient(135deg, #fef3f2 0%, #fdf2f8 100%);
    border: 1px solid #f9c2c2;
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    position: relative;
}

.goeast-info-box-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f15a65, #E94A75);
    border-radius: 10px 10px 0 0;
}

.goeast-info-box-compact h3 {
    color: #be185d;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
}

.goeast-info-list-compact {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Testimonials */
.goeast-testimonial-compact {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    padding: 16px;
    margin: 16px 0;
    border-left: 3px solid #f15a65;
    position: relative;
    clear: both;
    overflow: hidden;
}

.goeast-testimonial-content {
    font-style: italic;
    color: #374151;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.goeast-testimonial-author {
    font-weight: 600;
    color: #f15a65;
    font-size: 12px;
}

/* Timezone Selector */
.goeast-timezone-selector {
    margin-bottom: 24px;
    text-align: center;
}

.goeast-timezone-selector label {
    display: inline-block;
    margin-right: 12px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.goeast-timezone-selector select {
    padding: 10px 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fafbfc;
    font-size: 14px;
    cursor: pointer;
}

/* Calendar Styles */
.goeast-calendar-section {
    margin-bottom: 28px;
}

.goeast-calendar {
    text-align: center;
}

.goeast-calendar h3 {
    color: #1f2937;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.goeast-calendar-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.goeast-date-btn {
    padding: 12px 8px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fafbfc;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.goeast-date-btn:hover {
    border-color: #f15a65;
    background: #fef2f2;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 90, 101, 0.15);
}

.goeast-date-btn.selected {
    border-color: #f15a65;
    background: linear-gradient(135deg, #f15a65, #E94A75);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 90, 101, 0.3);
}

/* Time Selection */
.goeast-times-section {
    margin-bottom: 20px;
}

.goeast-times {
    margin-bottom: 24px;
}

.goeast-times h3 {
    color: #1f2937;
    margin-bottom: 18px;
    font-size: 18px;
    text-align: center;
    font-weight: 700;
}

.goeast-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.goeast-time-btn {
    padding: 14px 12px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.goeast-time-btn:hover {
    border-color: #f15a65;
    background: #fef2f2;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(241, 90, 101, 0.15);
}

.goeast-time-btn.selected {
    border-color: #f15a65;
    background: linear-gradient(135deg, #f15a65, #E94A75);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(241, 90, 101, 0.3);
}

.goeast-time-btn .time {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
}

.goeast-time-btn .instructor {
    font-size: 12px;
    color: #4b5563;
    font-weight: 500;
}

.goeast-time-btn.selected .time,
.goeast-time-btn.selected .instructor {
    color: white;
}

.goeast-time-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 12px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Loading and Error States */
.goeast-loading-state {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.goeast-loading-state .goeast-loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f4f6;
    border-top: 3px solid #f15a65;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.goeast-no-times {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    padding: 20px;
    font-size: 14px;
}

.goeast-error {
    text-align: center;
    padding: 20px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    font-size: 14px;
}

/* Success State */
.goeast-success-state {
    text-align: center;
    padding: 40px 24px;
}

.goeast-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2FC774, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    animation: successPulse 0.6s ease-out;
}

/* Navigation - Enhanced */
.goeast-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 2px solid #e5e7eb;
}

.goeast-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.goeast-btn-secondary {
    background: #f3f4f6;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.goeast-btn-secondary:hover:not(:disabled) {
    background: #e5e7eb;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.goeast-btn-primary {
    background: linear-gradient(135deg, #f15a65 0%, #E94A75 100%);
    color: white;
    border: 2px solid transparent;
}

.goeast-btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #e53e3e 0%, #d53f8c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(241, 90, 101, 0.4);
}

.goeast-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* WhatsApp Support */
.goeast-whatsapp-support {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.goeast-whatsapp-support p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
}

.goeast-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 36px;
}

.goeast-whatsapp-link:hover {
    background: linear-gradient(135deg, #bbf7d0, #86efac);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(34, 197, 94, 0.2);
}

/* Error Messages */
.goeast-error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    background: #fef2f2;
    padding: 6px 10px;
    border-radius: 4px;
    border-left: 3px solid #ef4444;
}

.goeast-error-message:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Keyframes */
@keyframes successPulse {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* MOBILE OPTIMIZATIONS - Compact but Usable */
@media (max-width: 768px) {
    .goeast-booking-container {
        padding: 12px;
        min-height: 100vh;
        align-items: flex-start;
    }
    
    .goeast-booking-form {
        border-radius: 12px;
        margin: 10px 0;
    }
    
    .goeast-form-header {
        padding: 16px 20px 12px;
    }
    
    .goeast-form-header h1 {
        font-size: 20px;
        margin-bottom: 4px;
    }
    
    .goeast-form-header p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .goeast-form-content {
        padding: 16px 20px 12px;
    }
    
    .goeast-step-header {
        margin-bottom: 16px;
    }
    
    .goeast-step-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .goeast-step-subtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    /* Mobile form optimizations */
    .goeast-form-group {
        margin-bottom: 12px;
    }
    
    .goeast-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .goeast-form-group input[type="text"],
    .goeast-form-group input[type="email"],
    .goeast-form-group input[type="tel"],
    .goeast-form-group select {
        padding: 10px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .goeast-option-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .goeast-option-button {
        padding: 10px 8px;
        font-size: 12px;
    }
    
    .goeast-course-grid-compact {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .goeast-course-option {
        padding: 12px 10px;
    }
    
    /* Mobile scheduling */
    .goeast-calendar-dates {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .goeast-time-slots {
        grid-template-columns: 1fr;
        gap: 10px;
        max-height: 300px;
        overflow-y: auto;
        padding: 12px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: #fafbfc;
    }
    
    .goeast-date-btn,
    .goeast-time-btn {
        padding: 12px 10px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .goeast-timezone-selector {
        margin-bottom: 16px;
    }
    
    .goeast-timezone-selector label {
        display: block;
        margin-bottom: 8px;
        text-align: center;
        font-size: 13px;
    }
    
    .goeast-timezone-selector select {
        width: 100%;
        max-width: 300px;
        padding: 12px;
        font-size: 16px; /* Prevents zoom */
    }
    
    /* Mobile social proof - more compact */
    .goeast-social-proof-stats {
        gap: 12px;
        margin-bottom: 6px;
    }
    
    .goeast-stat-number {
        font-size: 14px;
    }
    
    .goeast-stat-label {
        font-size: 8px;
    }
    
    .goeast-trust-signals {
        gap: 8px;
        padding: 6px;
        margin: 6px 0 4px;
    }
    
    .goeast-trust-item {
        font-size: 9px;
        gap: 2px;
    }
    
    /* Mobile buttons */
    .goeast-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .goeast-form-navigation {
        margin-top: 20px;
        padding-top: 16px;
        border-top: 2px solid #e5e7eb;
    }
    
    /* Mobile testimonials and info boxes */
    .goeast-testimonial-compact {
        margin: 12px 0;
        padding: 12px;
    }
    
    .goeast-testimonial-content {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .goeast-testimonial-author {
        font-size: 11px;
    }
    
    .goeast-info-box-compact {
        margin: 12px 0;
        padding: 12px;
    }
    
    .goeast-info-box-compact h3 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .goeast-info-list-compact {
        font-size: 11px;
    }
    
    /* Mobile WhatsApp support */
    .goeast-whatsapp-support {
        margin-top: 16px;
        padding-top: 12px;
    }
    
    .goeast-whatsapp-support p {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .goeast-whatsapp-link {
        font-size: 11px;
        padding: 8px 12px;
        min-height: 40px;
    }
    
    /* Mobile skills section */
    .goeast-skills-quick-options {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .goeast-quick-skill-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .goeast-input-hint {
        font-size: 11px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .goeast-booking-container {
        padding: 8px;
    }
    
    .goeast-form-header {
        padding: 12px 16px 10px;
    }
    
    .goeast-form-header h1 {
        font-size: 18px;
    }
    
    .goeast-form-header p {
        font-size: 11px;
    }
    
    .goeast-form-content {
        padding: 12px 16px 10px;
    }
    
    .goeast-form-group {
        margin-bottom: 10px;
    }
    
    .goeast-option-grid-compact {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .goeast-option-button {
        padding: 8px 6px;
        font-size: 11px;
        min-height: 40px;
    }
    
    .goeast-course-option {
        padding: 10px 8px;
        min-height: 70px;
    }
    
    .goeast-course-title {
        font-size: 12px;
    }
    
    .goeast-course-description {
        font-size: 10px;
    }
    
    .goeast-calendar-dates {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .goeast-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .goeast-form-navigation {
        margin-top: 16px;
        padding-top: 12px;
    }
    
    .goeast-success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* Large desktop optimizations */
@media (min-width: 1200px) {
    .goeast-booking-container {
        padding: 60px 20px;
    }
    
    .goeast-form-header {
        padding: 28px 40px 24px;
    }
    
    .goeast-form-header h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .goeast-form-header p {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .goeast-form-content {
        padding: 28px 40px 24px;
    }
    
    .goeast-step-title {
        font-size: 26px;
        margin-bottom: 10px;
    }
    
    .goeast-step-subtitle {
        font-size: 17px;
        margin-bottom: 24px;
    }
    
    .goeast-form-group {
        margin-bottom: 18px;
    }
    
    .goeast-form-group label {
        font-size: 15px;
        margin-bottom: 7px;
    }
    
    .goeast-form-group input[type="text"],
    .goeast-form-group input[type="email"],
    .goeast-form-group input[type="tel"],
    .goeast-form-group select,
    .goeast-form-group textarea {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .goeast-option-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
    }
    
    .goeast-option-button {
        padding: 14px 12px;
        font-size: 14px;
    }
    
    .goeast-course-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 14px;
    }
    
    .goeast-course-option {
        padding: 16px 14px;
    }
    
    .goeast-course-title {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .goeast-course-description {
        font-size: 13px;
    }
    
    .goeast-calendar-dates {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .goeast-time-slots {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 14px;
        max-height: 280px;
        padding: 16px;
    }
    
    .goeast-date-btn,
    .goeast-time-btn {
        padding: 14px 12px;
        font-size: 15px;
    }
    
    .goeast-btn {
        padding: 14px 28px;
        font-size: 15px;
        min-height: 48px;
    }
    
    .goeast-form-navigation {
        margin-top: 28px;
        padding-top: 20px;
    }
    
    /* Large desktop skills section */
    .goeast-skills-quick-options {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 12px;
    }
    
    .goeast-quick-skill-btn {
        padding: 14px 18px;
        font-size: 15px;
    }
}

/* Focus States for Better Accessibility */
.goeast-form-group input:focus,
.goeast-form-group select:focus,
.goeast-form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(241, 90, 101, 0.1) !important;
}

.goeast-option-button:focus,
.goeast-course-option:focus,
.goeast-date-btn:focus,
.goeast-time-btn:focus {
    outline: 2px solid #f15a65;
    outline-offset: 2px;
}

.goeast-btn:focus {
    outline: 2px solid #f15a65;
    outline-offset: 2px;
}

/* Enhanced Error and Success Styling */
.goeast-form-group.error input,
.goeast-form-group.error select,
.goeast-form-group.error textarea {
    border-color: #ef4444;
    background: #fef2f2;
}

.goeast-form-group.success input,
.goeast-form-group.success select,
.goeast-form-group.success textarea {
    border-color: #2FC774;
    background: #f0fdf4;
}

/* Enhanced form field indicators */
.goeast-required {
    color: #dc2626;
    font-weight: 600;
    margin-left: 2px;
}

.goeast-optional {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.9em;
    margin-left: 4px;
}

.goeast-input-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
    line-height: 1.4;
}

/* Quick skills selection */
.goeast-skills-quick-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.goeast-quick-skill-btn {
    padding: 12px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #374151;
    position: relative;
    overflow: hidden;
}

.goeast-quick-skill-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.goeast-quick-skill-btn.selected {
    background: #fef3ec;
    border-color: #f15a65;
    color: #c53030;
    box-shadow: 0 2px 8px rgba(241, 90, 101, 0.2);
}

.goeast-quick-skill-btn.selected::after {
    content: '✓';
    position: absolute;
    top: 6px;
    right: 8px;
    color: #f15a65;
    font-weight: bold;
    font-size: 12px;
}

.goeast-skills-input-section {
    margin-top: 16px;
}

.goeast-skills-custom-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

/* Enhanced required field styling */
label {
    font-weight: 600;
    color: #1f2937;
}

.goeast-form-group.error label {
    color: #dc2626;
}

.goeast-form-group.success label {
    color: #059669;
}

/* Enhanced error states */
.goeast-error-message {
    color: #dc2626;
    font-size: 13px;
    margin-top: 4px;
    font-weight: 500;
    min-height: 18px;
}

.goeast-form-group.error input,
.goeast-form-group.error textarea,
.goeast-form-group.error select {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.goeast-form-group.success input,
.goeast-form-group.success textarea,
.goeast-form-group.success select {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Loading States */
.goeast-form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.goeast-loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Print styles */
@media print {
    .goeast-booking-container {
        padding: 0;
        min-height: auto;
    }
    
    .goeast-booking-form {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .goeast-form-header {
        background: #f15a65 !important;
        color: white !important;
    }
    
    .goeast-whatsapp-support,
    .goeast-form-navigation {
        display: none;
    }
}