/* --- START OF FILE styles.css --- */

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #121212;
    --bg-light: #1A1A1A;
    --primary-accent: #7F5AF0;
    --secondary-accent: #2CB67D;
    --text-primary: #FFFFFF;
    --text-secondary: #94A1B2;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color-primary: rgba(127, 90, 240, 0.25);

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius: 8px;
    --container-width: 1200px;
    --header-height: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-accent);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-accent);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-accent);
    color: var(--text-primary);
    box-shadow: 0 4px 15px var(--shadow-color-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color-primary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    height: var(--header-height);
}

.header.scrolled {
    background-color: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 100px;
    padding: 20px;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    margin-right: 40px;
}

.nav-list li {
    margin: 0 20px;
}

.nav-list a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-accent);
    transition: width 0.3s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 60%;
}

.mobile-toggle {
    display: none;
    z-index: 1001;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Standard hamburger icon will be fine */


/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 100px);
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-dark) 100%);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto 40px;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    background: -webkit-linear-gradient(45deg, #ffffff, #94a1b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-image {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

/* Stats Section */
.stats {
    background-color: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
}

.stat-item i {
    font-size: 32px;
    color: var(--primary-accent);
    margin-bottom: 16px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-accent);
    box-shadow: 0 0 30px var(--shadow-color-primary);
}

.service-icon {
    font-size: 36px;
    color: var(--primary-accent);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
}


/* About Section */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    color: var(--secondary-accent);
    margin-right: 12px;
}


/* Work Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-light);
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 15px;
}


/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide {
    display: none;
}

.testimonial-content {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--primary-accent);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 750px;
    margin: 0 auto;
}

.testimonial-content p {
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.author-info h4 {
    font-size: 18px;
}

.author-info p {
    color: var(--text-secondary);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.testimonial-prev,
.testimonial-next {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background-color: var(--primary-accent);
}


/* CTA Section */
.cta {
    text-align: center;
    padding: 80px 0;
    background: radial-gradient(circle, #2b1d5a 0%, var(--bg-dark) 70%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}


/* Footer */
.footer {
    padding: 80px 0 30px;
    background: var(--bg-light);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    height: 90px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-nav {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-end;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-secondary);
}

.footer-col ul a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}


/* Contact & Legal Pages */
.page-hero {
    padding: calc(var(--header-height) + 80px) 0 80px;
    background: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p,
.page-hero .breadcrumbs {
    color: var(--text-secondary);
}

.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-form-wrapper {
    flex: 1.5;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.method-icon {
    font-size: 24px;
    color: var(--primary-accent);
    margin-right: 20px;
}

.method-details h3 {
    font-size: 18px;
}

.method-details p,
.method-details p a {
    color: var(--text-secondary);
}

.contact-form {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px;
    border-radius: var(--border-radius);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px var(--shadow-color-primary);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-content {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    max-width: 500px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.popup-content h3 {
    font-size: 24px;
    color: var(--primary-accent);
    margin-bottom: 16px;
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}


.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content-wrapper h2 {
    margin: 40px 0 20px;
    color: var(--primary-accent);
}

.legal-content-wrapper p {
    color: var(--text-secondary);
}

.legal-content-wrapper ul {
    padding-left: 20px;
}

.legal-content-wrapper li {
    color: var(--text-secondary);
    margin-bottom: 10px;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 48px;
    }

    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 34px;
    }

    .stats-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .footer-top,
    .footer-nav {
        flex-direction: column;
    }

    /* Mobile Nav */
    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-light);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease-in-out;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        margin: 0;
    }

    .nav .btn {
        margin-top: 40px;
    }
}

/* --- END OF FILE styles.css --- */