:root {
            --primary: #ff9869;
            --primary-light: #ffd2bd;
            --primary-dark: #e87b4b;
            --text-dark: #2c3e50;
            --text-gray: #5a6c7d;
            --bg-color: #fdfbf9;
            --white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.5);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.04);
            --border-radius: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: 'Outfit', sans-serif;
            color: var(--text-dark);
            line-height: 1.2;
        }

        /* App Container */
        .app-container {
            max-width: 480px;
            margin: 0 auto;
            min-height: 100vh;
            background: var(--bg-color);
            position: relative;
            box-shadow: 0 0 40px rgba(0,0,0,0.05);
            padding-bottom: 100px;
            overflow: hidden;
        }

        /* Background Effects */
        .bg-gradient {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at top right, rgba(255, 210, 189, 0.4), transparent 40%),
                        radial-gradient(circle at bottom left, rgba(255, 152, 105, 0.2), transparent 40%);
            pointer-events: none;
        }

        /* Hero Section */
        .hero {
            padding: 40px 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin-top: 10px;
        }

        .logo-container {
            width: 150px;
            height: 150px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
            overflow: hidden; /* Ensures corners of image are clipped */
            padding: 5px; /* Small padding inside white circle */
        }

        .logo-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

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

        .hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.05rem;
            color: var(--text-gray);
            font-weight: 400;
        }

        /* Swiper Gallery */
        .gallery-container {
            margin: 10px 0 30px;
            padding: 0 24px;
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .gallery-container.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .swiper {
            width: 100%;
            height: 220px;
            border-radius: 20px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .swiper-slide {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        .swiper-slide img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Cards */
        .section {
            padding: 0 24px 30px;
        }

        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--glass-border);
            border-radius: var(--border-radius);
            padding: 24px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
            /* Premium Animation Base */
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .glass-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .icon-box {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
        }

        /* Parking Highlight Badge */
        .parking-badge {
            background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            color: #2e7d32;
            padding: 12px 16px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 0.95rem;
            margin-top: 16px;
            border: 1px solid rgba(76, 175, 80, 0.2);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
        }
        
        .parking-badge i {
            font-size: 1.5rem;
        }

        /* Lists inside cards */
        .info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .info-list i {
            color: var(--primary);
            font-size: 20px;
            margin-top: 2px;
        }

        .price-tag {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-dark);
            text-align: center;
            margin: 10px 0;
            font-family: 'Outfit', sans-serif;
        }

        .price-sub {
            text-align: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Action Buttons */
        .btn-group {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .btn {
            flex: 1;
            padding: 14px;
            border-radius: 16px;
            border: none;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary-dark);
        }

        .btn-outline:active {
            background: var(--primary-light);
        }

        /* Floating Action Button (FAB) */
        .fab-container {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 480px;
            padding: 0 24px;
            z-index: 90;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            width: 100%;
            padding: 16px;
            border-radius: 20px;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(232, 123, 75, 0.4);
            border: none;
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        /* Bottom Sheet (Modal) */
        .bottom-sheet-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .bottom-sheet {
            position: fixed;
            bottom: -100%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 480px;
            max-height: 90vh;
            background: var(--bg-color);
            border-radius: 32px 32px 0 0;
            z-index: 101;
            transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.05);
            display: flex;
            flex-direction: column;
            box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
        }

        .bottom-sheet-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .bottom-sheet-overlay.active .bottom-sheet {
            bottom: 0;
        }

        .sheet-header {
            padding: 20px 24px 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            background: var(--bg-color);
            border-radius: 32px 32px 0 0;
            z-index: 102;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .sheet-handle {
            width: 40px;
            height: 5px;
            background: #ddd;
            border-radius: 10px;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .sheet-content {
            padding: 20px 24px 40px;
            overflow-y: auto;
            flex: 1;
        }

        .close-btn {
            background: #eee;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-gray);
            transition: background 0.3s;
        }
        
        .close-btn:active {
            background: #ddd;
        }

        /* Form Styles */
        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-family: 'Outfit', sans-serif;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid transparent;
            background: var(--white);
            border-radius: 16px;
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(255, 152, 105, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 100px;
        }

        .input-group {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
        }

        .input-group .form-control {
            flex: 1;
        }
        
        .section-divider {
            margin: 24px 0 16px;
            padding-bottom: 8px;
            border-bottom: 2px dashed #eee;
            color: var(--primary-dark);
            font-family: 'Outfit';
            font-weight: 700;
            font-size: 1.1rem;
        }

        /* Map Embed */
        .map-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-bottom: 20px;
            background: #eee;
        }
        
        .map-wrapper iframe {
            display: block;
            width: 100%;
            height: 300px;
            border: none;
        }

        /* Social buttons */
        .social-buttons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .btn-social {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-decoration: none;
            transition: transform 0.3s;
            box-shadow: var(--shadow-sm);
        }
        
        .btn-social:active {
            transform: scale(0.9);
        }

        .btn-whatsapp { background: #25D366; }
        .btn-facebook { background: #1877F2; }
        .btn-maps { background: #34A853; color: white; border: none; }
        .btn-waze { background: #33CCFF; color: white; border: none; }
        .btn-share { background: var(--text-gray); color: white; border: none; }

/* Toast Notification */
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) translateY(100px); background: #333; color: white; padding: 12px 24px; border-radius: 30px; font-weight: 500; font-size: 0.95rem; opacity: 0; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); z-index: 9999; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Glass Card Hover */
@media (hover: hover) {
    .glass-card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        border-color: rgba(255, 255, 255, 0.8);
    }
}

/* Floating Labels */
.floating-label {
    position: relative;
    margin-bottom: 20px;
}
.floating-label .form-control {
    width: 100%;
    padding: 20px 16px 8px 16px;
    border: 2px solid transparent;
    background: var(--white);
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.floating-label .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 152, 105, 0.1);
}
.floating-label label {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease all;
}
.floating-label textarea.form-control + label {
    top: 20px;
    transform: none;
}
.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label {
    top: 10px;
    transform: translateY(-50%) scale(0.85);
    transform-origin: left top;
    color: var(--primary-dark);
    font-weight: 600;
}
/* Validation States */
.form-control.is-valid {
    border-color: #4caf50;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%234caf50' d='M173.66,98.34a8,8,0,0,1,0,11.32l-56,56a8,8,0,0,1-11.32,0l-24-24a8,8,0,0,1,11.32-11.32L112,148.69l50.34-50.35A8,8,0,0,1,173.66,98.34ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88,88,0,1,0-88,88A88.1,88.1,0,0,0,216,128Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px;
}
.form-control.is-invalid {
    border-color: #f44336;
    animation: shake 0.4s 1 linear;
}
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/* Payment Info inside Modal */
.payment-card {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}
.bank-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f218e;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

/* Fixed Share Button */
.share-btn-fixed {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 22px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 50;
    transition: all 0.3s ease;
}
.share-btn-fixed:active {
    transform: scale(0.9);
}

/* Premium Card (Dates) */
.card-premium {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: var(--border-radius);
    background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box,
                linear-gradient(135deg, #ffd2bd, #ff9869, #e87b4b) border-box;
    box-shadow: 0 10px 30px rgba(255, 152, 105, 0.2);
}
.card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 152, 105, 0.05), transparent 70%);
    border-radius: var(--border-radius);
    pointer-events: none;
}
.card-premium .icon-box {
    background: linear-gradient(135deg, #ffb347, #ff7b00);
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.3);
}

.date-badge {
    background: #fff;
    border: 1px solid rgba(255, 152, 105, 0.3);
    padding: 12px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    margin-bottom: 10px;
}
.date-badge i {
    color: #ff7b00;
    font-size: 1.2rem;
}

/* Multi-step Form */
.progress-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    padding: 0 10px;
}
.progress-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
    border-radius: 2px;
}
.progress-bar-fill {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    background: var(--primary);
    z-index: 2;
    transition: 0.4s ease;
    border-radius: 2px;
    width: 0%;
}
.step-circle {
    width: 30px;
    height: 30px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    z-index: 3;
    transition: 0.4s ease;
    border: 3px solid var(--white);
}
.step-circle.active {
    background: var(--primary);
    color: white;
}
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}
.form-step.active {
    display: block;
}
.form-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes progressAnim {
    0% { transform: translateX(-100%); width: 50%; }
    100% { transform: translateX(200%); width: 50%; }
}

/* Dark Theme Bottom Sheet (Yarvik Pay Style) */
.bottom-sheet-dark {
    background: #0d0d0d !important;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.8) !important;
}
.bottom-sheet-dark .sheet-header {
    background: #0d0d0d !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.bottom-sheet-dark .sheet-handle {
    background: rgba(255,255,255,0.2) !important;
}
.bottom-sheet-dark .close-btn {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
}
.bottom-sheet-dark .close-btn:active {
    background: rgba(255,255,255,0.2) !important;
}
.btn-card-action {
    background: white;
    color: black !important;
    border-radius: 18px;
    padding: 14px 22px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: inline-flex;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: none;
}
.btn-card-action:active {
    transform: scale(0.96);
    opacity: 0.9;
}

/* ── Hero Single Image ── */
.hero-image-container {
    margin: 0 24px 30px;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image-container.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-single-img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ── Payment Badges ── */
.payment-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 18px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: default;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.payment-badge:active {
    transform: scale(0.97);
}

.payment-badge i {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.payment-badge-cash {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #1b5e20;
    border: 1.5px solid rgba(76, 175, 80, 0.25);
}

.payment-badge-cash i {
    color: #2e7d32;
}

.payment-badge-transfer {
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    color: #1a237e;
    border: 1.5px solid rgba(63, 81, 181, 0.25);
}

.payment-badge-transfer i {
    color: #283593;
}

/* ── Payment Note ── */
.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 152, 105, 0.08);
    border: 1.5px solid rgba(255, 152, 105, 0.3);
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
    line-height: 1.5;
}

.payment-note i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}
