/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    border: 1px solid transparent;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary) 30%, #a855f7 50%, var(--primary) 70%);
    background-size: 200% auto;
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    animation: shimmer 5s linear infinite;
}

.btn-primary:hover {
    background-position: 100% center;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.7);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: #fff;
}

.btn-whatsapp {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.btn-whatsapp:hover {
    background: rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 15px var(--success-glow);
    transform: translateY(-1px);
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 32px;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(124, 58, 237, 0.2);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    transition: all 0.6s;
}

.card:hover::after {
    left: 150%;
}


/* CHIPS (Checkboxes) */
.chips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.chip {
    position: relative;
    cursor: pointer;
    user-select: none;
}

.chip input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.chip-content {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chip input:checked ~ .chip-content {
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.chip-content b {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
    color: #fff;
}

.chip-content span {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-purple {
    background: rgba(124, 58, 237, 0.2);
    color: #e9d5ff;
    border: 1px solid rgba(124, 58, 237, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s var(--ease-out) forwards;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #0a0a0f;
    border: 1px solid var(--border-light);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal h2 {
    color: var(--primary-light);
    margin-bottom: 24px;
}

.modal h3 {
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.modal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Tabs for Booking Hub */
.booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    padding: 6px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
}

.tab-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.booking-form-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-form-section.active {
    display: block;
}

/* Custom Form Controls */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

/* Specific resets for input types */
input[type="date"].form-control,
input[type="time"].form-control,
select.form-control {
    cursor: pointer;
}

select.form-control option {
    background-color: #0a0a0f; /* Match site background */
    color: white;
}

/* Base Icon Styling */
.icon-svg {
    width: 1.2rem;
    height: 1.2rem;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: middle;
}

.btn .icon-svg {
    width: 1rem;
    height: 1rem;
}

::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
/* Custom Date/Time Selectors */
.custom-selector-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.date-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.date-strip::-webkit-scrollbar { display: none; }

.date-item {
    flex: 0 0 70px;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.date-item.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.date-item span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.date-item b {
    display: block;
    font-size: 1.1rem;
    color: white;
}
.date-item.active span, .date-item.active b { color: white; }

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
}

.time-slot {
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.time-slot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
}
