:root {
    --color-bg: #120b2e;
    --color-text: #ffffff;
    --color-primary: #ff477e;
    --color-secondary: #00f5d4;
    --color-accent: #fee440;
    --color-card: #20144c;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-text {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    transition: transform 0.4s ease, background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.navbar-hidden {
    transform: translateY(-100%);
}

.navbar.navbar-scrolled {
    mix-blend-mode: normal;
    background-color: rgba(18, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: height 0.4s ease;
}

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

.nav-links a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--color-text);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Globals */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 999;
    opacity: 0.03;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.05em;
    font-family: var(--font-heading);
}

.fun-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.5;
    animation: fun-float 10s infinite alternate ease-in-out;
}

.blob-a {
    width: 400px;
    height: 400px;
    background: #ff9a9e;
    top: -10%;
    left: 0%;
}

.blob-b {
    width: 300px;
    height: 300px;
    background: #a18cd1;
    bottom: 0%;
    right: 10%;
    animation-delay: -5s;
}

@keyframes fun-float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    z-index: 2;
    margin-top: 5rem;
}

.hero-content {
    flex: 1;
    z-index: 3;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.label-line {
    width: 50px;
    height: 1px;
    background: var(--color-secondary);
}

.hero-title {
    font-size: 8rem;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 2rem;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 3.5rem;
    max-width: 600px;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn:hover {
    border-color: var(--color-primary);
}

.btn span,
.btn svg {
    position: relative;
    z-index: 2;
}

/* Image */
.hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
}

.img-reveal-mask {
    position: relative;
    width: 40vw;
    height: 75vh;
    max-width: 700px;
    max-height: 900px;
    min-height: 500px;
    overflow: hidden;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.accent-square {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--color-primary);
    z-index: 1;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: rotate(-90deg);
    transform-origin: left center;
    z-index: 3;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: #444;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    animation: scroll-line-anim 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scroll-line-anim {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(200%);
    }
}

/* About Section */
.about {
    padding: 3rem 10% 1.5rem 10%;
    background-color: var(--color-bg);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1.5;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.quote-style blockquote {
    font-size: 1.4rem;
    font-style: italic;
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0 1.5rem 1rem;
    position: relative;
    color: var(--color-text);
}

.quote-style blockquote::before {
    content: '\201C';
    font-size: 6rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: -25px;
    left: -30px;
    font-family: serif;
    line-height: 1;
}

.quote-style blockquote p {
    position: relative;
    z-index: 1;
}

.highlight-text {
    color: var(--color-primary);
    font-weight: 600;
}

.about-image-wrapper {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.3), rgba(255, 107, 107, 0.3));
    z-index: 1;
    mix-blend-mode: overlay;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Ventures */
.ventures {
    padding: 1.5rem 10% 3rem 10%;
    background-color: var(--color-bg);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.venture-card {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 8rem;
    position: relative;
    padding: 2rem 0;
}

.venture-card.reverse {
    flex-direction: row-reverse;
}

.venture-img-wrapper {
    flex: 1.2;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
    position: relative;
    z-index: 1;
}

.venture-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
    mix-blend-mode: overlay;
    z-index: 1;
}

.venture-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.venture-card:hover .venture-img {
    transform: scale(1.1) rotate(2deg);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.venture-logo {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.venture-info {
    flex: 1;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--color-primary);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    z-index: 2;
    margin-left: -5rem;
}

.venture-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(78, 205, 196, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.venture-card.reverse .venture-info {
    margin-left: 0;
    margin-right: -5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 4px solid var(--color-secondary);
}

.venture-info h3 {
    font-size: 2.2rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(90deg, #fff, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.venture-info h4 {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.location {
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Parallax Banner */
.parallax-banner {
    position: relative;
    height: 60vh;
    background-attachment: fixed;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-text {
    position: relative;
    z-index: 1;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    padding: 0 5%;
}

/* Gallery Section */
.gallery {
    padding: 3rem 0;
    overflow: hidden;
    background-color: var(--color-bg);
}

.gallery .section-title {
    margin-left: 10%;
    margin-bottom: 3rem;
}

.gallery-swiper-container {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 10% 4rem 10%;
}

.gallery-swiper-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-swiper-container::-webkit-scrollbar-track {
    background: #111;
}

.gallery-swiper-container::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.gallery-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.gallery-img {
    height: 400px;
    width: auto;
    max-width: 80vw;
    object-fit: cover;
    border-radius: 15px;
    scroll-snap-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

/* Contact */
.contact {
    padding: 3rem 10%;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    background: var(--color-card);
    padding: 3rem;
    border-radius: 20px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, var(--color-card), #1a1a1a);
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.contact-item p {
    margin-bottom: 0.8rem;
    color: #ccc;
    font-size: 0.95rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-primary);
    color: #000;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: #000;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        flex-direction: row;
        padding: 1rem 5%;
        mix-blend-mode: normal;
    }

    .nav-logo-img {
        height: 50px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70vw;
        max-width: 300px;
        height: 100vh;
        background: var(--color-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 100;
        margin: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 6rem;
        min-height: 100vh;
    }

    .hero-main {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin: 0 auto 1.5rem auto;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-bg-text {
        font-size: 25vw;
        top: 25%;
        opacity: 0.1;
    }

    .img-reveal-mask {
        width: 85vw;
        max-width: 450px;
        height: 45vh;
        min-height: 300px;
    }

    .scroll-indicator {
        display: none;
    }

    .about {
        padding: 2rem 5%;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .ventures {
        padding: 2rem 5%;
    }

    .venture-card,
    .venture-card.reverse {
        flex-direction: column;
        gap: 0;
    }

    .venture-info,
    .venture-card.reverse .venture-info {
        padding: 2rem;
        margin: -3rem 1rem 0 1rem;
        border-left: 4px solid var(--color-primary);
        border-right: none;
    }

    .parallax-banner {
        height: 40vh;
        background-position: center 40%;
    }

    .banner-text {
        font-size: 2.5rem;
    }

    .gallery {
        padding: 2rem 0;
    }

    .gallery-img {
        height: 300px;
        max-width: 90vw;
    }

    .contact {
        padding: 2rem 5%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}