/* Global Styles for PAIRED [M] - Final Absolute Parity Refinement */

:root {
    --primary-red: #A30000;
    /* Vibrant yet deep brand red */
    --hover-red: #8B0000;
    --white: #ffffff;
    --text-dark: #222222;
    --text-grey: #444444;
    --nav-height: 75px;
    /* Slimmer nav as per reference */
    --font-inter: 'Inter', sans-serif;
    --transition: all 0.2s ease-in-out;
    /* Spacing System */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    /* Typography Scale */
    --text-xs: 11px;
    --text-sm: 13px;
    --text-base: 15px;
    --text-lg: 17px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 32px;
    --text-4xl: 48px;
    --text-5xl: 56px;
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    /* Hidden by default */
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in.is-visible {
    animation: fadeIn 1s ease-out forwards;
}

.animate-scale-in.is-visible {
    animation: scaleIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Stagger Delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    padding-top: var(--nav-height) !important;
    /* Space for fixed nav */
    font-family: var(--font-inter);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

/* --- NAVIGATION --- */
.custom-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--white);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.nav-toggle-input {
    display: none;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1002;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.nav-link-item {
    text-decoration: none !important;
    color: var(--text-grey);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link-item:hover {
    color: var(--primary-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.burger-menu {
    display: none;
    font-size: 24px;
    color: var(--primary-red);
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
    transition: var(--transition);
}

.burger-menu:hover {
    color: var(--hover-red);
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.nav-toggle-input:checked~.mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    position: absolute;
    /* Keep header at the top */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    height: 40px;
}

.close-menu {
    font-size: 26px;
    color: #666;
    padding: 6px;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-menu:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.mobile-links {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.mobile-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
}

.mobile-actions .login-link {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border: 2px solid var(--primary-red);
    border-radius: 12px;
    color: var(--primary-red);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    transition: var(--transition);
    background: transparent;
}

.mobile-actions .login-link:hover {
    background: rgba(163, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(163, 0, 0, 0.08);
}

.mobile-actions .signup-btn {
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    background: var(--primary-red);
    color: var(--white);
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(163, 0, 0, 0.15);
}

.mobile-actions .signup-btn:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(163, 0, 0, 0.25);
}

/* --- Responsive Logic --- */

/* 860px - Hide Actions (Login/Signup), show Burger */
@media (max-width: 860px) {
    .nav-actions.desktop-nav {
        display: none !important;
    }

    .burger-menu {
        display: block !important;
    }

    /* Links stay visible at 860px */
    .nav-links.desktop-nav {
        display: flex !important;
    }

    /* Hide links in mobile menu at 860px */
    .mobile-links {
        display: none;
    }
}

/* 760px - Hide Nav Links as well */
@media (max-width: 760px) {
    .nav-links.desktop-nav {
        display: none !important;
    }

    /* Show links in mobile menu at 760px */
    .mobile-links {
        display: flex;
    }

    .nav-logo img {
        height: 44px;
    }
}

/* UI Fix: Hide Burger and Logo when Menu is Open */
.nav-toggle-input:checked~.nav-container .burger-menu {
    visibility: hidden;
}

.nav-toggle-input:checked~.nav-container .nav-logo {
    opacity: 0.1;
    /* Fade logo slightly to emphasize mobile menu */
    pointer-events: none;
}

.login-link {
    text-decoration: none !important;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.signup-btn {
    background: var(--primary-red);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.signup-btn:hover {
    background: var(--hover-red);
    color: var(--white);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    background-image: url('../images/hero section.png'), linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.85) 50%, rgba(255, 255, 255, 0.95) 100%);
    background-size: cover, 100% 100%;
    background-position: top right, center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 650px;
    display: block;
    /* Block layout ensures it starts at the top */
}

/* Smooth curves overlay for cleaner look */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(255, 240, 245, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 70%, rgba(248, 249, 250, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    display: block;
    /* Removing flex to avoid any centering logic */
}

.hero-content {
    max-width: 650px;
    padding-top: 28px;
    position: relative;
    z-index: 2;
    /* Precise gap from Navbar */
}

.premium-badge {
    display: inline-block;
    padding: 8px 14px;
    background: #FFF5F5;
    border: 1px solid rgba(163, 0, 0, 0.2);
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 22px;
    letter-spacing: -0.015em;
}

.text-red {
    color: var(--primary-red);
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 18px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 36px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(163, 0, 0, 0.22);
}

.btn-primary:hover {
    background: var(--hover-red);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(163, 0, 0, 0.28);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    padding: 13px 36px;
    border-radius: 10px;
    border: 2.5px solid var(--primary-red);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
    background: rgba(163, 0, 0, 0.04);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

/* --- FEATURES BOX --- */
.features-box-wrapper {
    max-width: 1200px;
    margin: 55px auto 0;
    padding: 0 15px;
}

.features-box {
    background: #FFFAF1;
    border: 1.5px solid #E6D5B8;
    border-radius: 24px;
    padding: 35px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 46px;
    height: 46px;
    border: 1.5px solid #E6D5B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 16px;
    margin-bottom: 18px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.025);
}

.feature-text h4 {
    font-size: 14.5px;
    font-weight: 800;
    color: #222;
    margin-bottom: 7px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 12.5px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    max-width: 220px;
}

/* --- MOBILE APP NOTICE --- */
.mobile-app-notice {
    background: #FFF5F5;
    color: var(--primary-red);
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

/* --- FOOTER --- */
.main-footer {
    background: linear-gradient(to right, #ff2a2a 0%, #d40000 40%, #a80000 75%, #7a0000 100%);
    /* Deep Vibrant Red */
    color: #ffffff;
    padding-top: 85px;
    /* Reduced padding */
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-top-row {
    display: flex;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 35px;
    /* Reduced padding */
    gap: 30px;
    align-items: flex-start;
}

/* Brand Tab Logic */
.brand-tab-container {
    flex-shrink: 0;
    margin-right: 40px;
}

.brand-tab {
    background-color: #ffffff;
    padding: 18px 50px 18px 40px;
    /* Reduced for sleekness */
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-left: -500px;
    /* Pull left */
    padding-left: 500px;
    margin-top: 35px;
    /* Push content back */
}

.brand-tab img {
    height: 48px;
    /* Reduced height */
    width: auto;
    display: block;
    position: relative;
    z-index: 2;
}

/* Footer Links */
.footer-links-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 2fr;
    gap: 20px;
    padding-right: 20px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Social & Mission */
.social-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-row a {
    color: #ffffff;
    font-size: 18px;
    transition: 0.2s;
}

.social-row a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.mission-statement {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 350px;
    margin: 0;
}

/* Divider Line */
.footer-divider-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Bottom Bar */
.footer-bottom-row {
    padding: 20px 0;
}

.bottom-content {
    max-width: 1300px;
    /* Match top row width */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.copyright-text {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-top-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .brand-tab {
        margin-left: 0;
        padding-left: 40px;
        border-radius: 60px;
    }

    .footer-links-container {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .footer-links-container {
        grid-template-columns: 1fr;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .features-box {
        grid-template-columns: 1fr;
    }

    .bottom-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- PROCESS SECTION (HOW IT WORKS) --- */
.process-section {
    padding: 95px 0;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.process-header {
    text-align: center;
    margin-bottom: 65px;
}

.process-label {
    color: #D4AF37;
    /* Gold color matching reference */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 14px;
}

.process-title {
    font-size: 46px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.65;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 40px;
}

/* --- VIDEO CARD --- */
.video-preview-area {
    position: relative;
}

.video-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
    aspect-ratio: 16 / 10;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.play-btn {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: var(--transition);
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.video-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}

.video-tag {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 5px;
}

.video-caption {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* --- TIMELINE --- */
.timeline-area {
    position: relative;
    padding-left: 20px;
    align-self: flex-start;
}

.timeline-line {
    position: absolute;
    left: 43px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background-color: #E6D5B8;
    z-index: 1;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 42px;
    position: relative;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    width: 46px;
    height: 46px;
    background: var(--primary-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(163, 0, 0, 0.2);
    position: absolute;
    left: 0;
    top: 2px;
}

.timeline-text {
    padding-left: 70px;
}

.timeline-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 8px;
    line-height: 1.3;
}

.timeline-text p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .process-section {
        padding: 70px 0;
    }

    .timeline-line {
        left: 37px;
    }

    .timeline-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .timeline-item {
        gap: 20px;
    }
}

/* --- CTA BANNER --- */
.cta-banner {
    background: linear-gradient(135deg, #E53935 0%, #D32F2F 20%, #C62828 40%, #B71C1C 60%, #A30000 80%, #8B0000 100%);
    padding: 45px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-started {
    display: inline-block;
    background: #FFF9E6;
    color: #8B0000;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-started:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* --- TRUST & VALUES SECTION --- */
.trust-section {
    background-color: #F39C12;
    /* geometric pattern with reduced intensity */
    background-image: radial-gradient(circle at 100% 150%, rgba(243, 156, 18, 0.2) 24%, rgba(230, 126, 34, 0.12) 25%, rgba(230, 126, 34, 0.08) 28%, rgba(243, 156, 18, 0.2) 29%, rgba(243, 156, 18, 0.2) 36%, rgba(230, 126, 34, 0.08) 36%, rgba(230, 126, 34, 0.12) 40%, transparent 40%, transparent), radial-gradient(circle at 0 150%, rgba(243, 156, 18, 0.2) 24%, rgba(230, 126, 34, 0.12) 25%, rgba(230, 126, 34, 0.08) 28%, rgba(243, 156, 18, 0.2) 29%, rgba(243, 156, 18, 0.2) 36%, rgba(230, 126, 34, 0.08) 36%, rgba(230, 126, 34, 0.12) 40%, transparent 40%, transparent), radial-gradient(circle at 50% 100%, rgba(230, 126, 34, 0.06) 10%, rgba(243, 156, 18, 0.12) 11%, rgba(243, 156, 18, 0.2) 23%, rgba(230, 126, 34, 0.08) 24%, rgba(230, 126, 34, 0.12) 30%, rgba(243, 156, 18, 0.2) 31%, rgba(243, 156, 18, 0.2) 43%, rgba(230, 126, 34, 0.08) 44%, rgba(230, 126, 34, 0.12) 50%, rgba(243, 156, 18, 0.2) 51%, rgba(243, 156, 18, 0.2) 63%, rgba(230, 126, 34, 0.08) 64%, rgba(230, 126, 34, 0.12) 71%, transparent 71%, transparent);
    background-size: 120px 60px;
    padding: 40px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 80px;
}

.trust-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-title {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.trust-subtitle {
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* --- HORIZONTAL PROCESS --- */
.horizontal-process {
    position: relative;
    max-width: 800px;
    margin: 40px auto 50px;
    padding: 0 40px;
}

.process-line {
    position: absolute;
    top: 25px;
    left: 100px;
    right: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.p-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.p-icon {
    width: 50px;
    height: 50px;
    background: #A30000;
    border: 3px solid #F39C12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.p-step span {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.85;
    display: block;
    margin-bottom: 6px;
}

.p-step h4 {
    font-size: 16px;
    font-weight: 800;
}

/* --- SCHOLAR CARDS --- */
.scholar-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1050px;
    margin: 0 auto;
}

.s-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    transition: var(--transition);
}

.s-card:hover {
    transform: translateY(-5px);
}

.card-img {
    position: relative;
    aspect-ratio: 16 / 10;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.card-play:hover {
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.card-body {
    padding: 20px 15px;
    text-align: center;
}

.card-body p {
    color: #444;
    font-size: 13.5px;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.5;
}

.scholar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFF9E6;
    border: 1px solid #D4AF37;
    padding: 5px 12px;
    border-radius: 50px;
    color: #8B4513;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 991px) {
    .scholar-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .horizontal-process {
        padding: 0;
        max-width: 350px;
    }

    .process-line {
        display: none;
    }

    .p-step {
        margin-bottom: 40px;
    }
}

/* --- INDEPENDENT COORDINATORS SECTION --- */
.coordinator-section {
    padding: 75px 0;
    background: #fff;
}

.coordinator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4AF37;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.coordinator-content .section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    color: #D4AF37;
    margin-bottom: 22px;
}

.section-text {
    font-size: 15.5px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.feature-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.f-item {
    background: #D49C2D;
    border-radius: 8px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.f-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    flex-shrink: 0;
}

.f-text h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.f-text p {
    font-size: 14px;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
}

.btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2d2d2d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: var(--transition);
}

.btn-learn:hover {
    background: #000;
    transform: translateX(5px);
}

.coordinator-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* --- COORDINATOR RESPONSIVE --- */
@media (max-width: 991px) {
    .coordinator-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .feature-badge {
        justify-content: center;
    }

    .coordinator-content {
        order: 2;
    }

    .coordinator-content .section-title,
    .section-text {
        text-align: center;
    }

    .feature-items {
        align-items: center;
    }

    .f-item {
        max-width: 500px;
        text-align: left;
    }

    .coordinator-image {
        order: 1;
    }
}

/* --- SAFETY SECTION --- */
.safety-section {
    padding: 58px 0;
    background-color: #F0FFF4;
    /* Light mint green background */
    position: relative;
    overflow: hidden;
}

.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4AF37;
    /* Gold/Mustard */
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.15);
}

.safety-title {
    font-size: 30px;
    font-weight: 800;
    color: #D4AF37;
    /* Matching Gold */
    line-height: 1.25;
    margin-bottom: 14px;
}

.safety-desc {
    font-size: 14.5px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 500px;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
}

.s-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #D4AF37;
    padding: 12px 25px;
    border-radius: 50px;
    /* increased radius */
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    cursor: default;
}

.s-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.sf-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.sf-text h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 3px 0;
    color: #fff;
}

.sf-text p {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.safety-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.safety-image img {
    width: 100%;
    max-width: 300px;
    /* Reduced size */
    height: auto;
    display: block;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
    animation: floatSafety 6s ease-in-out infinite;
}

@keyframes floatSafety {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* --- RESPONSIVE SAFETY --- */
@media (max-width: 991px) {
    .safety-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .safety-features {
        margin: 0 auto;
        width: 100%;
    }

    .s-feature {
        text-align: left;
        padding: 15px;
    }

    .safety-image {
        order: -1;
    }

    .safety-title {
        font-size: 28px;
    }

    .safety-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- REGISTRATION & MATCHING SECTION --- */
.registration-section {
    padding: 95px 0;
    background: #fff;
}

.reg-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 58px;
}

.reg-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.2;
}

.reg-subtitle {
    font-size: 15.5px;
    color: #666;
    line-height: 1.65;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.reg-card {
    border-radius: 18px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.reg-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.rc-icon {
    width: 45px;
    height: 45px;
    /* border: 1px solid #eee; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #444;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rc-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.rc-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* Card Variants */
.card-wali {
    background: #FFF9E6;
    border: 1.5px solid #FFEeba;
}

.card-default {
    background: #fff;
    border: 1.5px solid #e5e5e5;
}

.card-focus {
    background: #D4AF37;
    /* Gold */
    color: #fff;
    border: 1.5px solid #D4AF37;
}

.card-focus .rc-title,
.card-focus .rc-text,
.card-focus .rc-icon {
    color: #fff;
}

.card-focus .rc-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* Inner UI Mocks */
.rc-preview {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
}

.preview-label {
    font-size: 10px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.preview-input {
    font-size: 14px;
    font-weight: 700;
    color: #D4AF37;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rc-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mock-input,
.mock-dropdown {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mock-dropdown i {
    color: #999;
    font-size: 12px;
}

.rc-toggles {
    display: flex;
    gap: 10px;
}

.mock-toggle {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
}

.mock-toggle.active {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* --- RESPONSIVE REGISTRATION --- */
@media (max-width: 991px) {
    .reg-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .reg-grid {
        grid-template-columns: 1fr;
    }

    .reg-title {
        font-size: 32px;
    }
}

/* --- COMMUNITY TRUST CTA SECTION --- */
.trust-cta-section {
    padding: 95px 0;
    text-align: center;
    background: #fff;
    /* border-top: 1px solid #f0f0f0; */
}

.trust-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.trust-cta-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 22px;
    line-height: 1.2;
}

.trust-cta-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 38px;
}

.btn-trust-cta {
    display: inline-block;
    background-color: #C62828;
    /* Red */
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 45px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.btn-trust-cta:hover {
    background-color: #B71C1C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

@media (max-width: 768px) {
    .trust-cta-title {
        font-size: 32px;
    }
}

/* --- PAY PER USE SECTION --- */
.pay-per-use-section {
    padding: 58px 0;
    background-color: #FFF9E6;
    /* Cream background */
}

.ppu-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 38px;
}

.ppu-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 14px;
}

.ppu-subtitle {
    font-size: 15.5px;
    color: #666;
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

/* Wallet Mockup */
.wallet-mockup {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.wallet-card {
    background: #1a1a1a;
    color: #fff;
    width: 320px;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.wallet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wallet-label {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 500;
}

.wallet-icon {
    font-size: 20px;
    opacity: 0.7;
}

.wallet-balance {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
}

.wallet-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.wallet-status {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 25px;
}

.status-active {
    color: #4CAF50;
    font-weight: 700;
}

.btn-add-credits {
    width: 100%;
    background: #FF3333;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-credits:hover {
    background: #E60000;
}

/* Steps */
.ppu-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.steps-connector {
    position: absolute;
    top: 25px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #E6D5B8;
    z-index: 0;
}

.ppu-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-badge {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #E6D5B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.step-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    width: 100%;
    transition: var(--transition);
    border: 1px solid #f5f5f5;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
}

.step-img {
    position: relative;
    height: 150px;
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.step-body {
    padding: 20px;
}

.step-body h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-body p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* --- RESPONSIVE PAY PER USE --- */
@media (max-width: 991px) {
    .ppu-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .steps-connector {
        display: none;
    }

    .ppu-title {
        font-size: 32px;
    }
}

/* --- SUCCESS STORIES SECTION --- */
.success-stories-section {
    padding: 95px 0;
    background-color: #fff;
    text-align: center;
}

.ss-header {
    max-width: 800px;
    margin: 0 auto 58px;
}

.ss-badge {
    display: inline-block;
    background-color: #FFEBEE;
    color: #D32F2F;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.ss-badge i {
    margin-right: 5px;
}

.ss-title {
    font-size: 40px;
    font-weight: 800;
    color: #C62828;
    /* Red Title */
    margin-bottom: 14px;
    line-height: 1.2;
}

.ss-subtitle {
    font-size: 15.5px;
    color: #666;
    line-height: 1.6;
}

.ss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ss-card {
    background: #fff;
    border: 1.5px solid #eeeeee;
    border-radius: 18px;
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.ss-card:hover {
    border-color: #D4AF37;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.ss-rating {
    color: #D32F2F;
    /* Red Stars */
    font-size: 14px;
    margin-bottom: 20px;
}

.ss-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #f0f0f0;
}

.ss-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
}

.ss-divider {
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.ss-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ss-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.ss-info {
    flex-grow: 1;
}

.ss-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}

.ss-location {
    font-size: 12px;
    color: #888;
}

.ss-verified {
    background-color: #D4AF37;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}

/* --- RESPONSIVE SUCCESS STORIES --- */
@media (max-width: 991px) {
    .ss-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .ss-title {
        font-size: 32px;
    }
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    padding: 60px 0;
    background-color: #fff;
}

.cta-card {
    background: radial-gradient(circle at 80% 20%, #E53935 0%, #D32F2F 25%, #C62828 50%, #B71C1C 70%, #A30000 85%, #8B0000 100%);
    /* Smooth Deep Red Gradient */
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    color: #fff;
    max-width: 1050px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(183, 28, 28, 0.25);
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.25;
}

.cta-subtitle {
    font-size: 15.5px;
    opacity: 0.92;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-cta-primary {
    background-color: #E53935;
    /* Lighter Red */
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    background-color: #F44336;
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.cta-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 60%;
    margin: 0 auto 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

/* --- RESPONSIVE CTA --- */
@media (max-width: 768px) {
    .cta-card {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .cta-divider {
        width: 80%;
    }
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    padding: 60px 0 100px;
    background-color: #fff;
}

.newsletter-card {
    background: url('../images/subscribe image.png');
    /* Set image as main background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Simulated Floral Background Effect - REMOVED/HIDDEN as it's now main bg */
.newsletter-bg-decoration {
    display: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.newsletter-input-group {
    position: relative;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    max-width: 450px;
    border: 1px solid #eee;
}

.newsletter-input {
    border: none;
    background: transparent;
    padding: 15px 25px;
    flex-grow: 1;
    border-radius: 50px;
    outline: none;
    color: #333;
}

.newsletter-input::placeholder {
    color: #aaa;
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background-color: #D32F2F;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 5px;
}

.newsletter-btn:hover {
    background-color: #b71c1c;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
        background: #f8f9fa;
    }

    .newsletter-bg-decoration {
        display: none;
    }

    .newsletter-input-group {
        margin: 0 auto;
    }
}

/* --- ULTRA-MOBILE RESPONSIVENESS (300px - 576px) --- */
@media (max-width: 576px) {

    /* Global Container Padding */
    .container,
    .hero-container,
    .footer-container {
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-title {
        font-size: 36px;
        /* Smaller for mobile */
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Features Box */
    .features-box {
        grid-template-columns: 1fr;
        /* Stack vertically */
        padding: 25px 15px;
        gap: 30px;
    }

    .feature-item {
        margin-bottom: 15px;
    }

    /* Success Stories */
    .ss-grid {
        grid-template-columns: 1fr;
    }

    .ss-card {
        padding: 25px 20px;
    }

    /* Footer */
    .brand-tab {
        margin-left: -20px;
        /* Adjust bleed for mobile */
        padding-left: 20px;
        padding-right: 30px;
        width: calc(100% + 20px);
        border-radius: 0 40px 40px 0;
        margin-top: 0;
    }

    .footer-links-container {
        grid-template-columns: 1fr;
        /* Single column links */
        gap: 30px;
    }

    .footer-col ul {
        align-items: center;
        /* Center align links */
    }

    .footer-col {
        text-align: center;
    }

    .social-row {
        justify-content: center;
    }

    .mission-statement {
        margin: 0 auto;
        text-align: center;
    }

    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- SUPER SMALL SCREENS (< 375px) --- */
@media (max-width: 375px) {

    .container,
    .hero-container,
    .footer-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
        /* Fit on very small screens */
    }

    .premium-badge {
        font-size: 9px;
        padding: 5px 12px;
    }

    .newsletter-card {
        padding: 30px 20px;
    }

    .newsletter-content h2 {
        font-size: 20px !important;
    }

    .newsletter-input-group {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        border: none;
    }

    .newsletter-input {
        width: 100%;
        margin-bottom: 10px;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 50px;
        height: 50px;
        padding: 0 20px;
    }

    .newsletter-btn {
        width: 100%;
        /* Full width button */
        height: 50px;
        border-radius: 50px;
        justify-content: center;
        background: #D32F2F;
        color: #fff;
    }

    .trust-cta-title {
        font-size: 24px;
    }

    .wallet-card {
        width: 100%;
        /* Full width wallet */
        padding: 20px;
    }

    .wallet-balance {
        font-size: 32px;
    }

    /* Registration Cards */
    .reg-card {
        padding: 20px;
    }

    .rc-preview {
        padding: 10px;
    }

    .process-title {
        font-size: 32px;
    }
}


/* ========================================
   REGISTRATION PAGE STYLES
   ======================================== */

.register-page {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    min-height: 100vh;
    padding: 40px 0 80px;
    animation: fadeIn 0.6s ease-out;
}

.register-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.register-main-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 35px;
    letter-spacing: -0.01em;
    animation: fadeInDown 0.7s ease-out;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    animation: slideInLeft 0.8s ease-out;
}

.form-header {
    background: var(--primary-red);
    padding: 16px 24px;
}

.form-header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}

.registration-form {
    padding: 28px 24px 32px;
}

.form-section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 18px;
    padding-bottom: 0;
    border-bottom: none;
}

/* Form Groups */
.form-group {
    margin-bottom: 16px;
    animation: fadeInUp 0.5s ease-out backwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.15s;
}

.form-group:nth-child(3) {
    animation-delay: 0.2s;
}

.form-group:nth-child(4) {
    animation-delay: 0.25s;
}

.form-group:nth-child(5) {
    animation-delay: 0.3s;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: var(--primary-red);
    margin-left: 2px;
    font-size: 11px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(163, 0, 0, 0.06);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #aaa;
    font-size: 12px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

/* Date of Birth Group */
.dob-group {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 10px;
}

.dob-select {
    padding: 10px 10px;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    color: #555;
    font-weight: 500;
    transition: var(--transition);
}

.radio-label:hover {
    color: var(--primary-red);
}

.radio-label input[type="radio"] {
    margin-right: 5px;
    width: 14px;
    height: 14px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.radio-label span {
    user-select: none;
}

/* Form Row (for side-by-side fields) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

/* Checkbox Group */
.checkbox-group {
    margin-top: 20px;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    color: #555;
    transition: var(--transition);
}

.checkbox-label:hover {
    color: var(--primary-red);
}

.checkbox-label input[type="checkbox"] {
    margin-right: 6px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.terms-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition);
}

.terms-link:hover {
    text-decoration: underline;
    color: #0052a3;
}

/* Register Button */
.btn-register {
    width: 100%;
    background: var(--primary-red);
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(163, 0, 0, 0.2);
}

.btn-register:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(163, 0, 0, 0.3);
}

.btn-register:active {
    transform: translateY(0);
}

/* Info Card */
.info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 20px;
    animation: slideInRight 0.8s ease-out;
}

.info-header {
    background: var(--primary-red);
    padding: 16px 24px;
}

.info-header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.2px;
}

.info-content {
    padding: 28px 24px;
}

.info-content p {
    font-size: 13px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 16px;
}

.info-intro {
    font-size: 13.5px !important;
    color: #444 !important;
}

.info-highlight {
    background: #f8f9fa;
    padding: 14px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-red);
    animation: fadeIn 1s ease-out;
}

.info-subtitle {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    margin-top: 20px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.info-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 12.5px;
    color: #555;
    line-height: 1.6;
    animation: fadeInLeft 0.6s ease-out backwards;
}

.info-list li:nth-child(1) {
    animation-delay: 0.2s;
}

.info-list li:nth-child(2) {
    animation-delay: 0.3s;
}

.info-list li:nth-child(3) {
    animation-delay: 0.4s;
}

.info-list li:nth-child(4) {
    animation-delay: 0.5s;
}

.info-list li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 700;
}

.info-closing-text {
    font-size: 13px !important;
    color: #444 !important;
    margin-bottom: 16px;
}

.info-control {
    font-size: 12.5px !important;
    margin-bottom: 0 !important;
}

.text-danger {
    color: var(--primary-red);
    font-weight: 600;
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .register-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 991px) {
    .register-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .info-card {
        position: static;
        animation: fadeInUp 0.8s ease-out;
    }

    .form-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .register-main-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .register-page {
        padding: 25px 0 50px;
    }

    .register-main-title {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dob-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .registration-form {
        padding: 20px 18px 24px;
    }

    .info-content {
        padding: 20px 18px;
    }

    .form-header,
    .info-header {
        padding: 14px 18px;
    }

    .form-header h2,
    .info-header h2 {
        font-size: 16px;
    }

    .form-control {
        font-size: 14px;
        padding: 11px 14px;
    }

    .radio-label,
    .checkbox-label {
        font-size: 13px;
    }

    .info-content p {
        font-size: 13.5px;
    }

    .info-list li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .register-container {
        padding: 0 15px;
    }

    .register-main-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .form-card,
    .info-card {
        border-radius: 14px;
    }

    .registration-form {
        padding: 18px 16px 22px;
    }

    .info-content {
        padding: 18px 16px;
    }

    .form-header,
    .info-header {
        padding: 12px 16px;
    }

    .form-control {
        font-size: 14px;
        padding: 12px 14px;
    }

    .btn-register {
        padding: 14px;
        font-size: 15px;
    }

    .dob-select {
        padding: 12px 10px;
    }
}

@media (max-width: 400px) {
    .register-page {
        padding: 20px 0 40px;
    }

    .register-main-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .registration-form {
        padding: 16px 14px 20px;
    }

    .info-content {
        padding: 16px 14px;
    }

    .form-header h2,
    .info-header h2 {
        font-size: 15px;
    }

    .form-section-title {
        font-size: 13px;
    }

    .form-group label {
        font-size: 11px;
    }

    .form-control {
        font-size: 13px;
        padding: 10px 12px;
    }

    .radio-label,
    .checkbox-label {
        font-size: 12px;
    }

    .info-content p,
    .info-list li {
        font-size: 12.5px;
    }
}