@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');

/* -- Base & Variables -- */
:root {
    --bg-main: #070908;
    /* Very dark, sophisticated black/green tint */
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --text-primary: #ffffff;
    --text-secondary: #9aa39e;
    --accent: #00a759;
    /* Bright green highlighter */
    --accent-glow: rgba(0, 167, 89, 0.3);
    --red-candlestick: #f03e3e;
    --green-candlestick: #0ea84c;
    /* From logo image, the l top is darker green */
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.font-unbounded {
    font-family: 'Unbounded', sans-serif;
    font-optical-sizing: auto;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* -- Utilities -- */
.highlight {
    color: var(--accent);
}

.highlight-bg {
    background: var(--accent);
    color: #000;
    padding: 0 10px;
    border-radius: 4px;
    display: inline-block;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.center {
    text-align: center;
}

/* -- Buttons -- */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--accent-glow);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px var(--accent-glow);
    background: #00c268;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* -- Logo -- */
.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    font-family: var(--font-heading);
    position: relative;
    line-height: 0.8;
}

.logo-vau,
.logo-t {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2a2c2b;
    /* The original text is dark grey, but on a black bg maybe we should invert or use white */
}

/* Adjust logo colors for dark theme */
.navbar .logo-vau,
.navbar .logo-t,
.footer-brand .logo-vau,
.footer-brand .logo-t {
    color: #e5e5e5;
}

.logo-l {
    display: inline-block;
    position: relative;
    width: 6px;
    height: 2.2rem;
    margin: 0 4px;
}

.l-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: var(--green-candlestick);
}

.l-bottom {
    position: absolute;
    bottom: -15px;
    /* stick down to "trade" */
    left: 45%;
    transform: translateX(-50%);
    width: 2px;
    height: 50%;
    background-color: var(--red-candlestick);
    z-index: 1;
}

.logo-trade {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e5e5e5;
    letter-spacing: 3px;
    margin-left: 2px;
    margin-top: 4px;
}

/* -- Animation Utilities -- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* -- Navbar -- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    padding: 10px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 167, 89, 0.5);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* -- Hero Section -- */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero-bg-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 167, 89, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.bulls-image {
    position: absolute;
    bottom: 0px;
    width: 55%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 75%);
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 75%);
}

.base-bulls {
    left: 0;
    z-index: 1;
}

.overlay-bulls {
    right: 0;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: screen;
}

.svg-wave-container {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.svg-wave {
    width: 100%;
    height: 100%;
    transform: translateY(30%);
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.8));
}

.hero-text-centered {
    text-align: center;
    margin-top: -180px;
    position: relative;
    z-index: 10;
}

.massive-text {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.subtitle-banner {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Hero Chart Illustration */
.chart-illustration {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    perspective: 1000px;
}

.bar {
    width: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
    transition: all 0.5s ease;
    transform-origin: bottom;
    transform: rotateX(10deg);
}

.bar-1 {
    height: 30%;
    animation: grow 3s infinite alternate ease-in-out;
}

.bar-2 {
    height: 50%;
    animation: grow 3.5s infinite alternate ease-in-out;
}

.bar-3 {
    height: 40%;
    animation: grow 4s infinite alternate ease-in-out;
}

.bar-4 {
    height: 80%;
    background: linear-gradient(180deg, var(--accent) 0%, rgba(0, 167, 89, 0) 100%);
    border-color: var(--accent);
}

.bar-5 {
    height: 65%;
    animation: grow 4.5s infinite alternate ease-in-out;
}

.glow-orb {
    position: absolute;
    bottom: 80%;
    right: 25%;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 30px 10px var(--accent-glow);
}

@keyframes grow {
    0% {
        transform: rotateX(10deg) scaleY(1);
    }

    100% {
        transform: rotateX(10deg) scaleY(1.1);
    }
}

/* -- About Section -- */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
}

.stat-item h4 {
    font-size: 3.5rem;
    color: var(--accent);
    display: inline-block;
}

.stat-item span {
    font-size: 2rem;
    color: var(--accent);
}

/* -- Why Us Section -- */
.why-us .subtitle {
    font-size: 1.2rem;
}

.premium-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .premium-benefits-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.benefits-column {
    display: flex;
    flex-direction: column;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
}

.benefit-item.appear {
    transform: translateX(0);
}

.benefit-item:hover {
    padding-left: 20px;
    border-bottom-color: var(--accent);
    background: linear-gradient(90deg, rgba(0, 167, 89, 0.04) 0%, transparent 60%);
}

.benefit-arrow {
    color: var(--accent);
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.benefit-item:hover .benefit-arrow {
    transform: translateX(5px) translateY(-3px);
    color: #fff;
    filter: drop-shadow(0 0 10px rgba(0, 167, 89, 0.5));
}

.benefit-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.benefit-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* -- Services Section -- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    perspective: 1500px;
    height: 100%;
    min-height: 560px;
    /* Increased to accommodate the stacked tags and description on the back */
    cursor: pointer;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    /* Subtle padding adjust */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-front {
    z-index: 2;
}

.service-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(7, 9, 8, 0.95), rgba(0, 167, 89, 0.08));
    border: 1px solid rgba(0, 167, 89, 0.4);
    box-shadow: inset 0 0 50px rgba(0, 167, 89, 0.15), 0 15px 35px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Start stacking from the top to prevent bottom bleed */
    align-items: flex-start;
    /* Ensure left-aligned content like the reference */
}

.service-card-back .features {
    text-align: left;
    margin: 0 auto;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

/* Invert the mouse X coordinate for the back of the card so the glow stays locked under the physical mouse cursor despite the 180 deg CSS rotation */
.card-glow.back-glow {
    background: radial-gradient(600px circle at calc(100% - var(--mouse-x, 50%)) var(--mouse-y, 50%), rgba(0, 167, 89, 0.18), transparent 40%);
}

.service-card:hover .service-card-front .card-glow,
.service-card:hover .service-card-back .card-glow {
    opacity: 1;
}

/* -- 3D Flip Card Inner Components -- */
.front-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 15px;
    z-index: 2;
}

.large-icon-box {
    background: rgba(255, 255, 255, 0.05);
    width: 90px;
    height: 90px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.front-center-content h3 {
    margin: 5px 0 0 0;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
}

.tag-pill {
    background: rgba(0, 167, 89, 0.15);
    color: var(--accent);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.flip-hint-corner {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    transition: color 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-card:hover .flip-hint-corner {
    color: var(--accent);
}

.back-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    z-index: 2;
}

.small-icon-box {
    background: rgba(0, 167, 89, 0.12);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border: 1px solid rgba(0, 167, 89, 0.3);
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-text h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

.header-text .subtext {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.decorative-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid rgba(0, 167, 89, 0.3);
    margin-left: auto;
    position: relative;
    opacity: 0.7;
}

.decorative-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(0, 167, 89, 0.5);
    border-radius: 50%;
}

.premium-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 167, 89, 0.3) 0%, transparent 100%);
    margin: 20px 0;
    width: 100%;
    z-index: 2;
}

.description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 20px;
    z-index: 2;
}

.features-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    z-index: 2;
}

.feature-tag {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-enquire {
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
    z-index: 2;
}

.btn-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 167, 89, 0.4);
    color: #fff;
}

.features {
    list-style: none;
    margin: 20px 0;
    flex-grow: 1;
}

.features li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.link-arrow {
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.link-arrow span {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.link-arrow:hover span {
    transform: translateX(5px);
    color: var(--accent);
}

.active-card {
    border-color: rgba(0, 167, 89, 0.2);
    background: rgba(0, 167, 89, 0.02);
}

/* -- CTA Section -- */
.cta-box {
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 167, 89, 0.05) 100%);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.shape-1 {
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(0, 167, 89, 0.2);
}

.shape-2 {
    bottom: -50px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
}

/* -- FAQ -- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding-bottom: 24px;
    max-height: 200px;
    /* arbitrary max height for animation */
    opacity: 1;
}

/* -- Footer -- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
    margin-top: 50px;
}

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

.footer-brand p {
    margin-top: 20px;
    /* max-width: 250px; */
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px 0 0 30px;
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 12px 24px;
    border: none;
    font-family: var(--font-heading);
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0px 50px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    display: block;
    margin-top: 10px;
}

/* -- Expanded Utilities & Form -- */
.bg-darker {
    background: var(--bg-main);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0px;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.p-8 {
    padding: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.w-50 {
    width: 48%;
}

.w-full {
    width: 100%;
    display: block;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-white {
    color: #fff;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.flex-gap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Staggered Animations */
.delay-1 {
    transition-delay: 0.1s;
}

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

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

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

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 10px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

/* -- Fiduciary Excellence Section (Image Inspired) -- */
.fiduciary-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top center, rgba(0, 167, 89, 0.06) 0%, transparent 60%);
}

.big-type-header {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* Use gap instead of negative margins */
}

.solid-text {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    color: #ffffff;
    letter-spacing: 2px;
}

.outline-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.outline-text {
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 1;
    /* Increased from 0.8 to prevent vertical overlap */
    margin: 0;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    letter-spacing: 4px;
    opacity: 0.9;
}

.ribbon-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: #000;
    font-weight: 700;
    padding: 8px 30px;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 167, 89, 0.4);
    z-index: 2;
    white-space: nowrap;
}

.glowing-box-container {
    max-width: 900px;
    margin: 80px auto 0;
    /* Increased margin-top from 40px */
    position: relative;
    z-index: 3;
}

.search-header {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--accent);
    border-radius: 50px;
    padding: 18px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -32px;
    position: relative;
    z-index: 4;
}

.search-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.search-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.glowing-box-content {
    background: rgba(7, 9, 8, 0.6);
    border: 1px solid rgba(0, 167, 89, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    padding: 60px 50px 40px !important;
}

.glowing-box-content h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.glowing-box-content p {
    color: #e5e5e5;
    font-size: 1.1rem;
    line-height: 1.7;
}

.glow-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 89, 0.6), transparent);
}

.cta-pills-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 900px;
    margin: 40px auto 0;
    gap: 30px;
}

@media (max-width: 768px) {
    .cta-pills-container {
        flex-direction: column;
        align-items: center;
    }

    .search-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
        width: 95%;
    }
}

.pill-group-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-pill-wrapper {
    position: relative;
    padding-top: 15px;
}

.cta-pill-badge {
    position: absolute;
    top: 0;
    left: 25px;
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 15px;
    border-radius: 20px;
    border: 1px solid #fff;
    z-index: 2;
    letter-spacing: 1px;
}

.cta-pill {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 18px 35px;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.cta-pill:hover {
    background: #fff;
    color: #000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 167, 89, 0.3);
    border-color: var(--accent);
}

.pill-group-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .pill-group-right {
        align-items: center;
        width: 100%;
    }
}

.info-pill {
    background: #fff;
    color: #000;
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.info-pill:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 167, 89, 0.3);
}

.info-pill .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-pill:hover .icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 10px rgba(0, 167, 89, 0.5);
}

.cta-bottom-text p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-choose-us {
    text-align: center;
}

.desktop-nav-links {
    display: flex;
}

.mobile-nav-links {
    display: none;
}

.highlight {
    padding-bottom: 10px;
}

/* -- Responsive -- */
@media (max-width: 1100px) {
    .massive-text {
        font-size: 5rem;
    }
}

@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }

    .desktop-nav-links {
        display: none;
    }

    .mobile-nav-links {
        display: flex;
    }

    .subtitle-banner.mt-4 {
        margin-top: 0;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(7, 9, 8, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 1000;
        gap: 30px;
        padding: 80px 40px;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .nav-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-content-centered {
        padding: 40px 20px;
    }

    .hero-bg-glow {
        width: 400px;
        height: 400px;
    }

    .massive-text {
        font-size: 3.5rem;
    }

    .svg-wave-container {
        transform: scale(0.6);
        margin-top: -60px;
    }

    .bulls-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .massive-text {
        font-size: 2.8rem;
    }

    .section-padding {
        padding: 0 0 80px 0;
    }

    .grid-3,
    .about-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .bulls-image {
        /* position: static; */
        /* width: 100%;
        max-width: 250px; */
        /* transform: none !important; */
    }

    .hero {
        overflow: hidden;
        height: 70vh;
    }

    .left_bull {
        top: 10%;
        left: 10%;
        transform: translate(-50%, -50%);
        width: 75%;
    }

    .right_bull {
        top: 10%;
        left: 90%;
        transform: translate(-50%, -50%);
        width: 75%;
    }

    .svg-wave-container {
        display: none;
        /* Ribbon is too complex for small mobile overlays */
    }

    .search-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
        width: 100%;
    }

    .search-text {
        white-space: normal !important;
        font-size: 1.1rem;
        border-right: none !important;
    }

    /* Fiduciary Section Overlap Fixes for Mobile */
    .big-type-header {
        margin-bottom: 20px;
        gap: 10px;
    }

    .outline-text {
        font-size: clamp(2.5rem, 10vw, 4.5rem);
        line-height: 1.1;
    }

    .solid-text {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .ribbon-text {
        font-size: 0.75rem;
        padding: 5px 12px;
        letter-spacing: 1.5px;
        margin: 50px 0px;
    }

    .glowing-box-container {
        margin-top: 40px !important;
    }

    .search-header {
        margin: 50px 0px 20px 0px !important;
        width: 100% !important;
    }

    .glowing-box-content {
        padding: 40px 20px 30px !important;
    }

    .cta-pills-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .pill-group-indicators {
        flex-direction: column;
        width: 100%;
    }

    .info-pill {
        width: 100%;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .service-card {
        min-height: 560px;
    }

    .service-card-front,
    .service-card-back {
        padding: 30px 20px;
    }

    .front-center-content h3 {
        font-size: 1.8rem;
    }

    /* Contact Section Mobile Adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-horizontal {
        flex-direction: column;
        gap: 0;
    }

    .form-horizontal .w-50 {
        width: 100%;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }
}

@media (max-width: 480px) {
    .massive-text {
        font-size: 2.2rem;
    }

    .btn-secondary,
    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .navbar {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        padding: 15px 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }

    .navbar .logo img {
        height: 45px !important;
    }

    .nav-content {
        padding: 0 20px;
    }
}

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

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* -- Top Bar -- */
.top-bar {
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 25px;
}

.top-bar-info a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info a:hover {
    color: var(--accent);
}

/* -- Footer Social & Contact -- */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.footer-contact-item:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 167, 89, 0.2);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.about {
    text-align: center;
    padding: 100px 0px 0px 0px;
}

.about .max-w-800 {
    max-width: 100%;
}