/* pitcher-form.css - Styles for the Pitcher Registration Form */

/* Root variables for consistent theming */
:root {
    --cream: #EDEBDD;
    --dark-red: #630000;
    --dark-gray: #1B1717;
    --white: #FFFFFF;
    --success-green: #28a745;
    --error-red: #dc3545;
    --warning-yellow: #ffc107;
    --info-blue: #17a2b8;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
}

/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Century Gothic', 'Arial', sans-serif;
    background: var(--white);
    color: var(--dark-gray);
    height: 100vh;
    overflow: hidden;
    /* Hide scrollbar for all browsers */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Container and Layout */
.form-container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 350px;
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.logo {
    text-align: center;
    margin-bottom: 3rem;
}

.logo h1 {
    font-family: 'The Seasons', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.progress-steps {
    flex: 1;
    margin-bottom: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.step-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.step-item.completed {
    background: rgba(40, 167, 69, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 700;
    position: relative;
}

.step-item.active .step-number {
    background: var(--white);
    color: var(--dark-red);
}

.step-item.completed .step-number {
    background: var(--success-green);
    color: var(--white);
}

.step-item.completed .step-number::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
}

.step-item.completed .step-number span {
    display: none;
}

.step-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.step-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    flex-shrink: 0;
}

.footer-label {
    font-family: 'Playfair Display', serif;
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

.footer-company {
    font-family: 'Century Gothic', 'Arial', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
}

.footer-company a {
    color: var(--cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-company a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Main Content */
.main-content {
    flex: 1;
    background: var(--cream);
    padding: 3rem;
    overflow-y: auto;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.main-content::-webkit-scrollbar {
    display: none;
}

.form-section {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(27, 23, 23, 0.1);
    border: 3px solid rgba(99, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'The Seasons', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

/* Form Fields */
.form-field {
    margin-bottom: 2rem;
    position: relative;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.field-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.field-input {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid var(--cream);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: var(--white);
    font-family: 'Century Gothic', 'Arial', sans-serif;
}

.field-input:focus {
    outline: none;
    border-color: var(--dark-red);
    box-shadow: 0 0 0 3px rgba(99, 0, 0, 0.1);
}

.field-input.valid {
    border-color: var(--success-green);
}

.field-input.invalid {
    border-color: var(--error-red);
}

.field-error-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--error-red);
    font-size: 1.4rem;
    display: none;
    z-index: 10;
    animation: bounceIn 0.5s ease;
}

.field-error-icon.show {
    display: block;
}

@keyframes bounceIn {
    0% { transform: translateY(-50%) scale(0.3); opacity: 0; }
    50% { transform: translateY(-50%) scale(1.05); }
    70% { transform: translateY(-50%) scale(0.9); }
    100% { transform: translateY(-50%) scale(1); opacity: 1; }
}

/* Enhanced vibration effect */
@keyframes vibrateError {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

.field-vibrate {
    animation: vibrateError 0.6s ease-in-out;
    border-color: var(--error-red) !important;
    background: #ffeaea !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.3) !important;
}

.field-error {
    border-color: var(--error-red) !important;
    background: #ffeaea !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

/* Radio and Checkbox Groups */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.radio-item {
    position: relative;
}

.radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.radio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--dark-red);
}

.radio-item input[type="radio"]:checked + label .radio-card {
    border-color: var(--dark-red);
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.3);
}

.radio-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.radio-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.radio-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-card {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--dark-red);
}

.checkbox-item input[type="radio"]:checked + label .checkbox-card {
    border-color: var(--dark-red);
    background: var(--dark-red);
    color: var(--white);
}

.checkbox-icon {
    font-size: 1.5rem;
}

.checkbox-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Welcome Section */
.welcome-card {
    background: linear-gradient(135deg, var(--cream) 0%, #f5f3eb 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
    border: 2px solid rgba(99, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.welcome-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: floatBackground 30s linear infinite;
}

@keyframes floatBackground {
    0% { transform: translate(-25px, -25px) rotate(0deg); }
    100% { transform: translate(25px, 25px) rotate(360deg); }
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-red);
}

.welcome-description {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid var(--dark-red);
    position: relative;
    z-index: 2;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--dark-red);
    transform: scale(1.05);
}

.pricing-card.featured .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--dark-red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-red);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-red);
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 600;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
}

.nav-button {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Century Gothic', 'Arial', sans-serif;
}

.nav-button.primary {
    background: var(--dark-red);
    color: var(--white);
}

.nav-button.secondary {
    background: var(--cream);
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Section Content */
.section-content {
    display: none;
}

.section-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Messages */
.form-messages {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 500px;
    width: 90%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: none;
    animation: slideDown 0.3s ease;
}

.form-messages.show {
    display: block;
}

.form-messages.success {
    background: var(--success-green);
    color: var(--white);
    border-left: 5px solid #1e7e34;
}

.form-messages.error {
    background: var(--error-red);
    color: var(--white);
    border-left: 5px solid #bd2130;
}

.form-messages.warning {
    background: var(--warning-yellow);
    color: #212529;
    border-left: 5px solid #d39e00;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.close-message {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    float: right;
    margin-left: 1rem;
    opacity: 0.8;
}

.close-message:hover {
    opacity: 1;
}

/* Team and Business Details */
.team-details,
.business-details,
.experience-details,
.other-industry-container {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    animation: fadeIn 0.5s ease;
}

/* File Upload */
.file-upload-container {
    position: relative;
    margin-top: 1rem;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: block;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.file-upload-label:hover {
    border-color: var(--dark-red);
    background: rgba(99, 0, 0, 0.05);
}

.file-upload-content i {
    font-size: 2rem;
    color: var(--dark-red);
    margin-bottom: 1rem;
}

.file-upload-content span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.file-upload-content small {
    color: var(--dark-gray);
    opacity: 0.7;
}

.file-upload-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.file-upload-status.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
}

.file-upload-status.error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error-red);
    border: 1px solid var(--error-red);
}

/* Declaration Section */
.declaration-section {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.declaration-content {
    line-height: 1.8;
}

.declaration-content p {
    margin-bottom: 1.5rem;
}

.checkbox-agreement {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-agreement input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.checkbox-agreement label {
    font-weight: 500;
    line-height: 1.6;
}

.mobile-footer {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sidebar {
        width: 300px;
    }
    
    .form-section {
        padding: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .sidebar {
        width: 280px;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .form-section {
        padding: 2rem;
        margin: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .step-item {
        padding: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .step-info h3 {
        font-size: 1rem;
    }
    
    .step-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
        height: auto;
    }
    
    .form-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        padding: 1rem 1.5rem;
        justify-content: flex-start;
        min-height: auto;
        position: relative;
        background: linear-gradient(90deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    }
    
    .sidebar-content {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    /* Mobile Header */
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1rem;
    }
    
    .logo {
        margin-bottom: 0;
        text-align: center;
    }
    
    .logo img {
        width: 140px !important;
        margin-bottom: 0.5rem;
    }
    
    .logo p {
        font-size: 0.8rem;
        margin: 0;
        opacity: 0.9;
    }
    
    /* Horizontal Progress Capsules */
    .progress-steps {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 1rem 0;
        margin-bottom: 0;
        /* Hide horizontal scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Snap scrolling for better UX */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .progress-steps::-webkit-scrollbar {
        display: none;
    }
    
    .step-item {
        flex-shrink: 0;
        margin-bottom: 0;
        min-width: auto;
        padding: 0.6rem 1rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }
    
    .step-item.active {
        background: var(--white);
        color: var(--dark-red);
        border-color: var(--white);
    }
    
    .step-item.completed {
        background: var(--success-green);
        color: var(--white);
        border-color: var(--success-green);
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        margin-right: 0;
        font-size: 0.75rem;
        background: transparent;
        border: none;
    }
    
    .step-item.active .step-number {
        background: var(--dark-red);
        color: var(--white);
        border-radius: 50%;
    }
    
    .step-item.completed .step-number {
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
        border-radius: 50%;
    }
    
    .step-info {
        display: flex;
        align-items: center;
    }
    
    .step-info h3 {
        font-size: 0.8rem;
        margin-bottom: 0;
        font-weight: 600;
    }
    
    .step-info p {
        display: none; /* Hide subtitle on mobile capsules */
    }
    
    /* Hide sidebar footer on mobile - we'll add a separate mobile footer */
    .sidebar-footer {
        display: none;
    }
    
    .main-content {
        overflow-y: visible;
        height: auto;
        padding: 1rem;
        margin-bottom: 5rem; /* Space for mobile footer */
    }
    
    .form-section {
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(27, 23, 23, 0.08);
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        opacity: 0.8;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .field-input {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .field-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .nav-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .nav-button.secondary {
        order: 2;
    }
    
    .nav-button.primary {
        order: 1;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mobile-footer {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(90deg, var(--dark-red) 0%, var(--dark-gray) 100%);
        color: var(--white);
        text-align: center;
        padding: 1rem;
        z-index: 1000;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-footer-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .mobile-footer-label {
        opacity: 0.8;
    }
    
    .mobile-footer-link {
        color: var(--cream);
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .mobile-footer img {
        height: 8px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .field-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .step-item {
        min-width: 100px;
        padding: 0.6rem 0.8rem;
    }
    
    .step-info h3 {
        font-size: 0.8rem;
    }
    
    .step-info p {
        font-size: 0.7rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-footer-content {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 360px) {
    .step-item {
        padding: 0.4rem 0.6rem;
    }
    
    .step-info h3 {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .field-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .nav-button {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .mobile-footer-content {
        font-size: 0.7rem;
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .sidebar {
        padding: 1rem;
    }
    
    .progress-steps {
        padding: 0.5rem 0;
    }
    
    .step-item {
        min-width: 140px;
        padding: 0.6rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .logo img {
        width: 100px !important;
    }
    
    .step-item {
        min-width: 110px;
        padding: 0.5rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        margin-right: 0.5rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .field-input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}

/* Focus and accessibility improvements */
.field-input:focus,
.nav-button:focus,
input[type="radio"]:focus + label .radio-card,
input[type="checkbox"]:focus + label .checkbox-card {
    outline: 2px solid var(--dark-red);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .radio-card,
    .checkbox-card,
    .field-input {
        border-width: 3px;
    }
    
    .step-item.active {
        border: 3px solid var(--white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .sidebar,
    .navigation-buttons,
    .mobile-footer {
        display: none;
    }
    
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .form-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .section-content {
        display: block !important;
    }
}

/* ...existing code from pitcher-form.css... */

/* Additional styles for new pricing card */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pricing-card:nth-child(3) {
    border: 2px solid var(--info-blue);
}

.pricing-card:nth-child(3) .pricing-header h4 {
    color: var(--info-blue);
}

.pricing-card:nth-child(3) .price {
    color: var(--info-blue);
}

/* Team member forms enhanced styling */
.team-member-form {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--dark-red);
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member-header {
    color: var(--dark-red);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Pass selection enhanced styling */
.pass-member-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid var(--cream);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pass-member-card:hover {
    border-color: var(--dark-red);
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.15);
    transform: translateY(-2px);
}

.member-name {
    font-weight: 600;
    color: var(--dark-red);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pass-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.pass-option {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: var(--white);
}

.pass-option:hover {
    border-color: var(--dark-red);
    background: rgba(99, 0, 0, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pass-option.selected {
    border-color: var(--dark-red);
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 0, 0, 0.3);
}

.pass-option input[type="radio"] {
    display: none;
}

.pass-title {
    font-weight: 600;
    color: inherit;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.pass-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.pass-pricing {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.discounted-price {
    color: var(--dark-red);
    font-weight: 600;
    font-size: 1.2rem;
}

.pass-option.selected .discounted-price {
    color: var(--white);
}

.solo-price {
    color: var(--dark-red);
    font-weight: 600;
    font-size: 1.2rem;
}

.pass-option.selected .solo-price {
    color: var(--white);
}

.discount-badge {
    background: var(--success-green);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Enhanced pricing summary */
.pricing-summary {
    background: linear-gradient(135deg, var(--dark-red) 0%, var(--dark-gray) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.2);
}

.pricing-summary h4 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-row:last-child {
    border-bottom: none;
    margin-top: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.pricing-row.total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Enhanced file upload styling */
.file-upload-container {
    margin-top: 1rem;
}

.file-upload-label {
    display: block;
    padding: 2rem;
    border: 2px dashed var(--border-color);
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.file-upload-label:hover {
    border-color: var(--dark-red);
    background: rgba(99, 0, 0, 0.05);
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-content i {
    font-size: 2rem;
    color: var(--dark-red);
}

.file-upload-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.file-upload-content small {
    color: var(--dark-gray);
    opacity: 0.7;
}

.file-upload-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
    font-weight: 500;
}

.file-upload-status.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
    display: block;
}

.file-upload-status.error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error-red);
    border: 1px solid var(--error-red);
    display: block;
}

/* Payment section styling */
.payment-instructions {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.payment-info {
    margin: 1.5rem 0;
}

.payment-method h5 {
    color: var(--dark-red);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.upi-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--dark-red);
}

.detail-item {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.amount-display {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1.5rem;
    border: 2px solid var(--dark-red);
}

.amount-display h4 {
    color: var(--dark-red);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

#totalAmount {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Mobile responsive enhancements */
@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pass-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pass-member-card {
        padding: 1.5rem;
    }
    
    .pricing-summary {
        padding: 1.5rem;
    }
    
    .team-member-form {
        padding: 1.5rem;
    }
    
    .payment-instructions {
        padding: 1.5rem;
    }
    
    .upi-details {
        padding: 1rem;
    }
    
    .amount-display {
        padding: 1rem;
    }
    
    .pass-pricing {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pass-option {
        padding: 1rem;
    }
    
    .pass-title {
        font-size: 1rem;
    }
    
    .discounted-price,
    .solo-price {
        font-size: 1.1rem;
    }
    
    .pricing-row {
        font-size: 0.9rem;
    }
    
    .pricing-row:last-child {
        font-size: 1.1rem;
    }
}
