:root {
    --bumble-yellow: #ffd400;
    --bumble-dark: #1a1a1a;
    --bumble-card: #fffbf8;
    --bumble-muted: #555555;
    --bumble-red: #99172f;
    --bumble-red-dark: #96281b;
    --radius-xl: 20px;
    --radius-lg: 14px;
    --border-light: rgba(153, 23, 47, 0.12);
    --gradient-main: linear-gradient(
        135deg,
        #99172f 0%,
        #6b0f20 50%,
        #3d0812 100%
    );
    --gradient-soft: linear-gradient(160deg, #99172f 0%, #c43050 100%);
    --gradient-hero: linear-gradient(
        135deg,
        rgba(61, 8, 18, 0.92) 0%,
        rgba(107, 15, 32, 0.85) 40%,
        rgba(153, 23, 47, 0.75) 100%
    );
}

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

body {
    font-family: "Kumbh Sans", sans-serif;
    background: #fff;
    color: var(--bumble-dark);
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    color: #000000;
}

.whitetopic {
    color: white;
}

/* ─── CUSTOM DRAWER NAV ─── */
.site-header {
    position: fixed;
    top: 15px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all 0.4s ease;
}
.site-header.scrolled .nav-inner {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    box-shadow:
        0 1px 0 var(--border-light),
        0 4px 30px rgba(153, 23, 47, 0.08);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50px;
}
.nav-logo {
    font-family: "Squada One", serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #131313;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}
.site-header.scrolled .nav-logo {
    color: var(--crimson-dark);
}
.nav-logo span {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
}
.site-header.scrolled .nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin-bottom: 0;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.site-header.scrolled .nav-links a {
    color: var(--warm-gray);
}
.site-header.scrolled .nav-links a::after {
    background: var(--crimson);
}
.nav-links a:hover {
    color: var(--gold-light);
}
.site-header.scrolled .nav-links a:hover {
    color: var(--crimson);
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--gradient-soft);
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(153, 23, 47, 0.4);
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(153, 23, 47, 0.55);
}
.nav-cta::after {
    display: none !important;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1100;
}
.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #131313;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.site-header.scrolled .hamburger-btn span {
    background: #131313;
}
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* DRAWER */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 4, 8, 0.6);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(3px);
}
.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100dvh;
    background: #fff;
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}
.drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px 24px;
    border-bottom: 1px solid var(--border-light);
}
.drawer-logo {
    font-family: "Squada One", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--crimson-dark);
    text-decoration: none;
}
.drawer-logo span {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}
.drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--warm-gray);
    transition: all 0.2s;
}
.drawer-close:hover {
    background: var(--crimson-pale);
    color: var(--crimson);
}

.drawer-nav {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.drawer-nav a {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}
.drawer-nav a:hover {
    background: var(--crimson-pale);
    color: var(--crimson);
    padding-left: 22px;
}
.drawer-nav a.drawer-highlight {
    margin-top: 16px;
    background: var(--gradient-soft);
    color: #fff;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 14px 20px;
}
.drawer-nav a.drawer-highlight:hover {
    opacity: 0.9;
    padding-left: 20px;
    background: var(--gradient-soft);
}

.drawer-footer {
    padding: 24px 30px;
    border-top: 1px solid var(--border-light);
    font-size: 0.78rem;
    color: var(--warm-gray);
    text-align: center;
    line-height: 1.7;
}
.nav-logo {
    height: 60px;
}
/* ─── HERO ─── */
.hero {
    background: var(--bumble-red);
    background-image: var(--gradient-hero);
    min-height: 110vh;
    position: relative;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
}

.hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-giant-text {
    font-family: "Squada One", sans-serif;
    font-size: clamp(45px, 9vw, 100px);
    line-height: 0.88;
    color: var(--bumble-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
    user-select: none;
}

.hero-photo-stack {
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 5px;
    z-index: 1;
}

.hero-photo-card {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    background: #ddd;
    position: relative;
}
.hero .swiper-slide {
    transform: scale(0.6);
    z-index: 2;
    transition: all 0.5s ease-in-out;
}
.hero .swiper-slide-prev,
.hero .swiper-slide-next {
    transform: scale(0.8);
    z-index: 4;
}
.hero .swiper-slide-active {
    transform: none;
    z-index: 9;
}

/* .hero-photo-card:nth-child(1) {
    transform: rotate(-5deg) translateY(20px);
}

.hero-photo-card:nth-child(2) {
    transform: rotate(2deg);
}

.hero-photo-card:nth-child(3) {
    transform: rotate(6deg) translateY(30px);
} */

.hero-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.hero-tagline {
    font-family: "Kumbh Sans", serif;
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    color: var(--bumble-dark);
    max-width: 380px;
    line-height: 1.4;
    margin-top: 18px;
}

.hero-pill-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-pill {
    background: var(--bumble-dark);
    color: #fff;
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.hero-pill:hover,
.hero-pill.active {
    background: var(--bumble-red);
}

.btn-hero-cta {
    background: var(--bumble-dark);
    color: #fff;
    border-radius: 30px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    margin-top: 28px;
    display: inline-block;
    transition:
        background 0.25s,
        transform 0.2s;
    text-decoration: none;
}

.btn-hero-cta:hover {
    background: var(--bumble-red);
    color: #fff;
    transform: scale(1.03);
}

/* ─── SEARCH WIDGET ─── */
.search-section {
    background: var(--bumble-red);
    padding-bottom: 60px;
}

.search-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.1);
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.search-card label {
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--bumble-black);
    margin-bottom: 6px;
    display: block;
}

.search-card .form-select,
.search-card .form-control {
    border-radius: 10px;
    border: 2px solid #eee;
    font-size: 0.92rem;
    padding: 10px 14px;
    transition: border-color 0.2s;
}

.search-card .form-select:focus,
.search-card .form-control:focus {
    border-color: var(--bumble-yellow);
    box-shadow: none;
}

.btn-search {
    background: var(--bumble-red);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 13px 32px;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    transition:
        background 0.25s,
        transform 0.2s;
}

.btn-search:hover {
    background: var(--bumble-red-dark);
    transform: scale(1.02);
}

/* ─── FEATURES ROW ─── */
.features-section {
    padding: 90px 0 60px;
}

.feature-card {
    background: var(--bumble-card);
    background-image: var(--gradient-soft);
    border-radius: var(--radius-xl);
    padding: 34px 28px;
    height: 100%;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 100%;
    height: 300px;
    aspect-ratio: video;
    background: var(--bumble-card);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    background: var(--bumble-card);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    object-position: center;
}

.feature-card h4 {
    font-family: "Squada One", serif;
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}
.text-red {
    color: #96281b;
}
/* ─── STATS STRIP ─── */
.stats-strip {
    background: var(--bumble-dark);
    color: #fff;
    padding: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: "Squada One", sans-serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── BIG SECTION: CARDS (Date / BFF style) ─── */
.product-cards-section {
    padding: 80px 0;
}

.product-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background-color: #f5f5f5;
    border: 2px solid #eaeaea;
    transition: transform 0.25s;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-card.red-card {
    background: var(--bumble-red);
    border-color: var(--bumble-red);
    color: #fff;
}

.product-card h4 {
    font-family: "Squada One", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.88rem;
    line-height: 1.55;
}

.product-card .card-link {
    display: inline-block;
    margin-top: 16px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: inherit;
}

/* .product-card-icon {
    font-size: 3.5rem;
    margin-bottom: 14px;
} */

.product-card-icon img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 14px;
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
    padding: 80px 0;
    background: var(--bumble-card);
}

.testimonial-quote p {
    font-family: "Squada One", serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-style: italic;
    line-height: 1.45;
    color: var(--bumble-dark);
}

.testimonial-quote::before {
    content: "\201C";
    font-size: 4rem;
    color: var(--bumble-yellow);
    line-height: 0;
    vertical-align: -1.2rem;
    margin-right: 4px;
    font-family: "Squada One", sans-serif;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--bumble-black);
    margin-top: 18px;
}

.testimonial-photo {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.btn-outline-dark-custom {
    border: 2.5px solid var(--bumble-dark);
    color: var(--bumble-dark);
    border-radius: 30px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.88rem;
    background: transparent;
    transition:
        background 0.2s,
        color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-dark-custom:hover {
    background: var(--bumble-dark);
    color: #fff;
}
.btn-outline-light-custom {
    border: 2.5px solid #fff;
    color: #fff;
    border-radius: 30px;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 0.88rem;
    background: transparent;
    transition:
        background 0.2s,
        color 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light-custom:hover {
    background: #fff;
    color: var(--bumble-dark);
}

/* ─── FEATURES DESIGNED ─── */
.designed-section {
    padding: 90px 0;
}

.designed-img {
    border-radius: var(--radius-xl);
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.designed-img img {
    border-radius: var(--radius-xl);
    width: 500px;
    height: 450px;
    aspect-ratio: 1;
    object-fit: cover;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.1);
}

.designed-text h2 {
    font-family: "Squada One", serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1.2;
}

.designed-text p {
    font-size: 1rem;
    color: var(--bumble-black);
    line-height: 1.7;
    margin-top: 14px;
}

.check-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 18px;
}

.check-dot {
    width: 24px;
    height: 24px;
    background: var(--bumble-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-item p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--bumble-dark);
    font-weight: 500;
}

/* ─── STORIES ─── */
.stories-section {
    padding: 80px 0;
    background: var(--bumble-red);
    background-image: var(--gradient-soft);
}

.stories-section h2 {
    font-family: "Squada One", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    letter-spacing: 1px;
}

.stories-section .section-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.story-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s;
}

.story-card:hover {
    transform: translateY(-6px);
}

.story-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    object-fit: cover;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 2.5rem;
}

.story-card-img-placeholder img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 2.5rem;
}

.story-card-body {
    padding: 20px;
}

.story-tag {
    background: var(--bumble-red);
    color: var(--bumble-card);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.story-card h6 {
    font-family: "Squada One", serif;
    color: #131313;
    font-size: 1.5rem;
    margin-bottom: 8px;
    line-height: 1.4;
}

.story-card p {
    color: #000;
    font-size: 0.82rem;
    line-height: 1.55;
}

.story-read-more {
    color: var(--bumble-red);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* ─── GET APP ─── */
.app-section {
    /* background: var(--gradient-hero); */
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.app-section h2 {
    font-family: "Squada One", sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 0.9;
    color: var(--bumble-dark);
}

.app-section p {
    color: var(--bumble-dark);
    font-size: 0.95rem;
    opacity: 0.75;
    margin-top: 14px;
}

.qr-box {
    width: 120px;
    height: 120px;
    background: var(--bumble-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.72rem;
    text-align: center;
    padding: 10px;
    line-height: 1.3;
}

.app-mockup {
    width: 260px;
    aspect-ratio: 9/19;
    background: var(--bumble-dark);
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.app-mockup-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #c0392b 0%, #96281b 50%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    gap: 10px;
}

.app-mockup-logo {
    font-family: "Squada One", sans-serif;
    font-size: 2rem;
    color: var(--bumble-yellow);
}

.app-store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--bumble-dark);
    color: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s;
}

.store-btn:hover {
    background: var(--bumble-red);
    color: #fff;
}

.store-btn i {
    font-size: 1.4rem;
}

/* ─── FAQ ─── */
.faq-section {
    padding: 80px 0;
}

.faq-section h2 {
    font-family: "Squada One", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.accordion-item {
    border: 2px solid #eee !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 400;
    font-size: 18px;
    background: #fff !important;
    color: #fff;
    font-family: "Squada One", sans-serif;
}

.accordion-button:not(.collapsed) {
    background: var(--bumble-red) !important;
    box-shadow: none !important;
    color: #fff;
}

.accordion-button::after {
    filter: none;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--bumble-black);
    line-height: 1.65;
}

/* .faq-section h3 button {
    font-family: 'Squada One', serif;
    font-size: 28px;
} */

/* ─── FOOTER ─── */
.footer {
    background: var(--bumble-red);
    background-image: var(--gradient-soft);
    color: rgba(255, 255, 255, 1);
    padding: 60px 0 30px;
}

/* .footer-logo {
    font-family: 'Squada One', sans-serif;
    font-size: 2rem;
    color: var(--bumble-yellow);
    display: block;
    margin-bottom: 10px;

} */
.footer-logo img {
    width: 200px;
    margin: 20px;
}

.footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--bumble-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 24px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.social-btn:hover {
    background: var(--bumble-yellow);
    color: var(--bumble-dark) !important;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

.fade-up-2 {
    animation: fadeUp 0.7s 0.15s ease both;
}

.fade-up-3 {
    animation: fadeUp 0.7s 0.3s ease both;
}

.fade-up-4 {
    animation: fadeUp 0.7s 0.45s ease both;
}

/* ─── DIVIDER ─── */
.section-divider {
    height: 4px;
    background: var(--bumble-yellow);
    border: none;
    width: 60px;
    border-radius: 4px;
    margin: 16px 0 28px;
}

.about-section {
    padding: 60px 0;
}
.about-section img {
    border-radius: 16px;
}
.inner-container {
    padding: 36px;
    background-color: var(--bumble-card);
    border-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}
/* ─── HOW IT WORKS ─── */
.how-section {
    padding: 60px 0;
    background: var(--gradient-soft);
}
.how-section .section-title {
    font-family: "Squada One", sans-serif;
    font-size: 3.25rem;
}
.steps-track {
    position: relative;
    margin-top: 70px;
}

.step-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
}
.step-num {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Squada One", serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    flex-shrink: 0;
    margin-right: 20px;
}
.step-item:hover .step-num {
    background: #fff;
    color: var(--bumble-red);
    border-color: transparent;
    box-shadow: 0 12px 36px rgba(153, 23, 47, 0.3);
    transform: scale(1.06);
}
.step-title {
    font-family: "Squada One", serif;
    font-size: 1.75rem;
    /* font-weight: 600; */
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: 0.5px;
}
.step-desc {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 140px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(153, 23, 47, 0.07) 0%,
        transparent 70%
    );
}
.cta-section::after {
    content: "";
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(153, 23, 47, 0.05) 0%,
        transparent 70%
    );
}
.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-headline {
    font-family: "Squada One", serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 28px;
}
.cta-headline em {
    font-style: italic;
    color: var(--crimson);
}
.cta-sub {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto 48px;
}
.btn-primary-custom {
    display: inline-block;
    background: var(--gradient-soft);
    color: #fff;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(153, 23, 47, 0.4);
}
.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 42px rgba(153, 23, 47, 0.5);
}
.btn-outline-custom {
    display: inline-block;
    background: transparent;
    color: var(--crimson);
    padding: 15px 38px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1.5px solid rgba(153, 23, 47, 0.3);
    transition: all 0.3s;
    margin-left: 16px;
}
.btn-outline-custom:hover {
    border-color: var(--crimson);
    background: var(--crimson-pale);
    color: var(--crimson-dark);
}

/* ─── FAQ ─── */
.faq-section {
    padding: 100px 0 120px;
    background: #fff;
}
.faq-list {
    margin-top: 50px;
    max-width: 780px;
}
.faq-item {
    border-bottom: 1px solid var(--border-light);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    gap: 20px;
    transition: color 0.2s;
}
.faq-question:hover {
    color: var(--crimson);
}
.faq-toggle {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(153, 23, 47, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--crimson);
    transition: all 0.3s;
}
.faq-item.open .faq-toggle {
    background: var(--crimson);
    color: #fff;
    transform: rotate(45deg);
    border-color: var(--crimson);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer {
    max-height: 300px;
}
.faq-answer-inner {
    padding: 0 0 28px;
    font-size: 0.93rem;
    color: var(--warm-gray);
    line-height: 1.9;
}
.biheyy-section {
    font-family: "DM Sans", sans-serif;
    background: #fdf8f5;
    border-radius: 24px;
    padding: 64px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    min-height: 540px;
    position: relative;
    overflow: hidden;
}

.biheyy-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #f9d4c8 0%, transparent 70%);
    z-index: 0;
}

.left-col {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c1614a;
    margin-bottom: 20px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bumble-red);
}

.headline {
    font-family: "DM Serif Display", serif;
    font-size: 52px;
    line-height: 1.08;
    color: #1a1210;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.headline em {
    font-style: italic;
    color: var(--bumble-red);
}

.subtext {
    font-size: 16px;
    line-height: 1.7;
    color: #7a6560;
    margin: 0 0 36px;
}

.store-btns {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.store-btns img {
    height: 64px;
    max-width: 100%;
}

.right-col {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-col img {
    height: 525px;
    width: auto;
}

.phone-notch {
    width: 72px;
    height: 22px;
    background: #1a1210;
    border-radius: 0 0 14px 14px;
    margin: 0 auto 0;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #fff8f5 0%, #fdeee8 100%);
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.screen-header {
    padding: 36px 16px 14px;
    text-align: center;
}

.app-logo-text {
    font-family: "DM Serif Display", serif;
    font-size: 20px;
    color: #1a1210;
    letter-spacing: -0.02em;
}

.app-tagline {
    font-size: 10px;
    color: #9a8480;
    margin-top: 2px;
    font-weight: 400;
}

.screen-body {
    flex: 1;
    padding: 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

.match-card {
    background: white;
    border-radius: 16px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: white;
}

.match-info {
    flex: 1;
    min-width: 0;
}

.match-name {
    font-size: 11.5px;
    font-weight: 500;
    color: #1a1210;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-meta {
    font-size: 9.5px;
    color: #9a8480;
    margin-top: 1px;
}

.match-badge {
    font-size: 9px;
    background: #fff0ec;
    color: #c1614a;
    padding: 3px 7px;
    border-radius: 20px;
    white-space: nowrap;
}

.notify-bar {
    margin: 0 12px;
    background: #1a1210;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notify-icon {
    font-size: 14px;
    line-height: 1;
}

.notify-text {
    font-size: 10px;
    color: #fdf8f5;
    font-weight: 400;
}

.notify-text strong {
    font-weight: 500;
    display: block;
    font-size: 11px;
}

.screen-footer {
    padding: 10px 16px 14px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #f0e8e4;
}

.tab-icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-heart {
    position: absolute;
    right: -20px;
    top: 80px;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-star {
    position: absolute;
    left: -24px;
    bottom: 100px;
    width: 48px;
    height: 48px;
    background: #fff0ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite 1s;
}
.match-detauls small {
    color: #000;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 680px) {
    .biheyy-section {
        display: flex;
        flex-direction: column;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }
    .store-btns {
        justify-content: center;
    }
    .right-col {
        order: -1;
    }
    .headline {
        font-size: 38px;
    }
}
@media only screen and (min-width: 992px) {
    .show-in-mobile {
        display: none !important;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .hero-photo-stack {
        display: none;
    }

    .hero-giant-text {
        font-size: clamp(70px, 10vw, 130px);
        margin-top: 20px;
    }

    .designed-section {
        padding: 0 0;
    }
}
/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .hamburger-btn {
        display: flex;
    }
    .steps-track {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .steps-track::before {
        display: none;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .stories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }
    .story-card:first-child {
        grid-row: auto;
    }
}
@media (max-width: 768px) {
    .search-panel {
        padding: 28px 24px;
        border-radius: 16px;
    }
    .search-row {
        flex-direction: column;
        gap: 12px;
    }
    .search-field {
        min-width: 100%;
    }
    .search-divider {
        display: none;
    }
    .search-btn {
        width: 100%;
        padding: 15px;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .steps-track {
        grid-template-columns: 1fr;
    }
    .stories-grid {
        grid-template-columns: 1fr;
    }
    .story-card:first-child .story-names {
        font-size: 1.8rem;
    }
    .testimonial-item {
        flex: 0 0 300px;
        padding: 30px;
    }
    .btn-outline-custom {
        margin-left: 0;
        margin-top: 14px;
    }
    .cta-inner .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.8rem;
    }
    .hero-sub {
        font-size: 0.9rem;
    }
    .inner-container {
        padding: 24px;
    }
    .designed-text {
        padding-top: 24px;
    }
    .product-card {
        padding: 20px;
    }
}
