/* Global Styles & Variables */
:root {
    --primary-color: #5b21b6;
    --secondary-color: #eab308;
    --bg-light: #ffffff;
    --bg-dark: #0a0a0a;
}

/* Utilities */
.hero-gradient {
    background: linear-gradient(to right, #fdf4ff 0%, #fff 100%);
}

.dark .hero-gradient {
    background: linear-gradient(to right, #0f0f0f 0%, #1a1a1a 100%);
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.text-shadow-sm {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Thank You Page Specific */
.thank-you-body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: #0A1F33;
    color: #ffffff;
}

.thank-you-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thank-you-card {
    max-width: 640px;
    background: #ffffff;
    color: #0A1F33;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.thank-you-card h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 12px;
}

.thank-you-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}

.thank-you-badge {
    display: inline-block;
    background: #C5A059;
    color: #0A1F33;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.thank-you-cta {
    display: inline-block;
    background: #0A1F33;
    color: #C5A059;
    padding: 16px 32px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.15em;
    font-size: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.thank-you-cta:hover {
    background: #C5A059;
    color: #0A1F33;
}

.thank-you-sub {
    margin-top: 18px;
    font-size: 12px;
    color: #888;
}

/* Policy Pages Specific (Privacy, Disclaimer, Terms) */
.policy-body {
    width: 95%;
    margin: 20px auto;
    max-width: 800px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

.policy-body h3,
.policy-body h4 {
    color: #5b21b6;
    margin-top: 30px;
    margin-bottom: 10px;
}

.policy-body p {
    text-align: justify;
    margin-top: 0;
    padding-top: 5px;
}

.policy-body a {
    text-decoration: none;
    font: inherit;
    color: inherit;
}

.policy-body a:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal-overlay {
    backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-hidden .modal-content {
    transform: scale(0.9) translateY(20px);
}

/* Footer Refinement Styles */
.footer-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0a2a 100%);
}

.footer-compliance-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(234, 179, 8, 0.1);
    backdrop-filter: blur(4px);
}

.footer-link-premium {
    position: relative;
    transition: color 0.3s ease;
}

.footer-link-premium::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-link-premium:hover::after {
    width: 100%;
}

.footer-link-premium:hover {
    color: var(--secondary-color);
}

.social-icon-premium {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-premium:hover {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.4);
}

.footer-input-premium {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.footer-input-premium:focus {
    border-color: var(--secondary-color);
}

/* 404 Page Specific */
.error-page-body {
    background: #0A1F33;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    text-align: center;
}

.error-container {
    max-width: 600px;
    padding: 40px;
}

.error-title {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    margin: 0;
    color: #eab308;
    line-height: 1;
}

.error-subtitle {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin: 20px 0;
}

.error-text {
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.back-home {
    display: inline-block;
    background: #5b21b6;
    color: white;
    padding: 16px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: #eab308;
    color: #0A1F33;
}

/* Virtual Tour Styles */
.virtual-tour-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(91, 33, 182, 0.2);
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.virtual-tour-btn:hover {
    background: rgba(91, 33, 182, 0.1);
    border-color: rgba(91, 33, 182, 0.4);
    color: #5b21b6;
    transform: translateY(-2px);
}

.virtual-tour-btn.active {
    background: #5b21b6;
    border-color: #5b21b6;
    color: white;
    box-shadow: 0 4px 12px rgba(91, 33, 182, 0.3);
}

.virtual-tour-btn .material-symbols-outlined {
    font-size: 20px;
}

.virtual-room-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.virtual-room-img.active {
    opacity: 1;
    pointer-events: auto;
}