/* ==========================================================================
   TABLE OF CONTENTS
   --------------------------------------------------------------------------
   1. Root Variables & Font Import
   2. Global Reset & Base Styles
   3. Navigation Bar
   4. Hero Slider & Animations
   5. General Buttons & Components
   6. Sections (Experience, Connect, Foundation, Elevate, Exclusive)
   7. Profiles & Testimonials
   8. Press, Events & Success Stories
   9. FAQ & Membership Plans
   10. Contact Us (Keep In Touch)
   11. Auth Pages (Login & Signup)
   12. Dashboard UI
   13. Floating Scroll Button
   14. Footer
   ========================================================================== */

/* ==========================================================================
   1. ROOT VARIABLES & FONT IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    /* Brand Colors */
    --aabruu-pink: #D4A62A;
    /* Primary Gold Accent */
    --aabruu-pink-dark: #B08C14;
    --aabruu-teal: #0B6D66;
    /* Secondary / Premium Accent */
    --aabruu-teal-dark: #084F4A;

    /* Neutrals */
    --ink: #1A1A1A;
    --body-text: #4B5563;
    --muted: #6B7280;
    --bg-soft: #F8F9FA;
    --border-soft: #E5E7EB;
    --footer-bg: #1F2937;

    /* Typography Scale */
    --fs-h2: clamp(1.9rem, 3.2vw, 2.6rem);
    --fs-h2-lg: clamp(2.1rem, 3.6vw, 3rem);

    /* Section Rhythm */
    --section-py: clamp(3.5rem, 6vw, 6rem);
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--body-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--ink);
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1240px;
    }
}

/* ==========================================================================
   3. NAVIGATION BAR
   ========================================================================== */
.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--ink) !important;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 0.15rem;
    height: 2px;
    background-color: var(--aabruu-pink);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--aabruu-pink) !important;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

.lang-select {
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 0.4rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* ==========================================================================
   4. HERO SLIDER & ANIMATIONS
   ========================================================================== */
.hero-slider {
    position: relative;
}

.hero-img {
    height: 100vh;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease;
}

.carousel-item.active .hero-img {
    transform: scale(1.12);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: left !important;
    left: 5% !important;
    right: auto !important;
}

.carousel-caption .animate-title {
    font-size: 1.6rem !important;
    font-weight: 700;
    line-height: 1.2;
}

.carousel-caption .animate-title strong {
    font-size: 2rem !important;
}

.carousel-caption .animate-text {
    font-size: 0.95rem !important;
    line-height: 1.6;
}

.animate-btn {
    opacity: 0;
    transform: translateY(60px);
}

.carousel-item.active .animate-title {
    animation: title 0.9s forwards;
}

.carousel-item.active .animate-text {
    animation: text 0.9s 0.3s forwards;
}

.carousel-item.active .animate-btn {
    animation: button 0.9s 0.6s forwards;
}

@keyframes title {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

@keyframes text {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

@keyframes button {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
}

@media (max-width: 991px) {
    .hero-img {
        height: 80vh;
    }

    .carousel-caption {
        bottom: 40%;
    }
}

@media (max-width: 768px) {
    .animate-title {
        font-size: 1.5rem !important;
    }

    .animate-text {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .hero-img {
        height: 70vh;
    }

    .carousel-caption {
        text-align: center !important;
        left: 10% !important;
        right: 10% !important;
    }
}

/* ==========================================================================
   5. GENERAL BUTTONS & COMPONENTS
   ========================================================================== */
.btn-aabruu {
    background-color: var(--aabruu-pink);
    border-color: var(--aabruu-pink);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.55rem 1.6rem;
}

.btn-aabruu:hover {
    background-color: var(--aabruu-pink-dark);
    border-color: var(--aabruu-pink-dark);
    color: #fff;
}

.btn-aabruu-sm {
    background-color: var(--aabruu-pink);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    padding: 8px 18px;
}

.btn-aabruu-sm:hover {
    background-color: var(--aabruu-pink-dark);
    color: #fff;
}

.btn-warning {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
}

.btn-teal {
    background-color: var(--aabruu-teal);
    border-color: var(--aabruu-teal);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.65rem 1.6rem;
}

.btn-teal:hover {
    background-color: var(--aabruu-teal-dark);
    border-color: var(--aabruu-teal-dark);
    color: #fff;
}

/* Section Headings */
.section-subtitle {
    display: inline-block;
    color: var(--aabruu-teal);
    background: #E6F2F1;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: var(--fs-h2-lg);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.section-description {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
}

/* Page Banner Header */
.page-banner {
    background: linear-gradient(135deg, rgba(8, 79, 74, 0.95) 0%, rgba(11, 109, 102, 0.9) 100%),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    padding: 60px 0;
    color: #fff;
    text-align: center;
}

.page-banner h1 {
    color: white;
    font-weight: bold;
}

/* Content Container Styling */
.content-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    padding: 40px 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.content-body h2 {
    color: var(--ink);
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body h3 {
    color: var(--aabruu-teal);
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-body p {
    line-height: 1.8;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.content-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.content-body ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.custom-callout {
    background-color: #F3FAF5;
    border-left: 4px solid var(--aabruu-teal);
    padding: 20px 24px;
    border-radius: 0 16px 16px 0;
    margin: 25px 0;
}

/* ==========================================================================
   6. SECTIONS (EXPERIENCE, CONNECT, FOUNDATION, ELEVATE, EXCLUSIVE)
   ========================================================================== */
/* Experience Section */
.experience-section {
    padding: var(--section-py) 0;
}

.experience-title {
    font-weight: 700;
    font-size: var(--fs-h2);
    color: var(--ink);
    margin-bottom: 2.5rem;
}

.experience-card {
    background-color: #F3FAF5;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.experience-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background-color: var(--aabruu-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.experience-icon i {
    font-size: 1.8rem;
    color: #ffffff;
}

.experience-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.experience-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Connect Section */
.connect-section {
    background: #fff;
}

.aabruu-gold .connect-heading {
    color: var(--aabruu-pink-dark);
}

.image-frame {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    border: 10px solid #AFAFAF;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.connect-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
}

.connect-heading {
    font-weight: 700;
    font-size: var(--fs-h2);
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.connect-img-wrap {
    padding-right: 10px;
}

.connect-content {
    padding-left: 10px;
}

.stat-card {
    background: #f3faf5;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--aabruu-pink-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.stat-card h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.stat-card p {
    margin: 6px 0 0;
    color: #666;
    font-size: 1rem;
}

/* Foundation Section */
.foundation-section {
    position: relative;
    padding: var(--section-py) 0;
    background: var(--bg-soft);
    overflow: hidden;
}

.foundation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #dfe7e7 2px, transparent 2px);
    background-size: 55px 55px;
    opacity: 0.6;
    z-index: 0;
}

.foundation-section .container {
    position: relative;
    z-index: 2;
}

.foundation-subtitle {
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--aabruu-pink-dark);
    margin-bottom: 10px;
}

.foundation-title {
    text-align: center;
    color: var(--aabruu-pink);
    font-size: var(--fs-h2-lg);
    font-weight: 700;
    margin-bottom: 3rem;
}

.foundation-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    height: 100%;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.foundation-card:hover {
    background: var(--aabruu-pink);
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.foundation-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #fff6dd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.35s ease;
}

.foundation-icon i {
    font-size: 1.5rem;
    color: var(--aabruu-pink);
    transition: all 0.35s ease;
}

.foundation-card h3 {
    font-size: 1.35rem;
    color: var(--aabruu-pink);
    font-weight: 700;
    margin-bottom: 0.9rem;
    line-height: 1.3;
    transition: color 0.35s ease;
}

.foundation-card p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    transition: color 0.35s ease;
}

.foundation-card:hover h3,
.foundation-card:hover p {
    color: #fff;
}

.foundation-card:hover .foundation-icon {
    background: #fff;
    transform: rotate(-8deg) scale(1.08);
}

.foundation-card:hover .foundation-icon i {
    color: var(--aabruu-pink);
}

/* Exclusive Section */
.exclusive-section {
    background: #fff;
    padding: var(--section-py) 0;
}

.exclusive-subtitle {
    color: var(--aabruu-pink);
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.exclusive-title {
    color: var(--aabruu-pink-dark);
    font-size: var(--fs-h2-lg);
    font-weight: 700;
    margin-bottom: 1rem;
}

.exclusive-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.exclusive-card {
    background: #fff;
    border: 1px solid rgba(11, 109, 102, 0.12);
    border-radius: 20px;
    padding: 2.5rem 1.9rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.exclusive-card:hover {
    background: var(--aabruu-pink);
    border-color: var(--aabruu-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 166, 42, 0.3);
}

.exclusive-icon {
    margin-bottom: 1.5rem;
}

.exclusive-icon i {
    color: var(--aabruu-pink);
    font-size: 2rem;
    transition: color 0.3s ease;
}

.exclusive-card:hover .exclusive-icon i {
    color: #fff;
}

.exclusive-card h4 {
    color: var(--aabruu-teal-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.exclusive-card:hover h4 {
    color: #fff;
}

.exclusive-card p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    transition: color 0.3s ease;
}

.exclusive-card:hover p {
    color: #fbeed4;
}

/* Elevate Section */
.elevate-section {
    position: relative;
    padding: var(--section-py) 0;
    background: url("../img/bg2.png") center center/cover no-repeat;
    overflow: hidden;
}

.elevate-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 84, 77, 0.82);
}

.elevate-subtitle {
    display: block;
    color: var(--aabruu-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.elevate-title {
    color: #fff;
    font-size: var(--fs-h2-lg);
    font-weight: 700;
}

.elevate-feature {
    background: rgba(42, 118, 108, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 34px;
    backdrop-filter: blur(10px);
}

.elevate-feature h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
}

.elevate-feature p {
    color: #dce9e6;
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

.elevate-card {
    background: rgba(42, 118, 108, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
}

.elevate-card:hover {
    transform: translateY(-6px);
    border-color: var(--aabruu-pink);
}

.elevate-card h5 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 1rem 0 0.6rem;
}

.elevate-card p {
    color: #dbe6e3;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

.elevate-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aabruu-pink);
    font-size: 1.6rem;
}

.elevate-icon.large {
    width: 60px;
    height: 60px;
    background: var(--aabruu-pink);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.elevate-btn {
    background: var(--aabruu-pink);
    color: #fff;
    padding: 0.9rem 2.4rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
}

.elevate-btn:hover {
    background: var(--aabruu-pink-dark);
    color: #fff;
}



/*===================================
 Download App
===================================*/

.download-app {

    background: #f8f6f5;

    padding: 80px 0;

}

.download-box {

    /*background:#fff;*/

    overflow: hidden;

}

.download-image {

    height: 100%;

}

.download-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    min-height: 420px;

}

/* Right Side */

.download-content {

    background: #0d5a48;

    color: #fff;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 70px;

    border-radius: 0 20px 20px 0;

}

.download-content h2 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 30px;

    color: #fff;

}

.download-content p {

    font-size: 18px;

    line-height: 1.8;

    color: #f1f1f1;

    max-width: 420px;

    margin-bottom: 35px;

}

.store-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.store-buttons img {

    height: 48px;

    transition: .3s;

}

.store-buttons img:hover {

    transform: translateY(-4px);

}

/* Responsive */

@media(max-width:991px) {

    .download-content {

        padding: 50px 35px;

    }

    .download-image img {

        min-height: 320px;

    }

}

@media(max-width:767px) {

    .download-content {

        text-align: center;

        align-items: center;

    }

    .download-content p {

        max-width: 100%;

    }

    .store-buttons {

        justify-content: center;

    }

    .download-content h2 {

        font-size: 28px;

    }

}

/* ==========================================================================
   7. PROFILES & TESTIMONIALS
   ========================================================================== */
.profiles-section {
    background: #fff;
    padding: var(--section-py) 0;
}

.profile-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.profile-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.profile-card:hover img {
    transform: scale(1.08);
}

.profile-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 79, 74, 0.65), rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0));
}

/* .match-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--aabruu-teal);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    z-index: 2;
} */

.match-badge {
    position: absolute;
    top: 12px;
    right: 10px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--aabruu-teal);
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 30px;
    font-size: 0.7rem;
    z-index: 2;
}

.profile-info {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
}

.profile-info h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.profile-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.profile-info i {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 6px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-soft);
    padding: var(--section-py) 0;
    position: relative;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonial {
    margin: 0 -15px;
}

.testimonial .slick-slide {
    margin: 0 15px;
}

.testimonial .slick-list {
    padding: 15px 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--aabruu-pink);
    transition: all 0.35s ease;
    margin: 10px;
}

.testimonial-card.border-green {
    border-top: 4px solid var(--aabruu-teal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--aabruu-pink);
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    flex: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #a8f0ea;
    color: var(--aabruu-teal-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin-right: 14px;
    flex-shrink: 0;
}

.testimonial-user h6 {
    color: var(--aabruu-teal);
    margin-bottom: 2px;
    font-size: 1.05rem;
    font-weight: 600;
}

.testimonial-user small {
    color: var(--muted);
    font-size: 0.85rem;
}

.testimonial .slick-prev,
.testimonial .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.testimonial .slick-prev:before,
.testimonial .slick-next:before {
    color: var(--aabruu-teal);
    font-size: 22px;
}

/* ==========================================================================
   8. PRESS, EVENTS & SUCCESS STORIES
   ========================================================================== */
.press-section {
    position: relative;
    background: var(--aabruu-teal-dark) url("../img/bg1.png") center 15% / cover no-repeat;
    padding: var(--section-py) 0;
    text-align: center;
    min-height: 650px;
    display: flex;
    align-items: stretch;
}

.press-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 40, 38, 0.82);
}

.press-section .container.position-relative {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.press-title {
    font-weight: 800;
    font-size: var(--fs-h2);
    color: #fff;
    margin-bottom: 3rem;
}

.press-section .row {
    justify-content: flex-start !important;
    text-align: left;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 2.75rem 2.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.event-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--aabruu-pink);
    margin-bottom: 0.75rem;
}

.event-heading {
    font-weight: 700;
    font-size: 1.7rem;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.event-body {
    color: #d7e9e5;
    font-size: 1rem;
    line-height: 1.7;
}

.event-btn-outline {
    border: 1.5px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    padding: 0.55rem 1.6rem;
}

.event-btn-outline:hover {
    background: #fff;
    color: var(--aabruu-teal-dark);
}

/* Success Stories */
.real-stories-section {
    padding: var(--section-py) 0;
}

.slider,
.slider2 {
    margin: 0 -15px;
}

.slider .slick-slide,
.slider2 .slick-slide {
    margin: 0 15px;
}

.slider img,
.slider2 img {
    border-radius: 20px 20px 0px 0px;
}

.story-item {
    border: 1px solid #cccccc;
    border-radius: 20px;
    padding: 5px;
    min-height: 450px;
}

.story-content {
    border-radius: 20px;
    padding: 20px;
    margin-top: 10px;
}

.story-content h5 {
    font-weight: bold;
}

.slick-prev:before {
    content: '❮';
    color: black !important;
}

.slick-next:before {
    content: '❯';
    color: black !important;
}

.slick-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}

.slick-arrow:hover {
    background-color: var(--aabruu-pink);
    color: white;
    transition: all 0.3s ease;
}

/* ==========================================================================
   9. FAQ & MEMBERSHIP PLANS
   ========================================================================== */
/* FAQ Section */
.faq-section {
    background: var(--bg-soft);
    padding: var(--section-py) 0;
}

.faq-title {
    font-size: var(--fs-h2);
    color: var(--ink);
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border-soft);
    background: #fff;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: #fff;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 20px 26px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--aabruu-teal);
}

.faq-accordion .accordion-body {
    background: #fff;
    border-top: 1px solid var(--border-soft);
    padding: 20px 26px;
    color: var(--body-text);
    font-size: 1rem;
    line-height: 1.75;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "⌃";
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--aabruu-pink);
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

/* Membership Plans Section */
.plans-section {
    padding: var(--section-py) 0;
}

.plans-eyebrow {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.plans-heading {
    font-weight: 800;
    font-size: var(--fs-h2);
    color: var(--ink);
    margin-bottom: 3rem;
}

.plans-heading span {
    color: var(--aabruu-pink);
}

.plan-card {
    border-radius: 16px;
    padding: 2.5rem 2rem;
    height: 100%;
}

.plan-card.plan-free {
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.plan-card.plan-paid {
    background-color: var(--aabruu-pink);
    color: #fff;
}

.plan-card.plan-silver {
    background-color: #6c757d;
}

.plan-divider {
    width: 50px;
    height: 3px;
    background-color: var(--aabruu-pink);
    border-radius: 3px;
    margin-bottom: 1.25rem;
}

.plan-card.plan-paid .plan-divider {
    background-color: #fff;
}

.plan-name {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.75rem;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.15rem;
    font-weight: 600;
    font-size: 1.02rem;
}

.plan-list li i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 2px solid var(--aabruu-pink);
    color: var(--aabruu-pink);
}

.plan-card.plan-paid .plan-list li i {
    border-color: #fff;
    color: #fff;
}

.plan-list li.unavailable {
    color: #a9b2c3;
    font-weight: 500;
}

.plan-list li.unavailable i {
    border-color: #d7dce4;
    color: #d7dce4;
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.85rem;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    border: none;
}

.plan-btn.plan-btn-free {
    background-color: var(--aabruu-pink);
    color: #fff;
}

.plan-btn.plan-btn-free:hover {
    background-color: var(--aabruu-pink-dark);
    color: #fff;
}

.plan-btn.plan-btn-paid {
    background-color: #fff;
    color: var(--aabruu-pink);
}

.plan-btn.plan-btn-paid:hover {
    background-color: #f5f5f5;
    color: var(--aabruu-pink-dark);
}

/* ==========================================================================
   10. CONTACT US (KEEP IN TOUCH)
   ========================================================================== */
.contact-touch-section {
    background-color: #F4F8F5;
    padding: 50px 0;
}

.contact-touch-section .form-label {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 6px;
}

.contact-touch-section .text-danger {
    color: #D9534F !important;
}

.contact-touch-section .form-control {
    border: 1px solid #707070;
    border-radius: 4px;
    padding: 10px 14px;
    background-color: #ffffff;
}

.contact-touch-section .form-control:focus {
    box-shadow: none;
    border-color: #0B6D66;
}

.contact-touch-section .btn-submit-touch {
    background-color: #00A651;
    color: #ffffff;
    font-weight: 600;
    padding: 10px 32px;
    border-radius: 4px;
    border: none;
    transition: all 0.3s ease;
}

.contact-touch-section .btn-submit-touch:hover {
    background-color: #008742;
}

/* ==========================================================================
   11. AUTH PAGES (LOGIN & SIGNUP)
   ========================================================================== */
.auth-wrapper {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, rgba(212, 166, 42, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(11, 109, 102, 0.08), transparent 40%);
}

.auth-card-advanced {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 0.8);
    overflow: hidden;
    max-width: 980px;
    width: 100%;
}

/*.auth-left-banner {*/
/*    background: linear-gradient(135deg, rgba(8, 79, 74, 0.92) 0%, rgba(11, 109, 102, 0.88) 100%),*/
/*        url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;*/
/*    padding: 48px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    justify-content: space-between;*/
/*    color: #ffffff;*/
/*    position: relative;*/
/*}*/


.auth-left-banner {
    background:
        linear-gradient(
            135deg,
            rgba(75, 58, 175, 0.95) 0%,
            rgba(83, 67, 190, 0.94) 35%,
            rgba(111, 55, 198, 0.92) 70%,
            rgba(143, 39, 207, 0.90) 100%
        ),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=800&q=80')
        center / cover no-repeat;

    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    position: relative;
}

.auth-tab-pill {
    background: #F3F4F6;
    padding: 6px;
    border-radius: 50px;
    display: flex;
}

.auth-tab-pill .nav-link {
    flex: 1;
    text-align: center;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 700;
    color: #6B7280;
    border: none;
    transition: all 0.3s ease;
}

.auth-tab-pill .nav-link.active {
    background: var(--aabruu-pink);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(11, 109, 102, 0.25);
}

.form-input-group {
    position: relative;
}

.form-input-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 1.1rem;
    z-index: 5;
}

.form-input-group .form-control,
.form-input-group .form-select {
    padding-left: 48px;
    height: 52px;
    border-radius: 14px;
    border: 1.5px solid #E5E7EB;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.form-input-group .form-control:focus,
.form-input-group .form-select:focus {
    border-color: var(--aabruu-pink);
    box-shadow: 0 0 0 4px rgba(11, 109, 102, 0.1);
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9CA3AF;
    z-index: 5;
}

.btn-social {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    transition: all 0.25s ease;
}

.btn-social:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    transform: translateY(-1px);
}

/* ==========================================================================
   12. DASHBOARD UI
   ========================================================================== */
.dashboard-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dash-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.dash-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #4B5563;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dash-menu-link:hover,
.dash-menu-link.active {
    background-color: rgba(11, 109, 102, 0.08);
    color: var(--aabruu-teal);
}

.user-avatar-dash {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--aabruu-pink);
}

.match-card-grid {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.match-card-grid:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.match-score {
    background: rgba(11, 109, 102, 0.9);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.app-promo-banner {
    background: linear-gradient(135deg, var(--aabruu-teal-dark) 0%, var(--aabruu-teal) 100%);
    border-radius: 24px;
    color: #fff;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.qr-box {
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    display: inline-block;
}

.qr-box img {
    width: 110px;
    height: 110px;
}

.referral-box {
    background: #F3FAF5;
    border: 1.5px dashed var(--aabruu-teal);
    border-radius: 16px;
    padding: 20px;
}

/* ==========================================================================
   13. FLOATING SCROLL BUTTON
   ========================================================================== */
.scroll-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background-color: #0B6D66;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

.scroll-toggle-btn:hover {
    background-color: #D4A62A;
    transform: translateY(-3px);
    color: #ffffff;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
footer {
    background: #111827;
    color: #cbd2dc;
    padding-top: 3.5rem;
    padding-bottom: 0;
}

footer .container {
    width: 90%;
    margin: auto;
}

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

footer h6 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
}

footer a {
    display: block;
    color: #cfcfcf;
    text-decoration: none;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--aabruu-pink);
}

.copyright-bar {
    background-color: #000000 !important;
    border-top: 1px solid #222;
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--aabruu-pink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #d81b60;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* App Store Download Badges */
.app-download img {
    width: 160px;
    max-width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-download a {
    display: inline-block;
    margin-bottom: 0;
}

.app-download img:hover {
    transform: scale(1.04);
}

/* Mobile Media Queries */
@media (max-width: 991px) {

    .connect-img-wrap,
    .connect-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .foundation-card {
        padding: 32px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {

    .exclusive-card,
    .press-section,
    .event-card,
    footer {
        text-align: center;
    }

    .press-section .row,
    .event-card .d-flex,
    .footer-logo,
    .social-icons,
    .app-download {
        justify-content: center !important;
    }

    .app-download img {
        width: 150px;
    }

    .content-card {
        padding: 24px 20px;
    }
}

    .social-auth-wrapper {
        width: 100%;
        max-width: 495px;
        margin: 0 auto;
    }

    /* OR Divider */
    .or-divider {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-top: 20px;
        margin-bottom: 20px;
        color: #9b7286;
        font-size: 16px;
    }

    .or-divider::before,
    .or-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background-color: #e5d7de;
    }

    .or-divider span {
        line-height: 1;
        white-space: nowrap;
    }

    /* Social Buttons */
    .social-btn {
        width: 100%;
        height: 58px;
        border-radius: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    /* Google */
    .google-btn {
        background: #fff;
        color: #292929;
        border: 2px solid #dedede;
    }

    .google-btn:hover {
        background: #f8f8f8;
        color: #292929;
        border-color: #cfcfcf;
    }

    .google-icon {
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 21px;
        font-weight: 700;
        font-family: Arial, sans-serif;
    }

    /* Apple */
    .apple-btn {
        margin-top: 16px;
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }

    .apple-btn:hover {
        background: #171717;
        color: #fff;
    }

    .apple-icon {
        font-size: 22px;
        line-height: 1;
    }

    /* Terms */
    .terms-text {
        margin-top: 18px;
        text-align: center;
        color: #956f83;
        font-size: 16px;
        line-height: 1.5;
    }

    .terms-text a {
        color: #956f83;
        text-decoration: none;
    }

    .terms-text a:hover {
        text-decoration: underline;
    }

    @media (max-width: 576px) {
        .social-auth-wrapper {
            max-width: 100%;
        }

        .social-btn {
            height: 56px;
            font-size: 16px;
        }

        .terms-text {
            font-size: 14px;
        }
    }