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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #030006;
    color: #fff;
    overflow-x: hidden;
}

/* ================================
   FLOATING HEADER / NAVBAR
================================ */

.gft-floating-header {
    position: fixed;
    top: 28px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.45s ease;
}

.gft-floating-header.hide-header {
    transform: translateY(-125%);
}

.gft-logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: 0.35s ease;
}

.gft-logo-wrap img {
    width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 18px 35px rgba(255, 15, 123, 0.25));
    transition: 0.35s ease;
}

.gft-logo-wrap:hover {
    transform: translateY(-3px);
}

.gft-logo-wrap:hover img {
    filter: drop-shadow(0 22px 45px rgba(255, 15, 123, 0.45));
}

.gft-header-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.gft-donate-btn,
.gft-menu-btn {
    height: 54px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: 0.35s ease;
}

.gft-donate-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    box-shadow: 0 20px 48px rgba(255, 15, 123, 0.32);
}

.gft-menu-btn {
    cursor: pointer;
    border: 1px solid rgba(255, 47, 137, 0.26);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
        rgba(8, 0, 12, 0.64);
}

.gft-donate-btn:hover,
.gft-menu-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

.gft-donate-btn:hover {
    box-shadow: 0 28px 70px rgba(255, 15, 123, 0.45);
}

.gft-menu-btn:hover {
    border-color: rgba(255, 47, 137, 0.58);
    box-shadow: 0 22px 55px rgba(162, 0, 255, 0.22);
}

.gft-menu-btn i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    color: #ff4aa2;
    transition: 0.35s ease;
}

.gft-menu-btn:hover i {
    background: rgba(255, 15, 123, 0.18);
    transform: rotate(45deg);
}

/* ================================
   SIDEBAR MENU
================================ */

.gft-sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.gft-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gft-sidebar {
    position: fixed;
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100% - 36px));
    z-index: 1001;
    padding: 84px 24px 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 15, 123, 0.24), transparent 34%),
        radial-gradient(circle at 92% 88%, rgba(162, 0, 255, 0.25), transparent 36%),
        linear-gradient(145deg, rgba(16, 0, 24, 0.98), rgba(5, 0, 9, 0.98));
    box-shadow:
        0 40px 120px rgba(0,0,0,0.65),
        0 0 80px rgba(255,15,123,0.12);
    transform: translateX(calc(100% + 30px));
    transition: 0.55s cubic-bezier(.76, 0, .24, 1);
}

.gft-sidebar.active {
    transform: translateX(0);
}

.gft-sidebar::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.gft-sidebar::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255, 15, 123, 0.2);
    filter: blur(12px);
    pointer-events: none;
}

.gft-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
    z-index: 5;
}

.gft-close-btn:hover {
    background: #ff0f7b;
    transform: rotate(90deg);
    border-color: transparent;
    box-shadow: 0 16px 42px rgba(255, 15, 123, 0.38);
}

.gft-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.gft-sidebar-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
    padding: 13px 16px;
    border-radius: 17px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.055);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.gft-sidebar-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.24), rgba(162, 0, 255, 0.18));
    opacity: 0;
    transition: 0.35s ease;
}

.gft-sidebar-links a::after {
    content: "↗";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) translateX(14px);
    opacity: 0;
    color: #ff8ccc;
    transition: 0.35s ease;
}

.gft-sidebar-links a:hover {
    color: #fff;
    transform: translateX(-5px);
    border-color: rgba(255, 47, 137, 0.35);
    box-shadow: 0 18px 45px rgba(255, 15, 123, 0.14);
}

.gft-sidebar-links a:hover::before {
    opacity: 1;
}

.gft-sidebar-links a:hover::after {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

.gft-sidebar-donate {
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: 100%;
    min-height: 54px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 900;
    box-shadow: 0 24px 60px rgba(255, 15, 123, 0.28);
    transition: 0.35s ease;
}

.gft-sidebar-donate:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 30px 78px rgba(255, 15, 123, 0.42);
}

/* ================================
   NAVBAR / SIDEBAR MOBILE
================================ */

@media (max-width: 768px) {
    .gft-floating-header {
        top: 18px;
        padding: 0 18px;
    }

    .gft-logo-wrap img {
        width: 145px;
    }

    .gft-header-actions {
        gap: 9px;
    }

    .gft-donate-btn {
        height: 44px;
        padding: 0 14px;
        font-size: 12px;
    }

    .gft-donate-btn i {
        font-size: 12px;
    }

    .gft-menu-btn {
        width: 46px;
        height: 46px;
        padding: 0;
        justify-content: center;
    }

    .gft-menu-btn span {
        display: none;
    }

    .gft-menu-btn i {
        width: auto;
        height: auto;
        background: transparent;
        font-size: 20px;
    }

    .gft-menu-btn:hover i {
        background: transparent;
    }

    .gft-sidebar {
        top: 12px;
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        border-radius: 28px;
        padding: 78px 20px 22px;
    }

    .gft-sidebar::before {
        border-radius: 22px;
    }

    .gft-close-btn {
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }

    .gft-sidebar-links {
        gap: 7px;
    }

    .gft-sidebar-links a {
        font-size: 18px;
        padding: 12px 14px;
        border-radius: 16px;
    }

    .gft-sidebar-donate {
        min-height: 52px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .gft-logo-wrap img {
        width: 125px;
    }

    .gft-donate-btn {
        padding: 0 11px;
    }

    .gft-sidebar-links a {
        font-size: 16px;
        padding: 11px 13px;
    }
}

/* ================================
   HERO
================================ */

.gft-hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #030006;
}

.gft-hero-video {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: 72%;
    height: 100%;
    overflow: hidden;
}

.gft-hero-video::after {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 42%;
    height: 100%;
    pointer-events: none;
    background:
        linear-gradient(
            270deg,
            rgba(3,0,6,0) 0%,
            rgba(3,0,6,0.04) 14%,
            rgba(3,0,6,0.12) 28%,
            rgba(3,0,6,0.28) 52%,
            rgba(3,0,6,0.68) 78%,
            #030006 100%
        );
}

.gft-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.84;
    filter:
        grayscale(3%)
        contrast(1.03)
        brightness(0.9);
    transform: scale(1.05);
}

.gft-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(3,0,6,0.18) 0%,
            rgba(3,0,6,0.08) 28%,
            rgba(3,0,6,0.12) 100%
        );
}

.gft-hero-soft-glow {
    position: absolute;
    left: 4%;
    top: 14%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 15, 123, 0.18),
            rgba(162, 0, 255, 0.08),
            transparent 70%
        );
    filter: blur(25px);
    z-index: 2;
    pointer-events: none;
}

.gft-hero .container {
    position: relative;
    z-index: 4;
}

.gft-hero-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 160px;
}

.gft-hero h1 {
    font-size: clamp(45px, 7.0vw, 70px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -3px;
    margin-bottom: 20px;
    text-shadow: 0 10px 35px rgba(0,0,0,0.28);
}

.gft-hero h1 span {
    display: block;
    background: linear-gradient(135deg, #ff0f7b, #ff68b3, #a200ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gft-hero p {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.85;
    text-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* ================================
   HERO MOBILE
================================ */

@media (max-width: 768px) {
    .gft-hero {
        min-height: 100svh;
        align-items: flex-end;
        padding-bottom: 64px;
    }

    .gft-hero-video {
        width: 100%;
    }

    .gft-hero-video::after {
        width: 100%;
        left: 0;
        right: 0;
        background:
            linear-gradient(
                0deg,
                rgba(3,0,6,0.62) 0%,
                rgba(3,0,6,0.35) 34%,
                rgba(3,0,6,0.08) 70%,
                rgba(3,0,6,0.02) 100%
            );
    }

    .gft-hero-video video {
        object-position: center;
        opacity: 0.9;
        filter:
            grayscale(2%)
            contrast(1.02)
            brightness(1.04);
    }

    .gft-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3,0,6,0.04) 0%,
                rgba(3,0,6,0.08) 100%
            );
    }

    .gft-hero-soft-glow {
        right: -120px;
        top: 30%;
        width: 320px;
        height: 320px;
        opacity: 0.7;
    }

    .gft-hero-content {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-top: 160px;
    }

    .gft-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
        letter-spacing: -2px;
        text-shadow: 0 8px 24px rgba(0,0,0,0.42);
    }

    .gft-hero p {
        font-size: 15px;
        line-height: 1.75;
        color: rgba(255,255,255,0.84);
        text-shadow: 0 6px 18px rgba(0,0,0,0.38);
    }
}
/* ================================
   FOOTER
================================ */

.gft-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 15, 123, 0.16), transparent 26%),
        radial-gradient(circle at 85% 15%, rgba(162, 0, 255, 0.14), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(255, 85, 170, 0.08), transparent 34%),
        linear-gradient(180deg, #050008 0%, #020004 100%);
    padding: 90px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* LEFT SPOTLIGHT */

.gft-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -180px;
    top: 40px;
    background: rgba(255, 15, 123, 0.18);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

/* RIGHT SPOTLIGHT */

.gft-footer::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -140px;
    bottom: -60px;
    background: rgba(162, 0, 255, 0.16);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.gft-footer .container {
    position: relative;
    z-index: 2;
}

.gft-footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.gft-footer img {
    width: 190px;
    margin-bottom: 18px;
}

.gft-footer p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
}

.gft-footer h4 {
    color: #ff4aa2;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gft-footer a {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s ease;
}

.gft-footer a:hover {
    color: #ff4aa2;
    padding-left: 6px;
    text-shadow: 0 0 18px rgba(255, 74, 162, 0.45);
}

.gft-socials {
    display: flex;
    gap: 12px;
}

.gft-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.08);
    margin: 0;
    transition: 0.35s ease;
}

.gft-socials a:hover {
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(255, 15, 123, 0.3);
}

.gft-footer-bottom {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.gft-footer-bottom a {
    display: inline;
    color: #ff4aa2;
}
/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .gft-footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .gft-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .gft-footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ================================
   MISSION / VISION / VALUES
================================ */

.gft-mvv-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #000;
}

.gft-mvv-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -160px;
    bottom: -80px;
    border-radius: 50%;
    background: rgba(162, 0, 255, 0.12);
    filter: blur(120px);
    pointer-events: none;
}

.gft-mvv-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 35%, rgba(255, 15, 123, 0.08), transparent 32%),
        radial-gradient(circle at 85% 70%, rgba(162, 0, 255, 0.08), transparent 34%);
}

.gft-mvv-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 15, 123, 0.24) 1px, transparent 1px);
    background-size: 16px 16px;
    opacity: 0.025;
}

.gft-mvv-wrap {
    position: relative;
    z-index: 2;
    width: min(100% - 40px, 980px);
    margin: 0 auto;
}

.gft-mvv-mission {
    max-width: 620px;
    margin: 0 auto 44px;
    text-align: center;
}

.gft-mvv-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.gft-mvv-item {
    text-align: center;
}

.gft-mvv-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 15, 123, 0.22), rgba(162, 0, 255, 0.18));
    color: #ff5caf;
    font-size: 22px;
    box-shadow: 0 0 34px rgba(255, 15, 123, 0.18);
}

.gft-mvv-item h3 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 900;
    letter-spacing: -1.2px;
    margin-bottom: 14px;
    color: #fff;
}

.gft-mvv-item p {
    max-width: 460px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 14.5px;
    line-height: 1.85;
    font-weight: 300;
}

@media (max-width: 768px) {
    .gft-mvv-section {
        padding: 70px 0;
    }

    .gft-mvv-mission {
        margin-bottom: 38px;
    }

    .gft-mvv-bottom {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .gft-mvv-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gft-mvv-item p {
        font-size: 14px;
    }
}

/* ================================
   ABOUT SECTION
================================ */

.gft-about-section {
    position: relative;
    min-height: 720px;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 45%, rgba(255, 15, 123, 0.13), transparent 30%),
        radial-gradient(circle at 92% 75%, rgba(162, 0, 255, 0.12), transparent 34%),
        #030006;
}

.gft-about-image {
    position: relative;
    height: 100%;
    min-height: 720px;
    overflow: hidden;
}

.gft-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
    filter: grayscale(6%) contrast(1.05) brightness(0.82);
}

/* fade image into text */
.gft-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(3,0,6,0.1) 0%,
            rgba(3,0,6,0.05) 35%,
            rgba(3,0,6,0.55) 78%,
            #030006 100%
        ),
        linear-gradient(0deg,
            #030006 0%,
            transparent 22%,
            transparent 78%,
            #030006 100%
        );
}

.gft-about-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
    padding: 120px 70px 120px 40px;
}

.gft-section-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ff4aa2;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gft-about-content h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.4px;
    margin-bottom: 24px;
}

.gft-about-content h2::first-line {
    color: #fff;
}

.gft-about-content p {
    color: rgba(255,255,255,0.72);
    font-size: 15.5px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.gft-about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.gft-about-pills span {
    padding: 11px 16px;
    border-radius: 999px;
    color: #ffd7ec;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 15, 123, 0.1);
    border: 1px solid rgba(255, 47, 137, 0.22);
}

/* MOBILE */

@media (max-width: 991px) {
    .gft-about-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .gft-about-image {
        min-height: 430px;
    }

    .gft-about-image::after {
        background:
            linear-gradient(0deg,
                #030006 0%,
                rgba(3,0,6,0.3) 35%,
                rgba(3,0,6,0.1) 100%
            );
    }

    .gft-about-content {
        max-width: 100%;
        padding: 30px 24px 85px;
    }

    .gft-about-content h2 {
        letter-spacing: -1.6px;
    }
}

/* ================================
   OUR APPROACH SECTION
================================ */

.gft-approach-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: #000;
}

.gft-approach-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 22%, rgba(255, 15, 123, 0.11), transparent 30%),
        radial-gradient(circle at 88% 78%, rgba(162, 0, 255, 0.1), transparent 34%);
}

.gft-approach-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 15, 123, 0.22) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.025;
}

.gft-approach-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 1180px);
    margin: 0 auto;
}

.gft-approach-header {
    max-width: 720px;
    margin: 0 auto 58px;
    text-align: center;
}

.gft-approach-header h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.gft-approach-header p {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.85;
}

.gft-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gft-approach-item {
    position: relative;
    padding: 34px 28px;
    border-radius: 32px;
    overflow: hidden;

    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.018));

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.gft-approach-item::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -70px;
    right: -70px;
    border-radius: 50%;
    background: rgba(255, 15, 123, 0.12);
    filter: blur(22px);
}

.gft-approach-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;

    display: grid;
    place-items: center;

    color: #ff63b5;
    font-size: 22px;

    background:
        linear-gradient(135deg,
            rgba(255, 15, 123, 0.16),
            rgba(162, 0, 255, 0.1));

    border: 1px solid rgba(255, 47, 137, 0.18);

    box-shadow:
        0 0 30px rgba(255, 15, 123, 0.12);
}

.gft-approach-item h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #fff;
}

.gft-approach-item p {
    color: rgba(255,255,255,0.66);
    font-size: 14px;
    line-height: 1.85;
    margin: 0;
}

/* MOBILE */

@media (max-width: 991px) {

    .gft-approach-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gft-approach-item {
        border-radius: 26px;
        padding: 28px 24px;
    }

    .gft-approach-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {

    .gft-approach-section {
        padding: 75px 0;
    }

    .gft-approach-header h2 {
        letter-spacing: -1.5px;
    }

    .gft-approach-item h3 {
        font-size: 22px;
    }

    .gft-approach-item p {
        font-size: 13.5px;
    }
}

/* ================================
   BRAG / IMPACT SECTION
================================ */

.gft-brag-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background:
        linear-gradient(135deg,
            #050008 0%,
            #120012 35%,
            #09000d 65%,
            #000 100%);
}

/* MAIN COLORFUL BACKGROUND */
.gft-brag-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* LEFT PINK SPOTLIGHT */
.gft-brag-bg::before {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    left: -180px;
    top: -80px;
    border-radius: 50%;
    background: rgba(255, 15, 123, 0.22);
    filter: blur(120px);
}

/* RIGHT PURPLE SPOTLIGHT */
.gft-brag-bg::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    right: -180px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(162, 0, 255, 0.2);
    filter: blur(120px);
}

/* EXTRA CENTER LIGHT */
.gft-brag-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(255, 80, 170, 0.12);
    filter: blur(100px);
    z-index: 1;
}

/* DOT TEXTURE */
.gft-brag-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.03;
    pointer-events: none;
}

.gft-brag-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 60px;
    align-items: center;
}

.gft-brag-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
}

.gft-brag-art::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 15, 123, 0.16);
    filter: blur(80px);
}

.gft-brag-art img {
    position: relative;
    z-index: 2;
    width: min(100%, 420px);
    filter:
        drop-shadow(0 30px 80px rgba(255, 15, 123, 0.22))
        drop-shadow(0 0 60px rgba(162, 0, 255, 0.18));
}

.gft-brag-content {
    max-width: 690px;
}

.gft-brag-content h2 {
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.4px;
    margin-bottom: 22px;
    color: #fff;
}

.gft-brag-content p {
    max-width: 640px;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.gft-brag-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.gft-brag-stats div {
    padding: 18px 14px;
    border-left: 1px solid rgba(255, 47, 137, 0.32);
}

.gft-brag-stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0f7b, #ff68b3, #a200ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gft-brag-stats span {
    display: block;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

/* MOBILE */

@media (max-width: 991px) {
    .gft-brag-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gft-brag-art {
        min-height: 300px;
    }

    .gft-brag-art img {
        width: min(100%, 300px);
    }

    .gft-brag-content {
        text-align: center;
        margin: 0 auto;
    }

    .gft-brag-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .gft-brag-stats {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }
}

@media (max-width: 520px) {
    .gft-brag-section {
        padding: 70px 0;
    }

    .gft-brag-stats {
        grid-template-columns: 1fr;
    }

    .gft-brag-stats div {
        padding: 14px 12px;
    }
}

/* ================================
   PROGRAMMES SECTION
================================ */

.gft-programmes-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: #000;
}

.gft-programmes-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 15, 123, 0.1), transparent 30%),
        radial-gradient(circle at 88% 82%, rgba(162, 0, 255, 0.09), transparent 34%);
}

.gft-programmes-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.02;
}

.gft-programmes-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 1180px);
    margin: 0 auto;
}

.gft-programmes-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.gft-programmes-header h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.gft-programmes-header p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.85;
}

.gft-programmes-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 48px;
    align-items: center;
}

/* IMAGE */

.gft-programmes-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 620px;
}

.gft-programmes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) contrast(1.04);
}

.gft-programmes-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.08),
            rgba(0,0,0,0.35));
}

/* ITEMS */

.gft-programmes-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.gft-programme-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 22px;
    border-radius: 28px;

    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015));

    border: 1px solid rgba(255,255,255,0.07);
}

.gft-programme-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 18px;

    display: grid;
    place-items: center;

    color: #ff66b3;
    font-size: 21px;

    background:
        linear-gradient(135deg,
            rgba(255, 15, 123, 0.16),
            rgba(162, 0, 255, 0.1));

    border: 1px solid rgba(255, 47, 137, 0.18);
}

.gft-programme-item h3 {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.7px;
    margin-bottom: 8px;
    color: #fff;
}

.gft-programme-item p {
    margin: 0;
    color: rgba(255,255,255,0.64);
    font-size: 14px;
    line-height: 1.8;
}

/* MOBILE */

@media (max-width: 991px) {

    .gft-programmes-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gft-programmes-image {
        min-height: 360px;
    }
}

@media (max-width: 768px) {

    .gft-programmes-section {
        padding: 75px 0;
    }

    .gft-programmes-header {
        margin-bottom: 38px;
    }

    .gft-programmes-image {
        border-radius: 28px;
        min-height: 300px;
    }

    .gft-programme-item {
        padding: 20px;
        border-radius: 24px;
    }

    .gft-programme-item h3 {
        font-size: 21px;
    }

    .gft-programme-item p {
        font-size: 13.5px;
    }
}

/* ================================
   TEAM SECTION
================================ */

.gft-team-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    background: #000;
}

.gft-team-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 15, 123, 0.12), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(162, 0, 255, 0.12), transparent 34%);
}

.gft-team-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 1120px);
    margin: 0 auto;
}

.gft-team-header {
    max-width: 760px;
    margin: 0 auto 58px;
    text-align: center;
}

.gft-team-header h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.gft-team-header p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.85;
}

.gft-team-slider {
    display: grid;
    grid-template-columns: 54px 1fr 54px;
    align-items: center;
    gap: 18px;
}

.gft-team-track {
    overflow: hidden;
    display: flex;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.gft-team-card {
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    display: grid;
    grid-template-columns: 34% 66%;
    align-items: stretch;
    height: 350px;
    min-height: 350px;
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    position: relative;
}

.gft-team-photo {
    height: 350px;
    min-height: 350px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background: #050005;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gft-team-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.45)),
        linear-gradient(90deg, transparent 65%, rgba(255,15,123,0.12));
}

.gft-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(0.85);
    display: block;
    background: #050005;
}

.gft-team-track {
    overflow: hidden;
    display: flex;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
}

.gft-team-info {
    padding: 48px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gft-team-info span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #ff4aa2;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gft-team-info h3 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
}

.gft-team-info p {
    max-width: 520px;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.85;
    margin: 0;
}

.gft-team-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,47,137,0.24);
    background: rgba(255,255,255,0.055);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: 0.3s ease;
}

.gft-team-arrow:hover {
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    transform: translateY(-3px);
}

.gft-team-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.gft-team-dots button {
    width: 26px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.22);
}

.gft-team-dots button.active {
    width: 54px;
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
}

/* MOBILE */

@media (max-width: 900px) {
    .gft-team-slider {
        grid-template-columns: 1fr;
    }

    .gft-team-arrow {
        display: none;
    }

    .gft-team-card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
        border-radius: 28px;
    }

    .gft-team-photo {
        height: 320px;
        min-height: 320px;
    }

    .gft-team-info {
        padding: 30px 24px 36px;
    }
}

/* ================================
   IMPACT SECTION
================================ */

.gft-impact-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #000;
}

.gft-impact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 15, 123, 0.13), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(162, 0, 255, 0.12), transparent 34%);
}

.gft-impact-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 15, 123, 0.22) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.025;
}

.gft-impact-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 1180px);
    margin: 0 auto;
}

.gft-impact-header {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.gft-impact-header h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: #fff;
}

.gft-impact-header p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.85;
}

.gft-impact-photo {
    position: relative;
    width: 100%;
    height: 430px;
    margin: 0 auto 34px;
    overflow: hidden;
    border-radius: 34px;
}

.gft-impact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.82) contrast(1.05);
}

.gft-impact-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            #000 0%,
            rgba(0,0,0,0.42) 14%,
            rgba(0,0,0,0.02) 38%,
            rgba(0,0,0,0.02) 62%,
            rgba(0,0,0,0.42) 86%,
            #000 100%
        ),
        linear-gradient(0deg,
            #000 0%,
            rgba(0,0,0,0.05) 28%,
            rgba(0,0,0,0.05) 72%,
            #000 100%
        );
}

.gft-impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.gft-impact-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 30px;
    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.065),
            rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
}

.gft-impact-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -70px;
    right: -60px;
    border-radius: 50%;
    background: rgba(255, 15, 123, 0.13);
    filter: blur(22px);
}

.gft-impact-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ff0f7b, #ff68b3, #a200ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gft-impact-card h3 {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
    color: #fff;
}

.gft-impact-card p {
    color: rgba(255,255,255,0.64);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* MOBILE */

@media (max-width: 991px) {
    .gft-impact-photo {
        height: 330px;
    }

    .gft-impact-stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .gft-impact-section {
        padding: 75px 0;
    }

    .gft-impact-header {
        margin-bottom: 34px;
    }

    .gft-impact-photo {
        height: 260px;
        border-radius: 26px;
    }

    .gft-impact-card {
        padding: 26px 22px;
        border-radius: 24px;
    }
}

/* ================================
   BLOGS SECTION
================================ */

.gft-blogs-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background: #000;
}

.gft-blogs-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 22%, rgba(255, 15, 123, 0.1), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(162, 0, 255, 0.1), transparent 34%);
}

.gft-blogs-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.5;
}

.gft-blogs-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 1180px);
    margin: 0 auto;
}

.gft-blogs-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.gft-blogs-header h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 18px;
    color: #fff;
}

.gft-blogs-header p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255,255,255,0.68);
    font-size: 15px;
    line-height: 1.85;
}

.gft-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gft-blog-card {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(145deg,
            rgba(255,255,255,0.07),
            rgba(255,255,255,0.018));
    border: 1px solid rgba(255,255,255,0.08);
}

.gft-blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gft-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) contrast(1.04);
}

.gft-blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.75)),
        linear-gradient(90deg, rgba(255,15,123,0.18), transparent 60%);
}

.gft-blog-icon {
    position: absolute;
    left: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px;
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    box-shadow: 0 18px 40px rgba(255,15,123,0.35);
    z-index: 2;
}

.gft-blog-content {
    padding: 28px 26px 30px;
}

.gft-blog-content span {
    display: inline-flex;
    margin-bottom: 12px;
    color: #ff4aa2;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.gft-blog-content h3 {
    font-size: 23px;
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
    color: #fff;
}

.gft-blog-content p {
    color: rgba(255,255,255,0.62);
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.gft-blog-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.3s ease;
}

.gft-blog-content a i {
    color: #ff4aa2;
    transition: 0.3s ease;
}

.gft-blog-content a:hover {
    color: #ff4aa2;
}

.gft-blog-content a:hover i {
    transform: translate(4px, -4px);
}

/* MOBILE */

@media (max-width: 991px) {
    .gft-blogs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gft-blog-image {
        height: 280px;
    }
}

@media (max-width: 600px) {
    .gft-blogs-section {
        padding: 75px 0;
    }

    .gft-blogs-header {
        margin-bottom: 38px;
    }

    .gft-blog-card {
        border-radius: 28px;
    }

    .gft-blog-image {
        height: 230px;
    }

    .gft-blog-content {
        padding: 24px 22px 28px;
    }

    .gft-blog-content h3 {
        font-size: 21px;
    }
}

/* ================================
   CTA SECTION
================================ */

.gft-cta-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #000;
}

.gft-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 35%, rgba(255, 15, 123, 0.22), transparent 32%),
        radial-gradient(circle at 82% 70%, rgba(162, 0, 255, 0.2), transparent 34%),
        linear-gradient(135deg, #070006 0%, #120012 48%, #000 100%);
}

.gft-cta-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 850px);
    margin: 0 auto;
    text-align: center;
}

.gft-cta-inner h2 {
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2.6px;
    margin-bottom: 22px;
    color: #fff;
}

.gft-cta-inner p {
    max-width: 650px;
    margin: 0 auto 34px;
    color: rgba(255,255,255,0.72);
    font-size: 15.5px;
    line-height: 1.85;
}

.gft-cta-btn {
    min-height: 60px;
    padding: 0 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    box-shadow: 0 24px 70px rgba(255, 15, 123, 0.35);
    transition: 0.35s ease;
}

.gft-cta-btn:hover {
    color: #fff;
    transform: translateY(-5px);
}

/* ================================
   FLOATING WHATSAPP
================================ */

.gft-floating-whatsapp {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 998;

    width: 82px;
    height: 82px;
    border-radius: 50%;

    display: grid;
    place-items: center;

    text-decoration: none;
    color: #fff;

    background:
        radial-gradient(circle at center, rgba(255, 15, 123, 0.28), rgba(162, 0, 255, 0.08) 62%, transparent 70%);
    border: 1px solid rgba(255, 47, 137, 0.24);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 0 0 12px rgba(255, 15, 123, 0.06),
        0 0 0 24px rgba(255, 15, 123, 0.025),
        0 22px 55px rgba(255, 15, 123, 0.22);

    transition: 0.35s ease;
}

.gft-floating-whatsapp::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,0.16), transparent 34%),
        linear-gradient(135deg, rgba(255, 15, 123, 0.72), rgba(162, 0, 255, 0.5));
    border: 1px solid rgba(255,255,255,0.13);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 14px 34px rgba(255, 15, 123, 0.28);
    z-index: 1;
}

.gft-floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    border: 1px solid rgba(255, 47, 137, 0.35);
    opacity: 0.55;
    z-index: 0;
}

.gft-floating-whatsapp i {
    position: relative;
    z-index: 2;
    font-size: 33px;
    color: #fff;
    text-shadow: 0 0 18px rgba(255,255,255,0.2);
}

.gft-floating-whatsapp span {
    display: none;
}

.gft-floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(255, 47, 137, 0.55);
    box-shadow:
        0 0 0 14px rgba(255, 15, 123, 0.075),
        0 0 0 28px rgba(162, 0, 255, 0.035),
        0 30px 75px rgba(255, 15, 123, 0.34);
}

.gft-floating-whatsapp:hover::before {
    background:
        radial-gradient(circle at 35% 25%, rgba(255,255,255,0.2), transparent 34%),
        linear-gradient(135deg, #ff0f7b, #a200ff);
}

@media (max-width: 600px) {
    .gft-floating-whatsapp {
        right: 18px;
        bottom: 18px;
        width: 68px;
        height: 68px;
        box-shadow:
            0 0 0 9px rgba(255, 15, 123, 0.055),
            0 0 0 18px rgba(255, 15, 123, 0.02),
            0 18px 45px rgba(255, 15, 123, 0.22);
    }

    .gft-floating-whatsapp::before {
        inset: 11px;
    }

    .gft-floating-whatsapp i {
        font-size: 27px;
    }
}

@media (max-width: 600px) {
    .gft-cta-section {
        padding: 78px 0;
    }
}

/* ================================
   SINGLE BLOG PAGES
================================ */

.gft-blog-page {
    position: relative;
    overflow: hidden;
    padding: 170px 0 95px;
    background: #000;
}

.gft-blog-page-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 15, 123, 0.14), transparent 30%),
        radial-gradient(circle at 86% 78%, rgba(162, 0, 255, 0.13), transparent 34%);
}

.gft-blog-page-inner {
    position: relative;
    z-index: 2;
    width: min(100% - 42px, 980px);
    margin: 0 auto;
}

.gft-blog-page-hero {
    text-align: center;
}

.gft-blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 11px 18px;
    border-radius: 999px;
    color: #ffd7ec;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 15, 123, 0.12);
    border: 1px solid rgba(255, 47, 137, 0.22);
}

.gft-blog-page-hero h1 {
    max-width: 760px;
    margin: 0 auto 20px;
    font-size: clamp(15px, 2.6vw, 42px);
    line-height: 1.06;
    font-weight: 600;
    letter-spacing: -1.8px;
    color: #fff;
}

.gft-blog-page-hero p {
    max-width: 660px;
    margin: 0 auto 38px;
    color: rgba(255,255,255,0.68);
    font-size: 15.5px;
    line-height: 1.85;
}

.gft-blog-page-hero img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 34px;
    filter: brightness(0.84) contrast(1.04);
}

.gft-blog-page-content {
    max-width: 760px;
    margin: 45px auto 0;
}

.gft-blog-page-content p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 2;
    margin-bottom: 22px;
}

.gft-blog-next-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.gft-blog-next-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,47,137,0.22);
    transition: 0.3s ease;
}

.gft-blog-next-links a:hover {
    background: linear-gradient(135deg, #ff0f7b, #a200ff);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .gft-blog-page {
        padding: 140px 0 75px;
    }

    .gft-blog-page-hero img {
        height: 280px;
        border-radius: 26px;
    }

    .gft-blog-page-content p {
        font-size: 14.5px;
    }
}