@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&family=Luckiest+Guy&display=swap');

:root {
    --neon-green: #8bc34a;
    /* Lighter green to match reference */
    --dark-navy: #0e1a2b;
    --matte-black: #0c0c0c;
    /* We'll use this for deep accents only */
    --white-paper: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #1a1a1a;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal shifting */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--matte-black);
    animation: bodyFadeIn 0.8s ease-out forwards;
}

@keyframes bodyFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================= TOP NAVIGATION ================= */
.main-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 8000;
}

/* Removed .scrolled class styles as nav is no longer fixed */

.logo-box {
    width: auto;
    height: 90px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

.nav-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 8500;
    /* Stays above other fixed content */
}

.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;
    transform: translateY(-2px);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: white !important;
    cursor: pointer;
    z-index: 9000;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: rgba(139, 195, 74, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(139, 195, 74, 0.4);
}

@media (max-width: 992px) {

    .main-nav,
    .main-nav.dark-nav,
    .main-nav.scrolled {
        padding: 8px 5%;
        background: transparent !important;
        height: 60px;
        transition: background 0.3s ease;
        box-shadow: none !important;
    }

    .logo-box {
        height: 50px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #0e1a2b;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        /* Ensure it's the absolute topmost element */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        gap: 30px;
        display: flex;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: all;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 700;
        color: white !important;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        letter-spacing: 1px;
    }

    .nav-links a:hover {
        color: var(--neon-green) !important;
    }
}

/* ================= 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-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-img.active {
    opacity: 1;
}

/* ================= 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: -180px;
    /* Adjusted top to accommodate large logo */
    width: 100%;
    z-index: 20;
}

.header-logo-wrapper {
    margin-bottom: 20px;
}

.header-logo-large {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: fadeInDown 1.2s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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%;
    /* Centered size to overlap exactly at text gap */
    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;
    position: relative;
    z-index: 10;
}

.green-script {
    font-family: 'Caveat', cursive;
    /* Updated to match Feeling Passionate style */
    font-weight: 400;
    color: var(--neon-green);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 0;
    transform: rotate(0deg);
    display: block;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0,0,0,0.1);
    /* Ensure no wrapping */
}

.green-script-2 {
    font-family: 'Caveat', cursive;
    /* Updated to match Feeling Passionate style */
    font-weight: 400;
    color: var(--neon-green);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    margin-left: 50px;
    transform: rotate(0deg);
    display: block;
    letter-spacing: 2px;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(0,0,0,0.1);
    /* Ensure no wrapping */
}

.custom-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--neon-green);
    border-radius: 50%;
    margin-left: 10px;
    vertical-align: 2px; /* Lowered to sit at the baseline of 's' */
}

.navy-lead {
    font-size: 2.2rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    margin-top: 30px;
    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: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
    background: radial-gradient(circle at 35% 25%, #2a3546 0%, #151c28 60%, #0d121c 100%);
    box-shadow: none;
}

.globe-video {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 50%;
    z-index: 5;
    mix-blend-mode: screen;
    filter: invert(1) grayscale(1) brightness(3) contrast(2);
    -webkit-filter: invert(1) grayscale(1) brightness(3) contrast(2);
    transform: translateZ(0);
}

.perfect-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 154.7%;
    height: 61.9%;
    transform: translate(-50%, -50%) rotate(-20deg);
    border: 2px dashed #00f2ff;
    /* High-vibrancy Cyan */
    border-radius: 50%;
    z-index: 10;
    pointer-events: none;
    transform: rotate(-20deg);
    animation: rotatePerfect 30s linear infinite;
    opacity: 0.8;
}

.perfect-orbit i {
    position: absolute;
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9);
}

.perfect-orbit .p1 {
    top: -12px;
    left: 20%;
    transform: rotate(40deg);
}

.perfect-orbit .p2 {
    bottom: -12px;
    right: 20%;
    transform: rotate(220deg);
}

@keyframes rotatePerfect {
    from {
        transform: translate(-50%, -50%) rotate(-20deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(340deg);
    }
}

.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: #111111;
    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;
    flex-shrink: 0;
    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.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transform: rotate(0deg) !important;
    /* Forces icons to stay straight */
}

.social-icon i {
    margin: 0 !important;
    width: auto !important;
    transform: rotate(0deg) !important;
}

.social-icon:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    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: 992px) {
    .main-title {
        font-size: 3.5rem;
    }

    .script-subtitle {
        font-size: 1.5rem;
    }

    /* SHRUNK DESKTOP LOOK FOR ADVICE SECTION */
    .torn-paper-black {
        margin-top: -120px !important;
        /* Scaled down overlap */
        padding-top: 80px !important;
    }

    .grunge-title {
        font-size: 1.8rem !important;
        margin-top: -50px !important;
        /* Subtly pulled up like desktop */
        line-height: 1.2;
    }

    .grunge-subtitle {
        font-size: 1.8rem !important;
        margin-top: 70px !important;
        /* Pushed down for better visibility on black background */
        margin-bottom: 25px !important;
    }

    .green-script {
        font-size: 3.5rem !important;
        text-align: left;
        margin-bottom: 0px !important;
    }

    .green-script-2 {
        font-size: 3.5rem !important;
        text-align: left !important;
        margin-left: 40px !important;
        margin-top: -10px !important;
    }

    .advice-text {
        font-size: 0.95rem !important;
        padding: 0 5%;
        margin-bottom: 30px !important;
    }

    .advice-section {
        padding-bottom: 140px !important;
        /* Ensure button visibility */
    }

    .navy-flex {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: left;
    }

    .navy-content {
        min-width: 100%;
        text-align: left;
        padding: 0 5%;
        margin-bottom: -50px;
        /* Pull up towards globe */
    }

    .globe-wrap {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }

    .torn-paper-navy {
        background-size: 100% !important;
        background-position: center !important;
        min-height: auto;
        padding: 60px 5%;
        margin-bottom: 0;
    }

    .footer-bottom {
        text-align: center !important;
        padding-bottom: 20px;
    }

    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
        padding: 0 5% !important;
    }

    .footer-col {
        width: 100% !important;
        margin-bottom: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .footer-col h4::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .social-links {
        justify-content: center !important;
    }

    .footer-col li {
        justify-content: center !important;
    }

    /* Floating Buttons Mobile Position */
    .floating-buttons {
        bottom: 20px !important;
        right: 20px !important;
        transform: scale(0.8);
        transform-origin: bottom right;
    }
}

@media (max-width: 600px) {
    .navy-flex {
        display: flex !important;
        flex-direction: row !important;
        /* Keep side-by-side */
        align-items: center !important;
        justify-content: space-between !important;
        gap: 5px !important;
        text-align: left !important;
    }

    .navy-content {
        flex: 1.2 !important;
        min-width: 0 !important;
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
        z-index: 10;
    }

    .green-script {
        font-size: 1.8rem !important;
        text-align: left;
        margin-bottom: 0px !important;
        width: auto;
        display: block;
        white-space: nowrap;
    }

    .green-script-2 {
        font-size: 1.8rem !important;
        text-align: left !important;
        margin-left: 10px !important;
        margin-top: -5px !important;
        width: auto;
        display: block;
        white-space: nowrap;
    }

    .navy-lead {
        font-size: 0.9rem !important;
        margin-top: 15px !important;
        /* Added to push it down */
        margin-bottom: 15px !important;
    }

    .pill-btn {
        padding: 8px 20px !important;
        font-size: 0.7rem !important;
    }

    .visual-container {
        flex: 1 !important;
        display: flex !important;
        justify-content: flex-end !important;
        padding-right: 0 !important;
        transform: translateX(15px) !important; /* Shifting to the right side */
        z-index: 5;
    }

    .custom-dot {
        width: 6px !important; /* Smaller dot for mobile */
        height: 6px !important;
        vertical-align: 1px !important; /* Adjusted for smaller font */
        margin-left: 5px !important;
    }

    .visual-container img {
        max-width: 120px !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
    }

    .globe-wrap {
        width: 140px !important;
        height: 140px !important;
        margin: 0;
    }

    #globeViz canvas {
        width: 100% !important;
        height: 100% !important;
    }

    .torn-paper-navy {
        background-size: 100% 100% !important;
        background-position: center !important;
        padding: 30px 5%;
        min-height: auto !important;
    }

    .welcome-header {
        top: -170px !important;
        z-index: 100;
        pointer-events: none;
    }

    .welcome-label {
        font-size: 1.1rem !important;
        letter-spacing: 18px !important;
        margin-bottom: 10px !important;
        color: #ffffff !important;
        text-shadow: 0 4px 15px rgba(0,0,0,0.6) !important;
        font-weight: 800 !important;
        text-align: center;
        width: 100%;
        display: block;
    }

    .main-title {
        font-size: 4.8rem !important;
        line-height: 0.8 !important;
        margin-bottom: -5px !important;
        color: #000000 !important;
    }

    .script-subtitle {
        font-size: 2.5rem !important;
        margin-top: 5px !important;
        line-height: 1.1 !important;
        color: #000000 !important;
    }

    .torn-paper-section {
        margin-top: -80px !important;
        position: relative;
        z-index: 10;
    }

    .white-content-bg {
        padding-top: 120px !important;
        clip-path: none !important;
    }

    .torn-paper-black {
        margin-top: -150px !important;
        padding-top: 80px !important;
        z-index: 20;
    }

    .grunge-title {
        margin-top: -100px !important;
        /* Pull up to white area */
        font-size: 2.4rem !important;
        color: black !important;
        position: relative;
        z-index: 35;
    }

    .grunge-subtitle {
        margin-top: 80px !important;
        /* Push down to black area */
        font-size: 2.2rem !important;
        color: white !important;
    }

    .advice-grid {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }

    .advice-card {
        height: 250px;
    }

    /* Floating Buttons Position Adjustment */
    .floating-buttons,
    .floating-icons {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }

    .fab-btn,
    .float-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ================= 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.45);
    /* Darkened for better readability */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.3s;
    box-sizing: border-box;
}

.category-card:hover .cat-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.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: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .category-card {
        height: 280px;
    }

    .cat-overlay h3 {
        font-size: 1.6rem !important;
        /* Scaled down for mobile */
        padding: 0 10px;
    }

    .footer-bottom {
        text-align: center !important;
        padding: 25px 20px 80px !important;
        /* Fixed overlap and centering */
    }
}

/* ================= SIMPLE DARK FOOTER ================= */
.simple-dark-footer {
    background-color: #111111;
    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: all 0.3s;
    font-size: 0.9rem;
    flex-shrink: 0;
    transform: rotate(0deg) !important;
}

.social-icons-footer a i {
    margin: 0 !important;
    width: auto !important;
    transform: rotate(0deg) !important;
}

.social-icons-footer a:hover {
    background-color: var(--neon-green);
    transform: translateY(-3px) rotate(0deg) !important;
}

.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: #0e1a2b; /* Match navy theme */
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1); /* Subtle zoom out effect */
}

.loader-plane {
    font-size: 60px;
    color: #fff;
    filter: drop-shadow(0 0 15px var(--neon-green));
    animation: flyPlane 1.5s ease-in-out infinite;
}

@keyframes flyPlane {
    0% {
        transform: translateX(-50vw) translateY(50px) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    50% {
        transform: translateX(0) translateY(0) scale(1.2);
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        transform: translateX(50vw) translateY(-50px) scale(0.5);
        opacity: 0;
    }
}

/* 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(248, 250, 252, 0.98);
    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;
}

.globe-modern-title {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: #0c1a2c;
    z-index: 2200;
    text-align: left;
    letter-spacing: 0.5px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .globe-modern-title {
        font-size: 1.5rem;
        top: 20px;
        left: 20px;
        padding: 8px 20px;
    }
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #333;
    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(0, 0, 0, 0.05);
    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(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 195, 74, 0.4);
    border-radius: 100px;
    color: #1a365d;
    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: 50px;
}

.country-info::before {
    content: 'Discover';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    letter-spacing: 8px;
    color: #8bc34a;
    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);
}

@keyframes slowRotateGlobe {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}

.rotating-globe {
    animation: slowRotateGlobe 25s linear infinite;
}