:root {
    --primary-color: #0F0F0F;
    /* Rich Black */
    --secondary-color: #FF6B00;
    /* Vibrant Orange */
    --accent-color: #D4AF37;
    /* Gold for details */
    --text-color: #333333;
    --light-bg: #F4F4F4;
    --white: #FFFFFF;
    --dark-bg: #000000;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--secondary-color);
}

.text-white {
    color: var(--white);
}

.text-gray {
    color: #cccccc;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--primary-color);
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background-color: #e65100;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.logo-container {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.site-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-headline .highlight {
    color: var(--secondary-color);
    display: block;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Problem/Solution - Glassmorphism & 3D */
.problem-solution {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
    z-index: 0;
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--white);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.card h3 {
    color: var(--white);
    margin-top: 15px;
}

.card p {
    color: rgba(255, 255, 255, 0.7);
}

.card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg) rotateY(-5deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    box-shadow:
        20px 20px 60px rgba(0, 0, 0, 0.5),
        -20px -20px 60px rgba(255, 255, 255, 0.05),
        0 0 20px rgba(255, 107, 0, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}

.card:hover .icon-box {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateZ(20px);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
}

/* Services */
.services {
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-item:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.service-item h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-item p {
    color: rgba(255, 255, 255, 0.7);
}

.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    perspective: 1000px;
    cursor: pointer;
}

.service-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

.service-item:hover .service-icon,
.service-icon-wrapper:hover .service-icon,
.service-icon-wrapper:active .service-icon {
    transform: rotateY(360deg);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Social Proof (Redesigned) */
.social-proof {
    background-color: var(--dark-bg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
    z-index: 0;
}

/* Metrics Grid */
.metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.metric-card {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
}

.metric-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    perspective: 1000px;
}

.metric-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.metric-card:hover .metric-icon {
    transform: rotateY(180deg);
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--secondary-color);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.4);
}

.metric-card .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.metric-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Modern Testimonials */
.testimonials-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-item {
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.author-info h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--accent-color);
    display: block;
}

/* Glass Effect Utility */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* 3D Funnel Methodology */
.funnel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    height: 800px;
    /* Height for the scroll animation */
    padding-bottom: 100px;
    perspective: 1000px;
}

.funnel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: rotateX(20deg);
}

.funnel-layer {
    background: rgba(255, 107, 0, 0.25);
    /* Vibrant Orange Glass */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 4px solid rgba(255, 107, 0, 0.6);
    /* Thicker bottom for 3D effect */
    margin-bottom: -10px;
    /* Overlap slightly */
    padding: 40px;
    text-align: center;
    position: relative;
    transform-style: preserve-3d;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 107, 0, 0.2);
    transition: transform 0.3s ease;
}

.funnel-layer:hover {
    transform: translateZ(20px) scale(1.05);
    background: rgba(255, 107, 0, 0.35);
    border-color: var(--white);
    box-shadow:
        0 20px 50px rgba(255, 107, 0, 0.3),
        inset 0 0 40px rgba(255, 107, 0, 0.4);
}

.layer-1 {
    width: 90%;
    border-radius: 20px;
    transform: translateZ(60px);
    z-index: 3;
}

.layer-2 {
    width: 75%;
    border-radius: 20px;
    transform: translateZ(30px);
    z-index: 2;
}

.layer-3 {
    width: 60%;
    border-radius: 20px;
    transform: translateZ(0px);
    z-index: 1;
}

.layer-content {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
    /* Lift text off the glass */
}

.step-badge {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #ff8f00);
    color: var(--white);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.funnel-layer h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.funnel-layer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Moving Client Icon */
.client-icon-3d {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateZ(100px);
    /* Float high above */
    z-index: 20;
    width: 70px;
    height: 70px;
    transition: top 0.1s linear;
    pointer-events: none;
}

.client-avatar {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e0e0e0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.4),
        inset 0 -5px 10px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--secondary-color);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* House Target */
.house-target {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 150px;
    z-index: 5;
    perspective: 500px;
}

.house-3d-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
}

.house-icon-3d {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
}

.success-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 1) 0%, rgba(255, 107, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    mix-blend-mode: screen;
}

.success-message {
    margin-top: 15px;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}

/* Active State (Triggered by JS) */
.house-target.active .house-icon-3d {
    color: var(--white);
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 0 30px var(--secondary-color));
}

.house-target.active .success-glow {
    opacity: 1;
    animation: pulse-glow 1s infinite alternate;
}

.house-target.active .success-message {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--white) 0%, #f0f4f8 100%);
}

.final-cta h2 {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 20px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

}

.house-target.active .success-message {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--white) 0%, #f0f4f8 100%);
}

.final-cta h2 {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #000000;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin: 0 auto 20px;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

@keyframes autoRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* FAQ Accordion */
.faq-section {
    padding-bottom: 100px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    background: rgba(255, 107, 0, 0.05);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--secondary-color);
}

.faq-question i {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating WhatsApp Button */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-wpp 2s infinite;
}

.floating-wpp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-wpp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Qualifying Form */
.qualifying-form-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: var(--white);
}

.qualifying-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
    }
}

@keyframes autoRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* FAQ Accordion */
.faq-section {
    padding-bottom: 100px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    background: rgba(255, 107, 0, 0.05);
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--secondary-color);
}

.faq-question i {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Floating WhatsApp Button */
.floating-wpp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-wpp 2s infinite;
}

.floating-wpp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes pulse-wpp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Partners Section */
/* Partners Section - Redesigned */
.partners-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 107, 0, 0.2);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.05);
}

.partners-section::before,
.partners-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-section::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a, transparent);
}

.partners-section::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a, transparent);
}

.partners-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 107, 0, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
}

.partners-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    align-items: center;
    gap: 0;
    /* Handling spacing via margin on logos for better control */
    animation: marquee 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    height: 90px;
    /* Increased from 60px */
    width: auto;
    max-width: 250px;
    /* Prevent overly wide logos */
    margin: 0 60px;
    /* Spacing between logos */
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Make logos white by default to contrast with dark background */
    filter: brightness(0) invert(1) opacity(0.8);
}

/* Hover Effect: Restore original color and glow */
.partner-logo:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.6));
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        /* We have 3 identical sets of logos. To loop seamlessly, we move by the width of exactly ONE set, which is 1/3 of the track. */
        transform: translateX(-33.333%);
    }
}

/* Qualifying Form */
.qualifying-form-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: var(--white);
}

.qualifying-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

select.form-control option {
    background-color: #1a1a1a;
    color: #ffffff;
}



/* Mobile Carousel Hidden on Desktop */
.methodology-mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
    }

    .col-half {
        width: 100%;
        min-width: unset;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Auto-rotate icons on mobile */
    .service-icon {
        animation: autoRotate 5s linear infinite;
    }

    /* Responsive FAQ */
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
    }

    /* Hide Desktop Funnel */
    #methodology-section {
        display: none !important;
    }

    /* Show Mobile Carousel */
    .methodology-mobile {
        display: block !important;
        overflow: hidden;
        background-color: #000000;
        /* Black background as requested */
        padding: 60px 0;
    }

    .carousel-3d-wrapper {
        perspective: 1000px;
        margin-top: 20px;
    }

    .carousel-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 20px 40px;
        /* Bottom padding for shadow */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .carousel-card {
        flex: 0 0 85%;
        /* Show part of the next card */
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.03);
        /* Dark glass effect like FAQ */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        padding: 30px;
        text-align: center;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .carousel-card:hover {
        border-color: rgba(255, 107, 0, 0.5);
        /* Orange border on hover */
        background: rgba(255, 255, 255, 0.05);
    }

    .carousel-card h3 {
        color: var(--white);
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .carousel-card p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .card-icon {
        font-size: 3rem;
        color: var(--secondary-color);
        margin-top: 20px;
        filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.5));
        transform: translateZ(20px);
        /* Pop out effect */
    }

    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transition: background-color 0.3s ease;
    }

    .indicator.active {
        background-color: var(--secondary-color);
        box-shadow: 0 0 10px var(--secondary-color);
    }
}