:root {
    --bg-color: #171717;
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --primary-red: #ef4444; 
    --hero-bg: #f8fafc;
    --font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-family);
    padding: 2.5rem 5rem;
    max-width: 1440px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.new-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    display: flex;
    gap: 5px;
}

.bar {
    width: 10px;
    height: 26px;
    border-radius: 2px;
}

.bar-red {
    background-color: var(--primary-red);
}

.bar-grey {
    background-color: #ccc;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text .name {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--text-white);
    line-height: 1.1;
}

.logo-text .sub {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    color: var(--text-gray);
    line-height: 1.1;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 1rem;
}

.flag-btn {
    background: none;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flag-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flag-btn:hover {
    transform: scale(1.1);
}

.flag-btn.active {
    border-color: var(--primary-red);
}

/* Hero Section */
.hero {
    background-color: var(--hero-bg);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7rem 5rem;
    color: #111;
    position: relative;
    overflow: hidden;
    margin-bottom: 6rem;
}

.hero-content {
    max-width: 50%;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #dc2626;
}

.btn-deco {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 14px;
    height: 14px;
    background-color: #fca5a5;
    border-radius: 2px;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply; /* Make the generated white background blend */
    z-index: 1;
}

.curve-text {
    position: absolute;
    z-index: 0;
}

.curve-1 {
    top: 15%;
    right: 15%;
    transform: rotate(20deg);
}

.curve-2 {
    bottom: -10%;
    left: 20%;
    transform: rotate(-10deg);
}

/* Story Section */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

.line {
    height: 1px;
    background-color: #3f3f46;
    flex: 0 0 120px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.story-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 380px;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card-image-container:hover img {
    transform: scale(1.05);
}

/* Reusable cutout mask effect */
.cutout-mask.top-right {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bg-color);
    padding: 0 0 20px 20px;
    border-bottom-left-radius: 40px;
    z-index: 2;
    min-width: 50px;
    min-height: 50px;
}

.cutout-mask.top-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-bottom-right-radius: 30px;
    box-shadow: 15px 0 0 0 var(--bg-color);
}
.cutout-mask.top-right::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-top-right-radius: 30px;
    box-shadow: 0 -15px 0 0 var(--bg-color);
}


.watch-reel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 10px 20px 10px 10px;
    border-radius: 30px;
    transform: translate(-10px, 10px);
}

.play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-icon {
    color: #111;
    font-size: 1rem;
    margin-left: 2px;
}

.reel-text {
    display: flex;
    flex-direction: column;
}

.reel-text strong {
    font-size: 0.9rem;
    color: #111;
}

.reel-text span {
    font-size: 0.75rem;
    color: #666;
}

.arrow-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s;
}

.center-float {
    position: absolute;
    top: 60%;
    left: 70%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.center-float:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.tags {
    display: flex;
    gap: 1rem;
}

.tag {
    padding: 0.4rem 1.2rem;
    border: 1px solid #3f3f46;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #d4d4d8;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.tag:hover {
    background-color: #3f3f46;
    border-color: #52525b;
    color: white;
}

/* Services Section */
.services-section {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

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

.accent-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.why-choose-us {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem;
    height: 100%;
}

.why-choose-us h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: rgba(239, 68, 68, 0.15); /* Tint of red */
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing Section */
.pricing-section {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.tab-btn {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid #333;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--text-white);
    border-color: #555;
}

.tab-btn.active {
    background-color: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
}

.pricing-grids-container {
    position: relative;
    min-height: 400px;
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    animation: fadeIn 0.5s ease;
}

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

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.pricing-card-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #27272a;
    padding-bottom: 1.5rem;
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
}

.pricing-freq {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-includes-label {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    font-weight: 600;
}

/* Schedule Section v2 */
.schedule-section {
    margin-top: 6rem;
    margin-bottom: 2rem;
}

#schedule-box {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid #333 !important;
    border-radius: 20px !important;
    padding: 3rem !important;
}

#schedule-box .calendar-container iframe {
    filter: invert(0.9) hue-rotate(180deg) brightness(0.95) contrast(1.1) !important;
    pointer-events: none !important;
}

#schedule-box .calendar-container {
    background-color: #171717 !important;
}

/* --- Premium Booking Lounge Design --- */
.booking-card {
    background: rgba(18, 18, 18, 0.8) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 3.5rem !important;
    max-width: 850px !important;
    margin: 0 auto !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.booking-card h3 {
    color: var(--text-white) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.5px !important;
    background: linear-gradient(to right, #fff, #a3a3a3) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.booking-form-v2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.booking-form-v2 .form-row {
    display: flex !important;
    gap: 1.5rem !important;
}

.booking-form-v2 .form-group-v2 {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
}

.booking-form-v2 label {
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--primary-red) !important;
    opacity: 0.9 !important;
    margin-left: 4px !important;
}

.booking-form-v2 input, 
.booking-form-v2 select {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.1rem 1.4rem !important;
    color: #fff !important;
    font-size: 1rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    width: 100% !important;
}

.booking-form-v2 input:hover, 
.booking-form-v2 select:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.booking-form-v2 input:focus, 
.booking-form-v2 select:focus {
    outline: none !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: var(--primary-red) !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15) !important;
}

/* Fix for white dropdown options */
.booking-form-v2 option {
    background-color: #1a1a1a !important;
    color: #fff !important;
    padding: 10px !important;
}

.booking-form-v2 optgroup {
    background-color: #111 !important;
    color: var(--primary-red) !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.schedule-btn-v2 {
    background: var(--primary-red) !important;
    color: #fff !important;
    padding: 1.2rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 1rem !important;
    box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3) !important;
}

.schedule-btn-v2:hover {
    background: #d43434 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 20px 25px -5px rgba(239, 68, 68, 0.4) !important;
}

.schedule-btn-v2:active {
    transform: translateY(0) !important;
}

/* Response messaging */
#form-feedback div {
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    animation: fadeIn 0.4s ease-out !important;
}

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

@media (max-width: 768px) {
    .booking-card { padding: 2rem 1.5rem !important; }
    .booking-form-v2 .form-row { flex-direction: column !important; gap: 2rem !important; }
}

.booking-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1.2rem 2.5rem !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    background-color: var(--primary-red) !important;
    color: white !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.booking-btn:hover {
    background-color: #d73a3a !important;
    transform: scale(1.05) !important;
}

.booking-btn svg {
    opacity: 0.8 !important;
}

@media (max-width: 768px) {
    .booking-card {
        padding: 2rem 1.5rem !important;
    }
    .booking-card h3 {
        font-size: 1.5rem !important;
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 4rem 2rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 4rem;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        transform: none;
        top: 0;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .curve-text {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 1.25rem;
    }
    .navbar {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .nav-links {
        overflow-x: auto;
        padding-bottom: 10px;
        width: 100%;
        justify-content: flex-start;
        gap: 1.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar {
        height: 4px;
    }
    .nav-links::-webkit-scrollbar-thumb {
        background-color: var(--primary-red);
        border-radius: 4px;
    }
    .hero {
        padding: 3rem 1.5rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .section-header h2 {
        font-size: 1.5rem;
    }
    .line {
        width: 100%;
        flex: 0 0 1px;
    }
    .story-card .card-image-container {
        height: 250px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .footer-content h2 {
        font-size: 1.5rem;
    }
}

/* Footer / Contact Section */
.footer {
    margin-top: 6rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid #27272a;
    text-align: center;
}

.footer-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.footer-content p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #27272a;
    color: var(--text-white);
    border: 1px solid #3f3f46;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.instagram-icon {
    width: 20px;
    height: 20px;
}


