@import url('https://fonts.googleapis.com/css2?family=Allura&family=Caveat:wght@400;700&family=Kaushan+Script&family=Montserrat:wght@400;600;700;800;900&family=Rubik+Dirt&family=Permanent+Marker&display=swap');

:root {
    --neon-green: #8bc34a;
    /* Lighter green to match reference */
    --dark-navy: #0e1a2b;
    --matte-black: #0c0c0c;
    --white-paper: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--matte-black);
    overflow-x: hidden;
}

/* ================= TOP NAVIGATION ================= */
.main-nav {
    position: absolute;
    /* changed from fixed to absolute so it stays at top */
    top: 0;
    width: 100%;
    padding: 30px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-box {
    width: auto;
    height: 90px;
    /* Increased logo size */
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ================= HERO SECTION ================= */
.hero-section {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
    padding-top: 0;
    background-color: #ffffff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= WHITE TORN SECTION ================= */
.torn-paper-section {
    position: relative;
    z-index: 10;
    margin-top: -100px;
    /* Reduced negative margin since image is now background */
}

.paper-effect-img {
    width: 100%;
    display: block;
    margin-bottom: -2px;
    pointer-events: none;
    user-select: none;
    transform: translateZ(0);
    will-change: transform;
}

.white-content-bg {
    background: var(--white-paper);
    padding: 150px 0 350px;
    /* Increased top padding to push content down below the floating header */
    position: relative;
    clip-path: polygon(0% 40px, 5% 10px, 10% 45px, 15% 15px, 20% 45px, 25% 10px, 30% 45px, 35% 10px, 40% 50px, 45% 10px, 50% 45px, 55% 10px, 60% 50px, 65% 10px, 70% 45px, 75% 10px, 80% 50px, 85% 10px, 90% 45px, 95% 10px, 100% 40px, 100% 100%, 0% 100%);
    transform: translateZ(0);
    will-change: transform;
}

.welcome-header {
    text-align: center;
    position: absolute;
    top: -100px;
    width: 100%;
    z-index: 20;
}

.welcome-label {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 12px;
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-family: 'Rubik Dirt', cursive;
    font-size: 10rem;
    color: black;
    line-height: 0.9;
    margin: 0;
    transform: rotate(0deg);
    /* Reverting to standard bold look */
    letter-spacing: 2px;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.script-subtitle {
    font-family: 'Allura', cursive;
    font-size: 4rem;
    color: #000;
    font-weight: 400;
    transform: rotate(0deg);
    margin-top: -15px;
    letter-spacing: 2px;
}

/* ================= NAVY CONTENT SECTION ================= */
.torn-paper-navy {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 50px;
    background: url('assets/images/torn-blue.png') no-repeat right center;
    background-size: 80%;
    /* Increased size to overlap text area */
    padding: 50px 8%;
    z-index: 2;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.navy-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    /* Reduced gap to give more space */
}

.navy-content {
    flex: 1.5;
    /* Give more space to text */
    text-align: left;
    min-width: 600px;
}

.green-script {
    font-family: 'Allura', cursive;
    /* Updated to match Feeling Passionate style */
    font-weight: 400;
    color: #4caf50;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0;
    transform: rotate(0deg);
    display: block;
    letter-spacing: 2px;
    white-space: nowrap;
    /* Ensure no wrapping */
}

.green-script-2 {
    font-family: 'Allura', cursive;
    /* Updated to match Feeling Passionate style */
    font-weight: 400;
    color: #4caf50;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    margin-left: 50px;
    transform: rotate(0deg);
    display: block;
    letter-spacing: 2px;
    white-space: nowrap;
    /* Ensure no wrapping */
}

.navy-lead {
    color: #333;
    /* Dark text for white background */
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s;
    background: transparent;
    border: 3px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 195, 74, 0.4);
    background: var(--neon-green);
    color: white;
}

.icon-circle-btn {
    width: 35px;
    height: 35px;
    background: var(--neon-green);
    border-radius: 50%;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-green:hover .icon-circle-btn {
    background: white;
    color: var(--neon-green);
}

.icon-circle {
    display: none;
    /* Removed icon to match screenshot simple button */
}

.visual-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.globe-wrap {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-base {
    font-size: 22rem;
    color: white;
    z-index: 2;
}

.globe-wrap::after {
    /* Removed circle background as the blue blob image serves as the background now */
    content: none;
}


.globe-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 5;
    position: relative;
    mix-blend-mode: screen;
    filter: invert(1) hue-rotate(180deg) saturate(1.5) brightness(1.7) contrast(1.2);
    transform: translateZ(0);
    will-change: transform;
}


.orbit-dashed {
    display: none;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.plane-orbit-1 {
    position: absolute;
    top: 25%;
    right: -10%;
    color: #a53939;
    font-size: 2.2rem;
    transform: rotate(45deg);
    z-index: 6;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.plane-orbit-2 {
    position: absolute;
    bottom: 25%;
    left: -10%;
    color: #a53939;
    font-size: 1.8rem;
    transform: rotate(225deg);
    z-index: 6;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* ================= BLACK ADVICE SECTION ================= */
.torn-paper-black {
    position: relative;
    background: none !important;
    /* Ensure no background on parent */
    padding: 220px 0 100px;
    margin-top: -350px;
    z-index: 20;
}

.torn-paper-black::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/torn-black.png') no-repeat top center;
    background-size: cover;
    z-index: -1;
}

.advice-section {
    text-align: center;
    position: relative;
    padding-bottom: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.grunge-title {
    font-family: 'Rubik Dirt', cursive;
    font-size: 3.5rem;
    color: black;
    /* Black text for white background area */
    margin: 0;
    margin-top: -190px;
    /* Adjusted higher */
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    position: relative;
    z-index: 30;
}

.grunge-subtitle {
    font-family: 'Rubik Dirt', cursive;
    font-size: 3.5rem;
    color: white;
    /* White text for black background area */
    margin-bottom: 40px;
    margin-top: 60px;
    /* Push down to ensure visibility */
    text-transform: uppercase;
    position: relative;
    z-index: 30;
}

.advice-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 70px;
    padding: 0 5%;
}

.advice-card {
    flex: 1;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.advice-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(122, 184, 0, 0.2);
}

.advice-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.8));
    transition: opacity 0.3s;
}

.advice-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.advice-card:hover img {
    transform: scale(1.1);
}

.advice-text {
    color: #eee;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.pill-btn-small {
    display: inline-flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.outline-green {
    border: 2px solid var(--neon-green);
    color: white;
}

.icon-circle-small {
    width: 25px;
    height: 25px;
    background: var(--neon-green);
    border-radius: 50%;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ================= PREMIUM FOOTER ================= */
.footer-wrapper {
    background: #181818;
    width: 100%;
    color: #b0b0b0;
    margin-top: -5px;
    /* Ensure no gap if there is any */
    position: relative;
    z-index: 10;
}

.main-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 8% 40px;
    background: transparent;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 100px;
    margin-bottom: 80px;
    text-align: left;
}

.footer-col h4 {
    color: white;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 35px;
    font-weight: 800;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--neon-green);
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 35px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    transform: translateY(-8px) rotate(8deg);
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 10px 20px rgba(122, 184, 0, 0.2);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 18px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.footer-col a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: white;
    padding-left: 10px;
}

.footer-col i {
    color: var(--neon-green);
    margin-right: 15px;
    font-size: 1.2rem;
    width: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #777;
    font-size: 0.85rem;
    margin-top: 20px;
}

.footer-bottom p {
    letter-spacing: 0.5px;
    margin: 0;
}

/* ================= FLOATING BUTTONS ================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-btn.messenger {
    background: #0084ff;
}

.fab-btn.whatsapp {
    background: #25d366;
}

.fab-btn.chat {
    background: #25d366;
    /* Same green base */
    color: white;
}

/* ================= ABOUT & EXPLORE PAGES ================= */
.about-content {
    padding: 0 10% 150px;
}

.about-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-text-col {
    flex: 1.2;
}

.about-img-col {
    flex: 0.8;
    position: relative;
}

.team-img-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 15px solid white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(5deg);
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.plane-decoration {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 10rem;
    color: #f0f0f0;
    transform: rotate(-30deg);
    z-index: -1;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 150px;
}

.vision-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 10px solid var(--neon-green);
}

.mission-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 10px solid var(--dark-navy);
}

.explore-content {
    padding: 0 10% 100px;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.explore-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.indicator-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.blue {
    background: #0084ff;
}

.green {
    background: #25d366;
}

.red {
    background: #ea4335;
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 1200px) {
    .main-title {
        font-size: 10rem;
    }

    .collage-container {
        transform: scale(0.8);
        transform-origin: center top;
    }

    .navy-flex {
        gap: 20px;
    }

    .globe-wrap {
        width: 350px;
        height: 350px;
    }

    .globe-base {
        font-size: 16rem;
    }

    .globe-wrap::after {
        width: 14rem;
        height: 14rem;
    }
}

@media (max-width: 992px) {
    .main-nav {
        padding: 20px 4%;
    }

    .nav-links {
        display: none;
        /* In a real app, implement a hamburger menu here */
    }

    /* Simple mobile menu fallback for this demo */
    .nav-links {
        display: flex;
        position: absolute;
        top: 80px;
        right: 4%;
        flex-direction: column;
        background: rgba(14, 26, 43, 0.95);
        padding: 20px;
        border-radius: 10px;
        gap: 15px;
    }

    .collage-container {
        transform: scale(0.6);
    }

    .torn-paper-navy {
        padding: 50px 4%;
    }

    .navy-flex {
        flex-direction: column;
        text-align: center;
    }

    .green-script,
    .green-script-2 {
        transform: rotate(0deg);
        font-size: 3rem;
    }

    .navy-lead {
        font-size: 1.3rem;
    }

    .pill-btn {
        margin-bottom: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 600px;
        overflow: hidden;
    }

    .collage-container {
        transform: scale(0.45);
        top: -50px;
    }

    .collage-card {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .torn-paper-white {
        margin-top: -150px;
        padding-top: 100px;
        clip-path: polygon(0% 45px, 5% 20px, 10% 45px, 15% 25px, 20% 45px, 25% 20px, 30% 45px, 35% 25px, 40% 45px, 45% 20px, 50% 45px, 55% 20px, 60% 45px, 65% 20px, 70% 45px, 75% 20px, 80% 45px, 85% 20px, 90% 45px, 95% 20px, 100% 45px, 100% 100%, 0% 100%);
    }

    .main-title {
        font-size: 6rem;
    }

    .script-subtitle {
        font-size: 2rem;
    }

    .advice-grid {
        flex-direction: column;
        gap: 30px;
    }

    .grunge-title {
        font-size: 3.5rem;
    }

    .grunge-subtitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .collage-container {
        display: none;
        /* Hide complex collage on very small screens */
    }

    .hero-section {
        background: url('assets/images/hero-center.jpg') center/cover no-repeat;
        height: 400px;
    }

    .hero-bg img {
        display: none;
    }

    .main-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .script-subtitle {
        font-size: 1.5rem;
    }

    .torn-paper-white {
        margin-top: -50px;
    }

    .globe-wrap {
        width: 250px;
        height: 250px;
    }

    .globe-base {
        font-size: 10rem;
    }

    .globe-wrap::after {
        width: 8rem;
        height: 8rem;
    }

    /* Responsive overrides for About/Explore */
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .team-img-container {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        margin-top: 80px;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= BLOG CATEGORIES ================= */
.blog-categories-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.category-card:hover .cat-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.cat-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    line-height: 1.2;
    margin: 0;
}

/* Responsive for Blog */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 250px;
    }
}

/* ================= SIMPLE DARK FOOTER ================= */
.simple-dark-footer {
    background-color: #151515;
    color: #b0b0b0;
    padding: 80px 0 30px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 20;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    width: 35px;
    height: 35px;
    background-color: #2a2a2a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.social-icons-footer a:hover {
    background-color: #444;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 70px;
    text-align: center;
    padding-top: 25px;
    font-size: 0.85rem;
    color: #888;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.float-icon:hover {
    transform: scale(1.1);
}

.icon-messenger {
    background-color: #0084ff;
}

.icon-whatsapp {
    background-color: #25d366;
}

.icon-chat {
    background-color: #7acc7a;
}

/* ================= ANIMATIONS & PRELOADER ================= */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--neon-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Specific delays if needed */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* ================= GLOBE MODAL STYLES ================= */
.globe-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.globe-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 2100;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.close-modal:hover {
    color: #ff4d4d;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.1);
}

#globeViz {
    width: 100vw;
    height: 100vh;
}

.country-info {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 20px 60px;
    background: rgba(14, 26, 43, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 100px;
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    box-shadow: 0 15px 50px rgba(0, 255, 136, 0.15);
    white-space: nowrap;
}

.country-info.visible {
    opacity: 1;
    bottom: 120px;
}

.country-info::before {
    content: 'Discover';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 8px;
    color: #00ff88;
    font-weight: 400;
}

/* Redirection feedback entry */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:active {
    transform: scale(0.95);
}