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

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B0;
    --gold-dark: #B8941F;
    --black: #000000;
    --gray-dark: #0A0A0A;
    --gray-medium: #1A1A1A;
    --white: #FFFFFF;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

html {
    scroll-behavior: smooth;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ========== FLOATING OUTLINE SHAPES ========== */
.outline-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.outline-shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.7);
    animation: float-shape 20s infinite ease-in-out;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 15px rgba(212, 175, 55, 0.2);
}

.outline-circle {
    border-radius: 50%;
}

@keyframes float-shape {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.8;
    }

    25% {
        opacity: 1;
    }

    50% {
        transform: translate(100px, -100px) rotate(180deg);
        opacity: 0.9;
    }

    75% {
        opacity: 1;
    }
}

/* ========== ANIMATED GRADIENT TEXT ========== */
.gradient-text-animated {
    background: linear-gradient(90deg, var(--white), var(--gold), var(--gold-light), var(--white));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-flow 5s ease infinite;
}

@keyframes gradient-flow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ========== SECTION PARTICLES ========== */
.section-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.micro-particle {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 8px var(--gold);
}

/* Hero Particles - Bouncing dots */
.hero-particle {
    width: 2px;
    height: 2px;
    animation: float-bounce 12s ease-in-out infinite;
}

@keyframes float-bounce {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    30% {
        transform: translateY(60vh) translateX(30px) scale(1.2);
    }

    45% {
        transform: translateY(80vh) translateX(-20px) scale(0.8);
    }

    60% {
        transform: translateY(40vh) translateX(50px) scale(1.5);
    }

    75% {
        transform: translateY(60vh) translateX(-30px) scale(1);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) translateX(40px) scale(0.5);
        opacity: 0;
    }
}

/* Stats Particles - Star burst pattern */
.stats-particle {
    width: 2.5px;
    height: 2.5px;
    animation: float-starburst 10s ease-out infinite;
}

@keyframes float-starburst {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    40% {
        transform: translate(120px, -120px) scale(1.5);
        opacity: 1;
    }

    60% {
        transform: translate(200px, -80px) scale(1.2);
        opacity: 0.8;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translate(300px, -50px) scale(0.5);
        opacity: 0;
    }
}

/* Services Particles - Pendulum swing */
.services-particle {
    width: 2px;
    height: 2px;
    animation: float-pendulum 14s ease-in-out infinite;
}

@keyframes float-pendulum {
    0% {
        transform: translate(0, 100vh) rotate(0deg);
        opacity: 0;
    }

    20% {
        transform: translate(-60px, 70vh) rotate(-45deg);
        opacity: 1;
    }

    40% {
        transform: translate(60px, 40vh) rotate(45deg);
        opacity: 1;
    }

    60% {
        transform: translate(-40px, 20vh) rotate(-30deg);
        opacity: 1;
    }

    80% {
        transform: translate(40px, 5vh) rotate(30deg);
        opacity: 1;
    }

    100% {
        transform: translate(0, -10vh) rotate(0deg);
        opacity: 0;
    }
}

/* Why S2Wealth Particles - Spiral upward */
.why-particle {
    width: 2.5px;
    height: 2.5px;
    animation: float-spiral-up 16s linear infinite;
}

@keyframes float-spiral-up {
    0% {
        transform: translate(0, 100vh) rotate(0deg) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    25% {
        transform: translate(80px, 75vh) rotate(180deg) scale(1);
    }

    50% {
        transform: translate(-80px, 50vh) rotate(360deg) scale(1.3);
    }

    75% {
        transform: translate(100px, 25vh) rotate(540deg) scale(1);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(-50px, -10vh) rotate(720deg) scale(0.5);
        opacity: 0;
    }
}

/* Testimonials Particles - Floating bubbles */
.testimonial-particle {
    width: 3px;
    height: 3px;
    animation: float-bubbles 13s ease-in-out infinite;
}

@keyframes float-bubbles {
    0% {
        transform: translate(0, 100vh) scale(0.5);
        opacity: 0;
    }

    15% {
        opacity: 0.9;
    }

    30% {
        transform: translate(30px, 70vh) scale(1.2);
    }

    45% {
        transform: translate(-20px, 50vh) scale(0.9);
    }

    60% {
        transform: translate(40px, 30vh) scale(1.4);
    }

    75% {
        transform: translate(-30px, 15vh) scale(1);
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translate(20px, -10vh) scale(0.6);
        opacity: 0;
    }
}

/* Contact Particles - Meteor shower */
.contact-particle {
    width: 2.5px;
    height: 2.5px;
    animation: float-meteor 11s linear infinite;
}

@keyframes float-meteor {
    0% {
        transform: translate(100px, -20vh) rotate(45deg) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        transform: translate(-50px, 30vh) rotate(45deg) scale(1.5);
        opacity: 1;
    }

    50% {
        transform: translate(-150px, 60vh) rotate(45deg) scale(1.2);
        opacity: 1;
    }

    70% {
        transform: translate(-250px, 90vh) rotate(45deg) scale(1);
        opacity: 0.8;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translate(-300px, 110vh) rotate(45deg) scale(0.5);
        opacity: 0;
    }
}

/* ========== ANIMATED BADGE WITH BORDER ========== */
.animated-badge {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 2px solid transparent;
    border-radius: 50px;
    background-clip: padding-box;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

.animated-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg,
            var(--gold),
            var(--gold-light),
            var(--gold),
            var(--gold-dark),
            var(--gold));
    background-size: 200% 100%;
    border-radius: 50px;
    z-index: -1;
    animation: border-run 3s linear infinite;
}

@keyframes border-run {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    z-index: 9999;
    box-shadow: 0 0 10px var(--gold);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(212, 175, 55, 0.25);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    font-family: 'Sora', sans-serif;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.06), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.04), transparent 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: #B8B8B8;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn-primary {
    padding: 16px 40px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.hero-btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.2);
}

/* ========== WHY S2Wealth SECTION ========== */
.why-S2Wealth-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: var(--black);
}

.why-S2Wealth-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-orb 15s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.25), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 80px) scale(0.9);
    }

    75% {
        transform: translate(70px, 30px) scale(1.05);
    }
}

.why-S2Wealth-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-S2Wealth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-S2Wealth-card {
    position: relative;
    padding: 40px 35px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), rgba(212, 175, 55, 0.01));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.why-S2Wealth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.why-S2Wealth-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.why-S2Wealth-card:hover::before {
    opacity: 1;
}

.why-S2Wealth-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border-radius: 18px;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-S2Wealth-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.why-S2Wealth-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #B8B8B8;
}

/* ========== SERVICES ========== */
.services-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    padding: 45px 35px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    margin-bottom: 24px;
    font-size: 32px;
    color: var(--gold);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #B8B8B8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #CCCCCC;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* ========== STATS ========== */
.stats-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card-improved {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(10, 10, 10, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.stat-card-improved:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.15);
}

.stat-number-improved {
    font-size: 56px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.stat-label-improved {
    font-size: 16px;
    color: #B8B8B8;
    font-weight: 500;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonial-carousel-new {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-track-new {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.testimonial-slide-new {
    min-width: 100%;
    padding: 50px 40px;
    text-align: center;
}

.testimonial-text-new {
    font-size: 22px;
    line-height: 1.8;
    color: #E8E8E8;
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-author-new {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-role-new {
    font-size: 14px;
    color: #999999;
}

.carousel-controls-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* margin-top: 50px; */
}

.carousel-btn-new {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-btn-new:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: scale(1.1);
}

.carousel-dots-new {
    display: flex;
    gap: 12px;
}

.carousel-dot-new {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot-new.active {
    width: 30px;
    border-radius: 5px;
    background: var(--gold);
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side {
    position: sticky;
    top: 120px;
}

.contact-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-subtitle {
    font-size: 18px;
    color: #B8B8B8;
    margin-bottom: 50px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.8);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-detail-text h4 {
    font-size: 14px;
    color: #999999;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-detail-text p {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.contact-form-side {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 50px 45px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #CCCCCC;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 15px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--gray-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 20px 40px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-desc {
    color: #999999;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link {
    padding: 8px 0;
    color: #999999;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    color: white;
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* ========== SCROLL TO TOP ========== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    color: var(--black);
    font-size: 18px;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ========== MOBILE MENU ========== */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10001;
    position: relative;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    padding: 80px 30px;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gold);
    font-size: 20px;
}

.mobile-menu-close:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: rotate(90deg);
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--gold);
    padding-left: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-side {
        position: relative;
        top: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .why-S2Wealth-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        padding: 140px 20px 60px;
    }

    .services-grid,
    .why-S2Wealth-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-text-new {
        font-size: 18px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-to-top {
        bottom: 115px;
        right: 20px;
    }
}

.faq-item {
    background: var(--gray-medium);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.faq-icon {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer  p{
    padding: 15px 25px 20px;
    /* max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease; */
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
}