/* ============================
   GLOBAL RESET
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    overflow-x: hidden;
}

/* ============================
   HERO SECTION
============================ */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: absolute;
    top: 25%;
    left: 8%;
    color: #fff;
    max-width: 850px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin: 20px 0;
}

.btn-main {
    background: #fff;
    color: #111;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-main:hover {
    opacity: 0.8;
}

/* ============================
   LUXURY INTRO SECTION
============================ */
.lux-section {
    padding: 70px 12%;
    background: #fff;
}

.lux-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.lux-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lux-text {
    font-size: 16px;
    line-height: 1.85;
    max-width: 800px;
    margin: 0 auto;
    color: #444;
}

/* ============================
   3D SLASH SECTION
============================ */
.slash-section-3d {
    position: relative;
    padding: 200px 8%;
    overflow: hidden;
}

.slash-bg-layer {
    position: absolute;
    width: 160%;
    height: 380px;
    left: -30%;
    transform: skewY(-8deg);
    z-index: -10;
}

.slash-bg-layer.layer1 {
    top: -120px;
    background: linear-gradient(135deg, #e6e6e6, #f8f8f8);
    filter: blur(4px);
}

.slash-bg-layer.layer2 {
    top: -180px;
    background: linear-gradient(135deg, #dcdcdc, #efefef);
    opacity: 0.6;
    filter: blur(10px);
}

.slash-container-3d {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.slash-card-3d {
    position: relative;
    padding: 60px;
    border-radius: 30px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12), inset 0 0 25px rgba(255,255,255,0.4);
    transition: 0.3s ease;
}

.slash-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
}

.slash-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.slash-card-3d.reverse .slash-content {
    flex-direction: row-reverse;
}

.slash-text-3d,
.slash-img-3d {
    width: 50%;
}

.slash-list-3d{
    margin-bottom:20px;
}

.slash-img-3d img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
    transition: 0.4s ease;
}

.slash-card-3d:hover .slash-img-3d img {
    transform: rotateY(8deg) rotateX(4deg) scale(1.05);
}

/* FLOATING DECOR SHAPES */
.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(3px);
    animation: floatUp 6s infinite ease-in-out alternate;
}

@keyframes floatUp {
    from { transform: translateY(0); }
    to { transform: translateY(-25px); }
}

.fs1 { width: 140px; height: 140px; background: #cfcfcf; top: -40px; left: -40px; }
.fs2 { width: 80px; height: 80px; background: #e5e5e5; top: 30%; right: -20px; }
.fs3 { width: 100px; height: 100px; background: #d8d8d8; bottom: -20px; left: 20%; }
.fs4 { width: 150px; height: 150px; background: #ececec; top: 10%; right: -50px; }

/* ============================
   VIDEO SECTION
============================ */
.video-section {
    position: relative;
    padding: 180px 10%;
    color: #fff;
}

.video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
    z-index: -2;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    z-index: -1;
}

.video-container {
    max-width: 1200px;
    margin: auto;
}

.video-grid {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;
    align-items: start;
}

.sticky-image {
    position: sticky;
    top: 120px;
}

.video-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.v-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.v-subtitle {
    font-size: 20px;
    font-weight: 500;
    margin: 35px 0 10px;
}

.v-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.85;
}

.v-list {
    list-style: none;
    padding: 0;
    line-height: 1.9;
}

.v-list li {
    font-size: 17px;
    opacity: 0.9;
}

/* ============================
   RESPONSIVE FIXES
============================ */
@media(max-width: 900px) {

    .hero-content h1 {
        font-size: 40px;
    }

    .slash-content {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }

    .slash-text-3d,
    .slash-img-3d {
        width: 100%;
    }

    .slash-card-3d:hover {
        transform: none;
    }

    .slash-img-3d img {
        transform: none !important;
    }

    .float-shape {
        display: none;
    }

    .video-section {
        padding: 130px 7%;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-image {
        position: relative;
        top: 0;
    }

    .v-title {
        font-size: 32px;
    }
}

@media(max-width: 480px) {

    .slash-card-3d {
        padding: 30px;
    }

    .slash-text-3d h2 {
        font-size: 26px;
    }

    .v-title {
        font-size: 28px;
    }
}


.btn-3d {
    padding: 12px 34px;
    border-radius: 12px;
    background: #f7f7f7;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    box-shadow:
        6px 6px 14px rgba(0,0,0,0.15),
        -4px -4px 12px rgba(255,255,255,0.8);
    transition: 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-4px);
    box-shadow:
        12px 12px 25px rgba(0,0,0,0.18),
        -6px -6px 16px rgba(255,255,255,0.9);
}

/* CONTACT CTA – Premium Minimal Section */
.cta-contact-section {
    padding: 120px 8%;
    background: #fafafa;
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.cta-sub {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.cta-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    width: 260px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.cta-icon {
    font-size: 38px;
    margin-bottom: 12px;
}

.cta-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 600;
}

.cta-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* Button */
.cta-button {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 14px 38px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 750px) {
    .cta-cards {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-card {
        width: 100%;
        max-width: 350px;
    }

    .cta-title {
        font-size: 30px;
    }
}


.fade-section {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.9s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-stagger {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-out;
}

.fade-stagger.visible {
    opacity: 1;
    transform: translateY(0);
}