/* --- START OF FILE styles.css --- */

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

:root {
    --bg-dark: #101010;
    --surface-color: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --accent-gradient: linear-gradient(90deg, #FF512F 0%, #DD2476 100%);
    --accent-primary: #FF512F;
    --border-color: rgba(255, 255, 255, 0.15);

    --font-main: 'Roboto', sans-serif;

    --transition-fast: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
    --header-height: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-weight: 900;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--accent-primary);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 16px;
    background: var(--accent-gradient);
    color: var(--text-primary);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(255, 81, 47, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(221, 36, 118, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: var(--accent-primary);
    color: var(--text-primary);
    transform: translateY(0);
    box-shadow: none;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    height: var(--header-height);
}

.header.scrolled {
    background-color: rgba(16, 16, 16, 0.8);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo a:hover {
    color: var(--text-primary);
}

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-list a {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.nav-list a.active {
    color: var(--accent-primary);
}

.mobile-toggle {
    display: none;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-primary);
    border-radius: 3px;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
    top: 0;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 0;
}

.mobile-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* Hero */
.hero {
    text-align: center;
    padding: calc(var(--header-height) + 100px) 0;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 68px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-image {
    margin-top: 80px;
}

.hero-image img {
    width: 400px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}


/* Services */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro h2 {
    font-size: 44px;
    margin-bottom: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--surface-color);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 81, 47, 0.1), transparent 40%);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(1);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 36px;
    display: inline-block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

/* Stats (Results) */
.stats {
    background-color: var(--surface-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--border-color);
    border: 1px solid var(--border-color);
}

.stat-item {
    background-color: var(--surface-color);
    padding: 40px 20px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--surface-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.1);
}

.step-details h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

/* CTA */
.cta .container {
    text-align: center;
    background: var(--accent-gradient);
    padding: 60px 40px;
    border-radius: var(--border-radius);
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 18px;
}

.cta .btn-outline {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.cta .btn-outline:hover {
    background-color: var(--text-primary);
    color: #DD2476;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: #121212; /* Matching the dark background from your image */
    color: #a0a0a0; /* A suitable dim text color */
}

/* This is the main flex container for the top two columns */
.footer-top {
    display: flex;
    justify-content: space-between; /* Pushes left and right columns apart */
    align-items: flex-start; /* Aligns the tops of the columns */
    flex-wrap: wrap; /* Allows columns to stack on mobile */
    gap: 40px;
    margin-bottom: 50px;
}

/* Left Column Styling */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content to the left */
    gap: 25px;
}

.footer .logo a {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 25px;
    font-weight: 500;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #ffffff;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 18px;
}
.footer-social a {
    color: #a0a0a0;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: #ffffff;
}


/* Right Column Styling */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns content to the left */
    gap: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.footer-contact a, .footer-contact span {
    color: #a0a0a0;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}

.footer-contact i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #a0a0a0;
}

/* Bottom Copyright Section Styling */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #333; /* Separator line */
    text-align: center;
}

.footer-copy {
    font-size: 14px;
    color: #888;
}

.footer-copy a {
    color: #a0a0a0;
    text-decoration: none;
}
.footer-copy a:hover {
    text-decoration: underline;
}


/* --- RESPONSIVE STYLES --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column; /* Stack columns vertically on mobile */
        align-items: center; /* Center the stacked columns */
        text-align: center;
    }

    .footer-info, .footer-contact {
        align-items: center; /* Center the items within each column */
    }
}
/* Contact & Privacy Pages */
.page-header {
    text-align: center;
    padding-top: calc(var(--header-height) + 100px);
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--surface-color);
    padding: 50px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-main);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
}

.privacy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 28px;
}

.privacy-content ul {
    list-style-position: inside;
    padding-left: 10px;
}


/* Responsive */
@media(max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .hero h1 {
        font-size: 48px;
    }

    .section-intro h2 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 35px;
        text-align: center;
        font-size: 24px;
    }

    .nav .btn {
        display: inline-block;
        /* Show button on mobile menu */
        margin-top: 30px;
    }
}

/* --- END OF FILE styles.css --- */