/* ============================================
   MERAVILLA POOL CITY - Campaign Styles
   Mobile-First, Classy Design
   ============================================ */

/* CSS Variables */
:root {
    --primary-dark: #0d0d2b;
    --primary-navy: #1a1a4e;
    --primary-blue: #2a2a6e;
    --gold: #C9A050;
    --gold-light: #d4b06a;
    --gold-dark: #a8843f;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray-light: #e0e0e0;
    --gray: #888888;
    --success: #4CAF50;
    --error: #ff4444;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(201, 160, 80, 0.4);
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--primary-dark);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Screen System */
.screen {
    display: none;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-navy) 50%, var(--primary-dark) 100%);
}

.screen.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease;
}

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

/* Hero Overlay - Subtle Pattern */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at top center, rgba(201, 160, 80, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom center, rgba(42, 42, 110, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Container */
.content {
    position: relative;
    z-index: 1;
    padding: 40px 24px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

/* Logo Styles */
.logo-placeholder {
    margin-bottom: 30px;
}

.logo-placeholder img {
    max-width: 180px;
    height: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 14px;
    letter-spacing: 8px;
    color: var(--white);
    font-weight: 400;
}

.logo-small {
    margin-bottom: 20px;
}

.logo-small img {
    max-width: 120px;
    height: auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.badge-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-dark);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    margin-bottom: 25px;
    line-height: 1.3;
}

.title-line {
    display: block;
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
}

.title-highlight {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 160, 80, 0.5);
    margin: 10px 0;
}

.title-sub {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-light);
    margin-top: 5px;
}

/* Hero Terms */
.hero-terms {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: 12px;
    padding: 15px 25px;
    margin-bottom: 25px;
}

.hero-terms p {
    font-size: 13px;
    color: var(--gray-light);
    margin: 3px 0;
}

/* Hero Bonus */
.hero-bonus {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.15) 0%, rgba(201, 160, 80, 0.05) 100%);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 35px;
}

.bonus-icon {
    font-size: 28px;
    animation: spin-slow 4s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-bonus p {
    font-size: 14px;
    color: var(--white);
    text-align: left;
}

.hero-bonus strong {
    color: var(--gold);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    max-width: 320px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-glow {
    animation: btn-glow 2s ease-in-out infinite;
}

@keyframes btn-glow {
    0%, 100% { box-shadow: var(--shadow-soft); }
    50% { box-shadow: var(--shadow-glow); }
}

.btn-arrow {
    width: 20px;
    height: 20px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    padding: 10px;
}

.limited-text {
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Form Styles */
.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: var(--gray-light);
}

.elegant-form {
    width: 100%;
    max-width: 360px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 160, 80, 0.1);
}

.form-group input::placeholder {
    color: var(--gray);
}

.phone-input {
    display: flex;
    align-items: stretch;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: rgba(201, 160, 80, 0.2);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-right: none;
    border-radius: 12px 0 0 12px;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
}

.phone-input input {
    border-radius: 0 12px 12px 0 !important;
}

.error-msg {
    display: block;
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
    min-height: 18px;
}

.privacy-note {
    margin-top: 20px;
    font-size: 11px;
    color: var(--gray);
    max-width: 300px;
}

/* OTP Styles */
.otp-header {
    margin-bottom: 30px;
}

.otp-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.otp-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.otp-header p {
    font-size: 14px;
    color: var(--gray-light);
}

.otp-email {
    color: var(--gold);
    font-weight: 600;
    margin-top: 5px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(201, 160, 80, 0.3);
    border-radius: 12px;
    color: var(--white);
    transition: var(--transition);
}

.otp-digit:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.resend-section {
    margin-top: 25px;
}

.resend-section p {
    font-size: 13px;
    color: var(--gray);
}

#timer {
    color: var(--gold);
    font-weight: 600;
}

/* Spin Wheel Styles */
.spin-content {
    justify-content: flex-start;
    padding-top: 30px;
}

.spin-header {
    margin-bottom: 20px;
}

.spin-header h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
}

.spin-header p {
    font-size: 14px;
    color: var(--gray-light);
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px auto;
}

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

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 8px var(--gold),
        0 0 0 12px var(--primary-navy),
        0 0 40px rgba(201, 160, 80, 0.4);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 0;
    transform-origin: 0% 100%;
    transform: rotate(calc(var(--i) * 72deg - 36deg)) skewY(-18deg);
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wheel-segment span {
    transform: skewY(18deg) rotate(36deg);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 30%;
    left: 10%;
}

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 4px solid var(--white);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

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

.spin-note {
    font-size: 13px;
    color: var(--gray);
    margin-top: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
    border: 2px solid var(--gold);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.result-icon {
    font-size: 60px;
    margin-bottom: 15px;
    animation: bounce 0.5s ease;
}

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

.modal-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.result-text {
    font-size: 16px;
    color: var(--gray-light);
}

.result-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin: 15px 0;
    text-shadow: 0 0 30px rgba(201, 160, 80, 0.5);
}

.result-sub {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 20px;
}

.result-note {
    background: rgba(201, 160, 80, 0.1);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.result-note p {
    font-size: 13px;
    color: var(--white);
    line-height: 1.5;
}

/* Confetti Animation */
.confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Reward Banner */
.reward-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.2) 0%, rgba(201, 160, 80, 0.1) 100%);
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

.reward-banner.compact {
    padding: 10px 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* Location Cards */
.location-header {
    margin-bottom: 20px;
}

.location-header h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 5px;
}

.location-header p {
    font-size: 14px;
    color: var(--gray-light);
}

.location-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-bottom: 25px;
}

.location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(201, 160, 80, 0.2);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.location-card:hover {
    border-color: rgba(201, 160, 80, 0.4);
    transform: translateY(-2px);
}

.location-card.selected {
    border-color: var(--gold);
    background: rgba(201, 160, 80, 0.1);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-badge.premium {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    color: white;
}

.card-badge.luxury {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
}

.card-image {
    height: 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-blue);
}

.kasara-bg {
    background: linear-gradient(135deg, #2d5a3d 0%, #1a3d2a 100%);
}

.shahapur-bg {
    background: linear-gradient(135deg, #4a3d6b 0%, #2d2548 100%);
}

.igatpuri-bg {
    background: linear-gradient(135deg, #6b4a3d 0%, #483025 100%);
}

.card-content {
    padding: 15px;
    text-align: left;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 5px;
}

.card-price {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 10px;
}

.card-features {
    list-style: none;
}

.card-features li {
    font-size: 12px;
    color: var(--gray-light);
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 10px;
}

.card-check {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.location-card.selected .card-check {
    display: flex;
}

/* Benefits Section */
.benefits-section {
    width: 100%;
    margin-bottom: 25px;
}

.benefits-section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 80, 0.15);
    border-radius: 12px;
    padding: 12px 15px;
    text-align: left;
}

.benefit-icon {
    font-size: 24px;
}

.benefit-item strong {
    display: block;
    font-size: 14px;
    color: var(--white);
}

.benefit-item p {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

/* Booking Section */
.booking-section {
    width: 100%;
    text-align: center;
}

.booking-section h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

.booking-section > p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.selected-location {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 160, 80, 0.1);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--white);
    font-weight: 600;
}

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

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    display: block;
    cursor: pointer;
}

.time-slot input {
    display: none;
}

.time-slot span {
    display: block;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(201, 160, 80, 0.2);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    text-align: center;
}

.time-slot span small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: var(--gray);
    margin-top: 3px;
}

.time-slot input:checked + span {
    border-color: var(--gold);
    background: rgba(201, 160, 80, 0.15);
}

/* Confirmation Screen */
.confirmation-content {
    justify-content: center;
}

.success-animation {
    margin-bottom: 25px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    position: relative;
}

.checkmark {
    width: 100%;
    height: 100%;
}

.checkmark-circle-bg {
    stroke: var(--gold);
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: var(--gold);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke {
    100% { stroke-dashoffset: 0; }
}

#screen-confirmation h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 8px;
}

.success-sub {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.booking-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

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

.summary-icon {
    font-size: 24px;
}

.summary-item label {
    display: block;
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.summary-item strong {
    font-size: 15px;
    color: var(--white);
}

/* Rewards Summary */
.rewards-summary {
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.15) 0%, rgba(201, 160, 80, 0.05) 100%);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    margin-bottom: 25px;
}

.rewards-summary h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
}

.reward-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
}

.reward-note {
    font-size: 11px;
    color: var(--gray);
    margin-top: 15px;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    width: 100%;
}

.contact-section p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin: 5px;
    transition: var(--transition);
}

.contact-btn:hover {
    background: rgba(201, 160, 80, 0.15);
    border-color: var(--gold);
}

.contact-btn.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25D366;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 43, 0.95);
    z-index: 200;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.loading-overlay.active {
    display: flex;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 160, 80, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.loading-overlay p {
    color: var(--gray-light);
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 380px) {
    .content {
        padding: 30px 16px;
    }

    .title-highlight {
        font-size: 36px;
    }

    .otp-digit {
        width: 42px;
        height: 50px;
        font-size: 20px;
    }

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

    .spin-btn {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }
}

/* Date input styling for mobile */
input[type="date"] {
    -webkit-appearance: none;
    appearance: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7);
    cursor: pointer;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* Selection styling */
::selection {
    background: var(--gold);
    color: var(--primary-dark);
}

/* ============================================
   BENEFITS SCREEN STYLES
   ============================================ */

/* Hero Image Section */
.hero-image-section {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.hero-image-section img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 13, 43, 0.95));
    padding: 30px 20px 20px;
}

.hero-image-overlay h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 5px;
}

.hero-image-overlay p {
    font-size: 14px;
    color: var(--gray-light);
}

/* Gallery Section */
.gallery-section {
    width: 100%;
    margin-bottom: 30px;
}

.gallery-section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 15px;
    text-align: left;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(201, 160, 80, 0.2);
    transition: var(--transition);
}

.gallery-grid img:hover {
    border-color: var(--gold);
    transform: scale(1.02);
}

/* Benefits Cards Grid */
.benefits-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--gold);
    background: rgba(201, 160, 80, 0.05);
}

.benefit-card .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.benefit-card h4 {
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.4;
}

/* Welcome Text */
.welcome-text {
    margin-bottom: 30px;
}

.welcome-text h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 8px;
}

.welcome-text h2 span {
    color: var(--gold);
}

.welcome-text p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Offer Highlight Box */
.offer-highlight {
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.2) 0%, rgba(201, 160, 80, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.offer-highlight h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 8px;
}

.offer-highlight p {
    font-size: 14px;
    color: var(--white);
}

.offer-highlight .spin-icon {
    font-size: 40px;
    margin-bottom: 10px;
    animation: spin-slow 4s linear infinite;
}

/* Benefits Page Specific */
.benefits-page {
    padding-top: 30px;
}

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-text h1 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.welcome-text h1 span {
    color: var(--gold);
}

/* Offer Card */
.offer-card {
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.15) 0%, rgba(201, 160, 80, 0.05) 100%);
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.offer-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 5px;
}

.gold-text {
    color: var(--gold);
}

.offer-subtitle {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.offer-terms {
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 12px 15px;
}

.offer-terms p {
    font-size: 12px;
    color: var(--gray-light);
    margin: 4px 0;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 10px 8px;
    font-size: 11px;
    color: var(--white);
    font-weight: 600;
}

/* Full Benefits Section */
.benefits-section-full {
    width: 100%;
    margin-bottom: 25px;
}

.benefits-section-full h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
    text-align: center;
}

.benefits-section-full .benefit-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 160, 80, 0.2);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 12px;
    text-align: left;
}

.benefit-icon-large {
    font-size: 32px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 3px;
}

.benefit-content p {
    font-size: 12px;
    color: var(--gray);
}

/* Spin Teaser */
.spin-teaser {
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.1) 0%, rgba(42, 42, 110, 0.3) 100%);
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
}

.spin-teaser-icon {
    font-size: 48px;
    margin-bottom: 10px;
    animation: spin-slow 4s linear infinite;
}

.spin-teaser h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
}

.spin-teaser p {
    font-size: 14px;
    color: var(--gray-light);
}

/* Location Card Image Update */
.location-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Coupon Offer Items */
.coupon-offer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 160, 80, 0.2);
}

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

.offer-icon {
    font-size: 28px;
}

.coupon-offer-item strong {
    display: block;
    font-size: 16px;
    color: var(--white);
}

.coupon-offer-item p {
    font-size: 12px;
    color: var(--gray);
    margin: 2px 0 0 0;
}

/* Booking Summary Update */
.booking-summary h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
    text-align: center;
}

/* ============================================
   COUPON SECTION STYLES
   ============================================ */

.coupon-section {
    width: 100%;
    margin: 25px 0;
}

.coupon-card {
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.15) 0%, rgba(201, 160, 80, 0.05) 100%);
    border: 3px dashed var(--gold);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 160, 80, 0.3) 0%, transparent 70%);
}

.coupon-header {
    margin-bottom: 15px;
}

.coupon-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-code-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary-dark);
    border: 2px solid rgba(201, 160, 80, 0.5);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.coupon-code-display span {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.copy-btn {
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.coupon-details {
    text-align: left;
}

.coupon-offer {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.coupon-offer h4 {
    font-family: var(--font-display);
    font-size: 28px;
    color: #4CAF50;
    margin-bottom: 5px;
}

.coupon-offer p {
    font-size: 13px;
    color: var(--gray-light);
}

.coupon-validity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 152, 0, 0.15);
    border: 1px solid rgba(255, 152, 0, 0.4);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.validity-icon {
    font-size: 32px;
}

.validity-text {
    flex: 1;
}

.validity-text strong {
    display: block;
    font-size: 16px;
    color: #FF9800;
    margin-bottom: 3px;
}

.validity-text p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.coupon-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(201, 160, 80, 0.2);
}

/* Toast Notification */
.copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--success);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.copy-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ============================================
   LOCATION CARD IMAGES
   ============================================ */

.location-card .card-image {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.location-card[data-location="kasara"] .card-image {
    background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=400&h=200&fit=crop');
}

.location-card[data-location="shahapur"] .card-image {
    background-image: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=400&h=200&fit=crop');
}

.location-card[data-location="igatpuri"] .card-image {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=400&h=200&fit=crop');
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 380px) {
    .benefits-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 150px;
    }

    .coupon-code-display span {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .coupon-offer h4 {
        font-size: 22px;
    }
}

/* ============================================
   3-SEGMENT WHEEL STYLES
   ============================================ */

.wheel.wheel-3 .wheel-segment {
    /* For 3 segments, each takes 120 degrees */
    transform: rotate(calc(var(--i) * 120deg - 60deg)) skewY(-30deg);
}

.wheel.wheel-3 .wheel-segment span {
    transform: skewY(30deg) rotate(60deg);
    font-size: 16px;
    font-weight: 700;
    top: 25%;
    left: 15%;
}

/* ============================================
   4-IMAGE GALLERY GRID
   ============================================ */

.gallery-grid.gallery-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid.gallery-4 .gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-grid.gallery-4 .gallery-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(201, 160, 80, 0.2);
    transition: all 0.3s ease;
}

.gallery-grid.gallery-4 .gallery-item:hover img {
    border-color: var(--gold);
    transform: scale(1.02);
}

/* ============================================
   OFFER CARD UPDATES
   ============================================ */

.offer-main-prize {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 5px;
}

/* ============================================
   SVG WHEEL STYLES
   ============================================ */

.wheel-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 8px var(--gold),
        0 0 0 12px var(--primary-navy),
        0 0 40px rgba(201, 160, 80, 0.4);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-svg text {
    font-family: var(--font-body);
    pointer-events: none;
}
