/* ===================================
   SECTION STYLES
   =================================== */

.section-header {
    margin-bottom: 60px;
}

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

.section-header p {
    color: var(--text-secondary);
}

/* --- HERO SECTION --- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204,255,0,0.15) 0%, rgba(10,10,10,0) 70%);
    filter: blur(80px);
    z-index: 0;
    animation: pulse 6s infinite alternate;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.abstract-shape {
    width: 400px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotate 10s infinite linear;
}

.cube {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cube:nth-child(1) { transform: rotateY(0deg) translateZ(100px); }
.cube:nth-child(2) { transform: rotateY(90deg) translateZ(100px); }
.cube:nth-child(3) { transform: rotateY(180deg) translateZ(100px); }
.cube:nth-child(4) { transform: rotateY(-90deg) translateZ(100px); }

@keyframes rotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(20deg) rotateY(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.1); opacity: 0.8; }
}

/* --- SERVICES SECTION --- */
#services {
    background-color: var(--bg-color);
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: #b8d900;
}

.service-link i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* --- WHY US SECTION --- */
#why-us {
    background-color: var(--bg-secondary);
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.check-list i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* --- PORTFOLIO SECTION --- */
#portfolio {
    background-color: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* --- PROCESS SECTION --- */
#process {
    background-color: var(--bg-secondary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bg-secondary);
    padding: 0 20px;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    transition: all 0.3s;
}

.step:hover .step-number {
    background: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- TESTIMONIALS SECTION --- */
#testimonials {
    background-color: var(--bg-color);
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.brand-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    opacity: 0.5;
    flex-wrap: wrap;
}

.brand-logos i {
    font-size: 2.5rem;
}

/* --- CTA SECTION --- */
#cta {
    background: linear-gradient(135deg, #1a1a1a, #000);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(204,255,0,0.05) 0%, transparent 70%);
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* --- FOOTER --- */
footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-primary);
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--bg-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.85rem;
}

/* --- TRUST BADGES (HERO) --- */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: var(--accent-color);
    background: rgba(204, 255, 0, 0.05);
    transform: translateY(-3px);
}

.badge-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(204, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* --- CLIENTS & PARTNERS SECTION --- */
#clients {
    background: var(--bg-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 35px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.1);
}

.client-logo i {
    font-size: 3rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.client-logo:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.client-logo span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* --- FAQ SECTION --- */
#faq {
    background: var(--bg-secondary);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-main {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-main:hover {
    border-color: var(--accent-color);
}

.faq-question-main {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question-main:hover {
    color: var(--accent-color);
}

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

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

.faq-answer-main {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item-main.active .faq-answer-main {
    max-height: 400px;
    padding: 0 30px 25px;
}

.faq-answer-main p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* --- CONTACT MAP --- */
.contact-map {
    margin-top: 40px;
}

.contact-map h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
