:root {
    --primary-yellow: #FFD200;
    --accent-blue: #40B5E8;
    --dark-blue: #1A1B4B;
    --light-gray: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    scroll-behavior:smooth;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: var(--dark-blue) !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO BACKGROUND */
.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:120%;
    object-fit:cover;
    z-index:0;

    transform:translate3d(0,0,0);
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-section{
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-section {
    background-image: url("./assets/images/bg/services.jpg");
}

.testimonial-section {
    background-image: url("./assets/images/bg/testimonial.jpg");
}

/* DARK OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.3);
    z-index:1;
}

/* CONTENT ABOVE VIDEO */
.hero-section .container{
    position:relative;
    z-index:2;
}

.hero-glass-container {
    border-radius: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.30) 0%, rgba(153, 153, 153, 0.30) 100%);
    /* backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 80px;
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.hero-content-inner {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-title {
    font-size: clamp(5rem, 18vw, 12rem);
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 0.85;
    letter-spacing: -0.04em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-book-now {
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background-color: #35a8d9;
    transform: translateY(-2px);
}

.btn-arrow-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bottom-pill {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    width: fit-content;
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.pill-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header / Navbar */
.menu-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Utilities */
.text-yellow { color: var(--primary-yellow); }
.bg-dark-blue { background-color: var(--dark-blue); }
.fw-black { font-weight: 900; }

.btn-accent {
    background-color: var(--accent-blue);
    color: white;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-accent:hover {
    background-color: #3599c5;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(64, 181, 232, 0.3);
}

.rounded-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Titles */
.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Explore Section Tabs */
.explore-tabs {
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.explore-tabs .nav-link {
    border: none;
    background: transparent;
    color: #888;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.explore-tabs .nav-link.active {
    color: var(--dark-blue);
    background: transparent;
}

.explore-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #40B5E8;
}

/* Explore Slider */
.explore-slider-container {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    padding: 1rem 0 3rem 0;
    cursor: grab;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.explore-slider-container:active {
    cursor: grabbing;
}

.explore-slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.explore-slider {
    display: flex;
    gap: 1.5rem;
    padding: 0;
    width: max-content;
    min-width: 100%;
    margin: 0;
}

.explore-card {
    flex: 0 0 calc((100vw - 8rem) / 2.75);
    min-width: 300px;
    height: 480px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .explore-card {
        flex: 0 0 300px;
        height: 400px;
    }
}

.explore-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.explore-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    background: white;
    padding: 1.25rem;
    /* border-radius: 16px; */
    border-top-right-radius: 16px;
    width: calc(100% - 40px);
    max-width: 300px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 2;
}

.explore-card-price {
    color: #40B5E8;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.explore-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--dark-blue);
}

.explore-card-meta {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

/* Blog Slider */
.blog-slider-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0 3rem 0;
    cursor: grab;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.blog-slider-container::-webkit-scrollbar {
    display: none;
}

.blog-slider {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    width: max-content;
    min-width: 100%;
}

.blog-card {
    flex: 0 0 calc((100vw - 8rem) / 2.75);
    min-width: 320px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 300px;
        height: 420px;
    }
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-content-wrapper {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 2;
}

.blog-card-label {
    background: var(--dark-blue);
    color: white;
    padding: 1rem 0.5rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 8px 0 0 8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.blog-card-content {
    background: white;
    padding: 2rem;
    border-radius: 12px 0 0 12px;
    width: 280px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .blog-card-content {
        width: 220px;
        padding: 1.5rem;
    }
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.blog-card-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-card-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #40B5E8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card-link:hover {
    gap: 0.75rem;
}

/* Testimonial Slider */
.testimonial-slider-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2rem 0;
    cursor: grab;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.testimonial-slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    width: max-content;
    min-width: 100%;
}

.testimonial-card {
    flex: 0 0 calc((100vw - 8rem) / 3);
    min-width: 350px;
    background: #F0F9FF; /* Light blue background */
    padding: 3rem 2.5rem;
    border-radius: 4px;
    scroll-snap-align: start;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc((100vw - 4rem) / 2);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 320px;
        padding: 2rem;
    }
}

.testimonial-quote-icon {
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

.testimonial-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1E293B;
}

.testimonial-rating {
    color: #FBBF24;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1E293B;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: #F1F5F9;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-nav-btn:hover {
    background: #E2E8F0;
    color: #1E293B;
    transform: scale(1.05);
}

/* Scenarios Slider */
.scenarios-slider-container {
    overflow: hidden;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.scenarios-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.scenarios-track:hover {
    animation-play-state: paused;
}

.scenario-item {
    width: 350px;
    height: 350px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.scenario-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenario-item:hover img {
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 5 - 1.5rem * 5)); }
}

/* Newsletter & Footer */
.newsletter-section {
    padding: 6rem 0;
    background-color: var(--dark-blue);
}

.newsletter-input-group {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 0;
    width: 100%;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-btn {
    background: transparent;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0 0 0 1rem;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.newsletter-btn:hover {
    opacity: 0.8;
}

.footer-social-container {
    margin-top: 4rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.footer-social-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.footer-social-link {
    color: white;
    transition: transform 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    color: #40B5E8;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.footer-logo-container {
    margin-bottom: 2rem;
}

.footer-logo-text {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer-bottom-info {
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-info a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-info a:hover {
    color: #40B5E8;
}

.footer-dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-bottom-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-dot {
        display: none;
    }
}

/* Helpers */
.object-fit-cover { object-fit: cover; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.2em; }
.w-fit { width: fit-content; }
.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.z-n1 { z-index: -1; }
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }

/* Services Section Specifics */
.main-service-card {
    width: 100%;
    border-radius: 16px;
    min-height: 450px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.main-service-card, .stacked-card {
    display: flex;
    flex-direction: row;
}

.main-service-card > div:first-child, 
.stacked-card > div:first-child {
    flex: 1;
    width: 50%;
    background: #FAF8F5;
}

@media (max-width:768px){
    .main-service-card > div:first-child, 
    .stacked-card > div:first-child {
        width: 100%;
    }
}

.service-image-container {
    flex: 1;
    width: 50%;
    min-height: 450px;
}

@media (max-width: 768px) {

    .service-image-container{
        width: 100%;
        min-height: 220px;
    }

}

.stacked-card {
    position: absolute;
    /* width: 100%; */
    height: 100%;
    /* left: 0; */
    background: white;
    border-radius: 24px;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

/* @media (max-width:768px){

    .stacked-card{
        display:none;
    }

} */

.stacked-card-1 {
    bottom: -20px;
    opacity: 0.95;
    z-index: -1;
    width: 90%;
}

.stacked-card-2 {
    bottom: -40px;
    opacity: 0.7;
    z-index: -2;
    width: 80%;
}

.service-btn {
    border: 1px solid #1A1B4B;
    color: #1A1B4B;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 12px 28px;
    background: transparent;
}

@media (max-width:768px){
    .service-btn{
        width:100%;
        text-align:center;
    }
}

.service-btn:hover {
    background: #1A1B4B;
    color: white;
}

/* Navigation Controls */
.nav-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #F1F3F9;
    color: #1A1B4B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.8;
}

.nav-control-btn:hover {
    background: #e2e6f0;
    transform: scale(1.05);
}

.nav-page-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #40B5E8;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    border: 3px solid white;
    box-shadow: 0 0 0 1px #40B5E8;
}
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.h-screen { height: 100vh; }
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.-space-x-2 > * + * { margin-left: -0.5rem; }
/* Parallax Text Styles */
.parallax-text {
    display: inline-block;
    will-change: transform;
}
