/* Admission Page Styles - Optimized for Lead Generation */

/* ============================================
   Hero Section
   ============================================ */
.admission-hero {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('/media/events/admission/hero-bg.jpg') center center / cover no-repeat;
}

.admission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 228, 69, 0.96) 0%, rgba(255, 200, 60, 0.96) 100%);
    pointer-events: none;
}

.admission-hero .container {
    position: relative;
    z-index: 1;
}

.hero-pre-title {
    display: inline-block;
    font-size: 14px;
    color: #001353;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 50px;
}

.hero-eyebrow {
    font-size: 14px;
    color: #001353;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hero-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #001353;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 26px;
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-description {
    font-size: 17px;
    color: #333;
    max-width: 550px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* Location Badges */
.hero-locations {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    color: #001353;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.hero-location-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.location-map-badge {
    font-size: 11px;
    font-weight: 600;
    background: #0066cc;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 4px;
    transition: background 0.2s ease;
}

.hero-location-badge:hover .location-map-badge {
    background: #0052a3;
}

.location-icon {
    font-size: 16px;
}

.location-dates {
    font-weight: 700;
}

.location-divider {
    color: #ccc;
}

.location-place {
    font-weight: 500;
}

/* Countdown Timer */
.countdown-container {
    margin: 20px auto;
    max-width: 380px;
}

.countdown-label {
    font-size: 11px;
    color: #001353;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.countdown-item {
    background: white;
    border-radius: 8px;
    padding: 10px 14px;
    min-width: 58px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.countdown-number {
    font-size: 24px;
    font-weight: 800;
    color: #0066cc;
    line-height: 1;
}

.countdown-unit {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
}

/* Hero CTA Button */
.hero-cta {
    margin: 25px 0 15px;
}

.btn-hero {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 16px 75px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    font-family: var(--font-primary);
}

.btn-hero:hover {
    background: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4); }
    50% { box-shadow: 0 6px 30px rgba(0, 102, 204, 0.6); }
}

.hero-trust-text {
    font-size: 13px;
    color: #001353;
    font-weight: 500;
    margin-top: 10px;
}

/* ============================================
   Trust Badges Section
   ============================================ */
.trust-section {
    background: white;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.trust-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
}

.trust-icon {
    font-size: 18px;
}

.trust-text {
    font-size: 13px;
    color: #333;
}

.trust-text strong {
    font-weight: 700;
    color: #001353;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

/* ============================================
   Target Segment Section (Is This For You?)
   ============================================ */
.target-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.section-title,
.target-section .section-title,
.priority-destinations-section .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #001353;
    margin-bottom: 40px;
    border-bottom: none;
    display: block;
    width: 100%;
}

.target-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
    align-items: stretch;
}

.target-card {
    background: white;
    border-radius: 16px;
    padding: 30px 28px 28px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.target-card-red {
    border-top-color: #FF6B6B;
}

.target-card-teal {
    border-top-color: #4ECDC4;
}

.target-card-purple {
    border-top-color: #667eea;
}

.target-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.target-card-red .target-card-icon {
    background: #FFE5E5;
    color: #FF6B6B;
}

.target-card-teal .target-card-icon {
    background: #E0F7F6;
    color: #4ECDC4;
}

.target-card-purple .target-card-icon {
    background: #EEF0FF;
    color: #667eea;
}

.target-card-icon svg {
    width: 26px;
    height: 26px;
}

.target-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #001353;
    margin-bottom: 18px;
    line-height: 1.3;
}

.target-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    text-align: left;
    flex-grow: 1;
}

.target-card-list li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
}

.target-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Checkmark bullets with card-specific colors */
.target-card-red .target-card-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF6B6B'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.target-card-teal .target-card-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234ECDC4'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.target-card-purple .target-card-list li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23667eea'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.target-card-cta {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.target-card-red .target-card-cta {
    color: #FF6B6B;
}

.target-card-teal .target-card-cta {
    color: #4ECDC4;
}

.target-card-purple .target-card-cta {
    color: #667eea;
}

.btn-target-register {
    display: inline-block;
    background: #0066cc;
    color: white;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    min-width: 150px;
}

.btn-target-register:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

/* ============================================
   Priority Destinations Section
   ============================================ */
.priority-destinations-section {
    background: white;
    padding: 50px 20px;
}

.priority-box {
    max-width: 700px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 16px;
    padding: 25px;
    border: 2px solid #ffcdd2;
}

.priority-high {
    border-color: #ff8a80;
}

.priority-label {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.priority-destinations {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.priority-dest-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    min-width: 220px;
}

.priority-flag {
    font-size: 40px;
    border-radius: 4px;
}

.priority-dest-info h4 {
    font-size: 22px;
    font-weight: 700;
    color: #001353;
    margin: 0 0 4px;
}

.priority-dest-info p {
    font-size: 14px;
    color: #666;
    margin: 0 0 6px;
}

.priority-tag {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.priority-tag.tag-urgent {
    background: #FFF3E0;
    color: #E65100;
}

/* Other Destinations */
.other-destinations {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.other-dest-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.other-dest-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.dest-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.dest-pill:hover {
    border-color: #0066cc;
    background: #e8f4fd;
}

.dest-pill .fi {
    font-size: 18px;
}

.dest-pill small {
    font-size: 11px;
    color: #888;
    margin-left: 2px;
}

.dest-pill-secondary {
    background: #e3f2fd;
    border-color: #90caf9;
}

/* ============================================
   Benefits Section - Marquee
   ============================================ */
.benefits-section {
    background: #f8f9fa;
    padding: 50px 0;
    overflow: hidden;
}

.section-heading-sm {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #001353;
    margin-bottom: 30px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.benefits-marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.benefits-marquee {
    display: flex;
    gap: 20px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.benefits-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.benefit-card-new {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    min-width: 150px;
    flex-shrink: 0;
}

.benefit-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.benefit-icon-new {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon-new svg {
    width: 22px;
    height: 22px;
}

.benefit-text h3 {
    font-size: 13px;
    font-weight: 700;
    color: #001353;
    margin: 0 0 3px;
    line-height: 1.3;
}

.benefit-text p {
    font-size: 11px;
    color: #666;
    margin: 0;
    line-height: 1.3;
}

/* Color Variants */
.benefit-blue .benefit-icon-new {
    background: #E3F2FD;
    color: #1976D2;
}

.benefit-green .benefit-icon-new {
    background: #E8F5E9;
    color: #388E3C;
}

.benefit-orange .benefit-icon-new {
    background: #FFF3E0;
    color: #F57C00;
}

.benefit-pink .benefit-icon-new {
    background: #FCE4EC;
    color: #C2185B;
}

.benefit-teal .benefit-icon-new {
    background: #E0F2F1;
    color: #00796B;
}

.benefit-gold .benefit-icon-new {
    background: #FFF8E1;
    color: #FFA000;
}

/* ============================================
   Why Admizz Section
   ============================================ */
.why-admizz-section {
    background: linear-gradient(135deg, #001353 0%, #0066cc 100%);
    padding: 50px 20px;
    color: white;
}

.why-admizz-section .section-title {
    color: white;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 950px;
    margin: 0 auto 30px;
}

.why-card {
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

.why-card-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin: 0;
}

.why-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   Prizes Section
   ============================================ */
.prizes-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.prizes-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: #001353;
    margin-bottom: 40px;
}

.prizes-terms {
    text-align: center;
    font-size: 13px;
    margin-top: 30px;
    color: #888;
}

.spin-terms-note {
    text-align: center;
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 0;
    color: #888;
    font-style: italic;
    font-weight: 400;
}

/* Spin Wheel Layout */
.spin-wheel-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 850px;
    margin: 0 auto;
}

/* Left: Wheel */
.spin-wheel-left {
    flex-shrink: 0;
}

.wheel-container {
    position: relative;
    width: 340px;
    height: 340px;
}

.wheel-pointer {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #001353;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

#wheelCanvas {
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* Right: Content Panel */
.spin-wheel-right {
    flex: 1;
    max-width: 380px;
}

/* Content Panel */
.spin-content-panel {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spin-content-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.spin-gift-icon {
    font-size: 32px;
}

.spin-content-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #001353;
    margin: 0;
}

.spin-content-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.spin-prizes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.spin-prize-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.spin-prize-item span {
    font-size: 16px;
}

.spin-register-btn {
    width: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    border: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.spin-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

/* Form Panel */
.spin-form-panel {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spin-form-panel h3 {
    font-size: 20px;
    font-weight: 700;
    color: #001353;
    margin-bottom: 20px;
    text-align: center;
}

.spin-form-panel input,
.spin-form-panel select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    font-family: inherit;
}

.spin-form-panel input:focus,
.spin-form-panel select:focus {
    outline: none;
    border-color: #0066cc;
}

.spin-form-row {
    display: flex;
    gap: 10px;
}

.spin-form-row input,
.spin-form-row select {
    flex: 1;
}

.spin-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    cursor: pointer;
}

.spin-checkbox input {
    width: auto;
    margin: 0;
}

.spin-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spin-submit-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.spin-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spin-back-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin-top: 15px;
    padding: 5px;
}

.spin-back-btn:hover {
    color: #0066cc;
}

/* Spinning Panel */
.spin-spinning-panel {
    background: #fff;
    padding: 50px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.spinning-text {
    animation: pulse-text 1s ease infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.spinning-icon {
    font-size: 50px;
    display: block;
    margin-bottom: 15px;
}

.spin-spinning-panel h3 {
    font-size: 24px;
    color: #001353;
    margin-bottom: 10px;
}

.spin-spinning-panel p {
    font-size: 16px;
    color: #666;
}

/* Spin Result Modal */
.spin-result-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.spin-result-overlay.active {
    opacity: 1;
    visibility: visible;
}

.spin-result-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
}

.spin-result-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.spin-result-confetti {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bounce 0.6s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.spin-result-modal h2 {
    font-size: 28px;
    color: #001353;
    margin-bottom: 10px;
}

.spin-result-modal p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.spin-result-prize {
    font-size: 24px;
    font-weight: 800;
    color: #0066cc;
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.spin-result-note {
    font-size: 14px;
    color: #888;
}

.spin-result-btn {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.spin-result-btn:hover {
    background: #0052a3;
}

/* ============================================
   Remove footer margin on admission page
   ============================================ */
.footer {
    margin-top: 0;
}

/* ============================================
   Slide-in Registration Panel
   ============================================ */

/* Overlay */
.register-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.register-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Panel */
.register-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.register-panel.active {
    right: 0;
}

/* Panel Header */
.register-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #0066cc;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    flex-shrink: 0;
}

.register-panel-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Back Button - Hidden on desktop, shown on mobile */
.register-panel-back {
    display: none;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    margin-left: -12px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-primary);
    transition: opacity 0.2s;
}

.register-panel-back:hover {
    opacity: 0.8;
}

.register-panel-back svg {
    flex-shrink: 0;
}

.register-panel-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.register-panel-close:hover {
    opacity: 0.8;
}

/* Panel Body */
.register-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Back Bar - Hidden on desktop */
.mobile-back-bar {
    display: none;
}

/* Panel Form */
.register-panel-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Form Sections */
.form-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-submit {
    padding-top: 5px;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.form-section-icon {
    font-size: 16px;
}

.form-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.panel-form-row:last-child {
    margin-bottom: 0;
}

.panel-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.panel-form-row .panel-form-group {
    margin-bottom: 0;
}

.panel-form-group input,
.panel-form-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #fff;
}

.panel-form-group input:focus,
.panel-form-group select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.panel-form-group input::placeholder {
    color: #999;
}

.panel-form-group select {
    color: #333;
    cursor: pointer;
}

.panel-form-group select option[value=""] {
    color: #999;
}

/* Phone row specific */
.panel-form-country {
    flex: 0 0 45%;
}

.panel-form-phone {
    flex: 1;
}

/* Checkbox */
.panel-form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.panel-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.panel-form-checkbox label {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.panel-form-checkbox label a {
    color: #0066cc;
    text-decoration: none;
}

.panel-form-checkbox label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-panel-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    background: #FFD93D;
    color: #001353;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    margin-top: 10px;
}

.btn-panel-submit:hover {
    background: #FFC800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 217, 61, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .target-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .target-card {
        min-height: auto;
        padding: 28px 24px 24px;
    }

    .why-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .priority-destinations {
        flex-direction: column;
        gap: 15px;
    }

    .priority-dest-card {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .trust-inline {
        gap: 5px;
    }

    .trust-badge {
        padding: 6px 12px;
    }

    .trust-divider {
        display: none;
    }

    .benefits-marquee {
        animation-duration: 20s;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 15px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        padding: 10px 14px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 26px;
    }

    .section-title {
        font-size: 26px;
    }

    .target-card {
        padding: 24px 20px;
    }

    .priority-box {
        padding: 20px;
    }

    .why-trust-bar {
        font-size: 12px;
        gap: 10px;
    }

    .prizes-heading {
        font-size: 22px;
        padding: 0 10px;
    }

    /* Spin Wheel Mobile */
    .spin-wheel-layout {
        flex-direction: column;
        gap: 30px;
    }

    .wheel-container {
        width: 280px;
        height: 280px;
    }

    #wheelCanvas {
        width: 280px;
        height: 280px;
    }

    .spin-wheel-right {
        max-width: 100%;
        width: 100%;
    }

    .spin-content-panel,
    .spin-form-panel,
    .spin-spinning-panel {
        margin: 0 10px;
    }

    .spin-prizes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .spin-form-row {
        flex-direction: column;
        gap: 0;
    }

    .spin-result-modal {
        padding: 30px 20px;
    }

    .spin-result-confetti {
        font-size: 50px;
    }

    .spin-result-modal h2 {
        font-size: 24px;
    }

    .spin-result-prize {
        font-size: 20px;
        padding: 12px 20px;
    }

    .final-cta-section h2 {
        font-size: 24px;
    }

    /* Register Panel Mobile - Below site header */
    .register-panel {
        width: 100%;
        right: -100%;
        top: 80px; /* Below site header */
        left: auto;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
        border-radius: 0;
    }

    .register-panel.active {
        right: 0;
    }

    /* Show blue panel header on mobile */
    .register-panel-header {
        display: flex !important;
        padding: 15px 20px;
        position: relative;
    }

    .register-panel-back {
        display: flex !important;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 8px;
    }

    .register-panel-close {
        display: none !important;
    }

    .register-panel-header h2 {
        font-size: 16px;
        flex: 1;
        text-align: center;
        margin: 0;
        padding: 0 40px;
    }

    /* Hide mobile back bar (using blue header instead) */
    .mobile-back-bar {
        display: none !important;
    }

    /* Overlay doesn't cover site header */
    .register-panel-overlay {
        top: 80px;
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);
    }

    .panel-form-row {
        grid-template-columns: 1fr;
    }

    .register-panel-body {
        padding: 20px;
        flex: 1;
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .admission-hero {
        padding: 40px 15px 50px;
    }

    .hero-pre-title {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-main-title {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .countdown-item {
        padding: 8px 10px;
        min-width: 50px;
    }

    .countdown-number {
        font-size: 22px;
    }

    .countdown-unit {
        font-size: 10px;
    }

    .btn-hero {
        padding: 14px 35px;
        font-size: 15px;
    }

    .target-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .target-card-title {
        font-size: 16px;
    }

    .priority-destinations-section {
        padding: 40px 15px;
    }

    .priority-dest-info h4 {
        font-size: 18px;
    }

    .dest-pill {
        font-size: 13px;
        padding: 6px 12px;
    }

    .why-admizz-section {
        padding: 40px 15px;
    }

    .why-card {
        padding: 20px 15px;
    }

    .why-card h3 {
        font-size: 15px;
    }

    .why-card p {
        font-size: 13px;
    }

    .prizes-section {
        padding: 40px 15px;
    }

    .prizes-carousel {
        gap: 10px;
    }

    .prize-card-new {
        min-width: 85px;
        max-width: 85px;
        height: 130px;
        padding: 14px 8px;
    }

    .prize-card-icon {
        width: 45px;
        height: 45px;
    }

    .prize-card-name {
        font-size: 10px;
    }

    .final-cta-section {
        padding: 35px 15px;
    }

    .btn-final-cta {
        padding: 14px 30px;
        font-size: 15px;
    }
}
