/* ===== Intent vs Entertainment Strategy ===== */
.section-intent {
    background: var(--gradient-hero);
    color: var(--color-white);
    padding: var(--space-24) 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .section-intent {
        padding: var(--space-12) 0;
    }
}

.intent-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-16);
    align-items: center;
}

.intent-lead {
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-8);
}

.intent-comparison {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.comparison-item {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.comparison-item.active {
    background: rgba(1, 167, 238, 0.1);
    border-color: var(--color-primary);
    transform: scale(1.02);
}

.comparison-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
}

.comparison-item.active .comparison-icon {
    background: var(--color-primary);
    color: white;
}

.comparison-content h4 {
    margin-bottom: var(--space-2);
    font-size: var(--text-xl);
    color: white !important;
}

.comparison-content p {
    font-size: var(--text-base);
    opacity: 0.8;
    line-height: 1.6;
}

.comparison-content strong {
    color: var(--color-primary);
}

.intent-conclusion {
    font-size: var(--text-lg);
    border-left: 4px solid var(--color-primary);
    padding-left: var(--space-6);
    margin-bottom: var(--space-10);
    opacity: 0.9;
}

/* ===== FAQ Accordion ===== */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.faq-item {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    padding: var(--space-5) var(--space-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: var(--text-base);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 var(--space-6) var(--space-6);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== Hero Dynamic Slideshow ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    height: 90vh;
    min-height: 700px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 550px;
    }
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2s ease-in-out, transform 8s linear;
}

.hero-slide.active {
    opacity: 0.5;
    transform: scale(1);
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(15, 23, 42, 0.8) 100%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-8);
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.hero-text-rotator {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    margin-bottom: var(--space-6);
}

.hero-text-item {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.hero-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: clamp(2.5rem, 8vw, 5.2rem) !important;
    /* Larger impact but tighter clamp */
    font-weight: 800 !important;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -3px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    color: white;
    max-width: 800px;
}

.hero-subtitle {
    font-size: var(--text-base) !important;
    line-height: 1.6;
    margin-bottom: var(--space-6);
    opacity: 0.8;
    color: #e2e8f0;
    max-width: 600px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 20;
}

/* Custom CTA Style */
.btn-primary-white {
    background: white;
    color: var(--color-secondary);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary-white:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-5px);
}

/* ===== Premium Service Cards ===== */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.premium-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #3b82f6);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.icon-box i {
    color: white !important;
}

.intent-visual {
    display: flex;
    justify-content: center;
}

.card-stats {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: var(--color-primary);
}

.stat-label {
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .intent-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .comparison-item {
        text-align: left;
    }

    .intent-conclusion {
        border-left: none;
        border-top: 4px solid var(--color-primary);
        padding: var(--space-4) 0;
    }

    .intent-comparison {
        gap: var(--space-3);
    }
}

/* ===== Logo Wall (Premium Infinite Ticker) ===== */
.logo-wall-section {
    background: #0f172a;
    padding: var(--space-10) 0;
    margin: 0;
}

.logo-wall-wrapper {
    padding: var(--space-6) 0;
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.logo-wall-wrapper::before,
.logo-wall-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-wall-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0f172a, transparent);
}

.logo-wall-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0f172a, transparent);
}

/* =========================================
   LOGO WALL (Clean Implementation)
   ========================================= */
.logo-wall-wrapper {
    position: relative;
    padding: var(--space-20) 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .logo-wall-wrapper {
        padding: var(--space-10) 0;
    }
}

.logo-wall-title {
    text-align: center;
    color: #ffffff;
    font-size: var(--text-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-12);
    font-weight: 600;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-ticker {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ticker-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 4rem;
    /* 
       ANIMATION STRATEGY: 
       We will have TWO steps but loop seamlessly.
       We move -33.333% because we have 3 batches.
    */
    animation: ticker-slide 60s linear infinite;
    width: max-content;
    will-change: transform;
    padding: 0;
    margin: 0;
    list-style: none;
}

.logo-ticker:hover .ticker-track {
    animation-play-state: paused;
}

@keyframes ticker-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333333%);
    }
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.logo-item img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.uass-special img {
    height: 60px !important;
    opacity: 1 !important;
}

@media (max-width: 768px) {
    .logo-item img {
        height: 45px;
    }

    .uass-special img {
        height: 60px !important;
    }

    .ticker-track {
        animation-duration: 25s;
    }
}

/* ===== Success View within Modals ===== */
.success-view {
    text-align: center;
    padding: var(--space-4);
    animation: fadeIn 0.5s ease;
    color: var(--color-secondary);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.success-view h3 {
    color: var(--color-secondary);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.success-summary {
    background: #f9fafb;
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin: var(--space-8) 0;
    text-align: left;
    border: 1px solid #f1f5f9;
}

.summary-title {
    font-size: var(--text-sm);
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: var(--space-4);
    display: block;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: var(--space-2);
}

.summary-item {
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.summary-item strong {
    color: #1e293b;
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    opacity: 0.6;
}

.whatsapp-nudge {
    margin-top: var(--space-8);
}

.whatsapp-nudge p {
    margin-bottom: var(--space-6);
    color: #475569;
    font-size: var(--text-lg);
}

.btn-whatsapp-success {
    background: #25d366;
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #20bd5a;
}

/* ===== Authority & Results ===== */
.authority-results-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: flex-start;
}

.result-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.result-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary);
    display: block;
}

@media (max-width: 968px) {
    .authority-results-grid {
        grid-template-columns: 1fr;
    }
}