.ets-ticket-form-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.ets-ticket-form-container {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 0;
    box-shadow: none;
    max-width: 100%;
}

.ets-form-title {
    text-align: center;
    color: #2F7DFF;
    font-size: 36px;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.ets-form-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.ets-form {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ets-form-group {
    margin-bottom: 25px;
}

.ets-form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.ets-form-group label .required {
    color: #d63638;
}

.ets-form-group input[type="text"],
.ets-form-group input[type="email"],
.ets-form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.ets-form-group input:focus {
    outline: none;
    border-color: #2F7DFF;
    box-shadow: 0 0 0 3px rgba(47, 125, 255, 0.1);
}

.ets-form-group input.error {
    border-color: #d63638;
}

.ets-submit-button {
    width: 100%;
    padding: 18px 40px;
    background: #2F7DFF;
    color: #ffffff;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.ets-submit-button:hover {
    background: #1a5fd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 125, 255, 0.3);
}

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

.ets-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ets-button-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ets-button-loader .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: ets-spin 0.6s linear infinite;
}

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

.ets-form-message {
    padding: 18px 20px;
    border-radius: 0;
    margin-bottom: 25px;
    display: none;
    font-size: 15px;
    font-weight: 500;
}

.ets-form-message.success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
    display: block;
}

.ets-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
    display: block;
}

.ets-recaptcha-notice {
    text-align: center;
    margin-top: 25px;
    color: #666;
    font-size: 12px;
}

.ets-recaptcha-notice a {
    color: #2F7DFF;
    text-decoration: none;
}

.ets-recaptcha-notice a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .ets-ticket-form-container {
        padding: 40px 20px;
    }
    
    .ets-form-title {
        font-size: 28px;
    }
    
    .ets-form {
        max-width: 100%;
    }
    
    .ets-submit-button {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ets-ticket-form-container {
        padding: 30px 15px;
    }
    
    .ets-form-title {
        font-size: 24px;
    }
    
    .ets-form-group input[type="text"],
    .ets-form-group input[type="email"],
    .ets-form-group input[type="tel"] {
        padding: 12px 15px;
        font-size: 15px;
    }
}

/* Thank You Page Styles */
.ets-thank-you-page {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 80vh;
}

.ets-thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.ets-success-icon {
    margin: 0 auto 30px;
    animation: ets-scale-in 0.5s ease-out;
}

@keyframes ets-scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ets-thank-you-title {
    font-size: 42px;
    color: #28a745;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.ets-thank-you-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.ets-ticket-info-box {
    background: #f8f9fa;
    border: 2px dashed #2F7DFF;
    padding: 25px;
    margin: 40px 0;
}

.ets-ticket-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ets-ticket-code .ets-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.ets-ticket-code .ets-value {
    font-size: 28px;
    color: #2F7DFF;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
}

.ets-download-section {
    margin: 40px 0;
}

.ets-download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #2F7DFF;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.ets-download-button:hover {
    background: #1a5fd9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 125, 255, 0.4);
    color: #ffffff;
}

.ets-download-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.ets-event-details {
    margin: 50px 0;
    text-align: left;
}

.ets-section-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 25px 0;
    font-weight: 700;
    text-align: center;
}

.ets-event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ets-event-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #2F7DFF;
}

.ets-event-icon {
    flex-shrink: 0;
    color: #2F7DFF;
}

.ets-event-content {
    flex: 1;
}

.ets-event-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ets-event-value {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.ets-important-info {
    margin: 40px 0;
    padding: 25px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    text-align: left;
}

.ets-info-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #856404;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.ets-info-list {
    margin: 0;
    padding-left: 20px;
    color: #856404;
}

.ets-info-list li {
    margin: 8px 0;
    line-height: 1.6;
}

.ets-participant-details {
    margin: 40px 0;
    text-align: left;
}

.ets-section-subtitle {
    font-size: 20px;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.ets-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.ets-detail-item {
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid #2F7DFF;
}

.ets-detail-label {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ets-detail-value {
    display: block;
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.ets-footer-message {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.ets-footer-message p {
    font-size: 20px;
    color: #2F7DFF;
    font-weight: 600;
    margin: 0;
}

/* Responsive Thank You Page */
@media (max-width: 768px) {
    .ets-thank-you-page {
        padding: 40px 15px;
    }
    
    .ets-thank-you-container {
        padding: 40px 25px;
    }
    
    .ets-thank-you-title {
        font-size: 32px;
    }
    
    .ets-thank-you-subtitle {
        font-size: 16px;
    }
    
    .ets-ticket-code .ets-value {
        font-size: 22px;
    }
    
    .ets-download-button {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .ets-event-info {
        grid-template-columns: 1fr;
    }
    
    .ets-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ets-thank-you-container {
        padding: 30px 20px;
    }
    
    .ets-thank-you-title {
        font-size: 28px;
    }
    
    .ets-ticket-code {
        flex-direction: column;
        gap: 10px;
    }
    
    .ets-download-button {
        width: 100%;
        justify-content: center;
    }
}
