/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 50;
    border-bottom: 1px solid #1f2937;
}

nav .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E43636;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #E2DDB4;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-link:hover {
    color: #E43636;
}

.nav-link.active {
    color: #E43636;
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    background-color: #E43636;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(228, 54, 54, 0.5);
}

/* Hero Section */
.about-hero {
    padding: 10rem 1.5rem 5rem;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
}

.hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-highlight {
    color: #E43636;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #E2DDB4;
}

/* Introduction Section */
.introduction {
    padding: 5rem 1.5rem;
    background-color: #0a0a0a;
}

.introduction .container {
    max-width: 1280px;
    margin: 0 auto;
}

.intro-content {
    max-width: 56rem;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #F6EFD2;
}

.intro-text {
    font-size: 1.125rem;
    color: #E2DDB4;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    color: #F6EFD2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #E2DDB4;
    text-align: center;
    margin-bottom: 4rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #E43636 0%, #a82828 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-section p {
    font-size: 1.25rem;
    color: #F6EFD2;
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #F6EFD2;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    padding: 4rem 1.5rem 2rem;
    border-top: 1px solid #1f2937;
    background-color: #050505;
}

.container-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.footer-info .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #E43636;
    margin-bottom: 1rem;
}

.footer-text {
    color: #E2DDB4;
    max-width: 24rem;
    margin: 0 auto;
}

.footer-contact h3 {
    color: #F6EFD2;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #E2DDB4;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #E43636;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 2rem auto 0;
}

.footer-copyright {
    color: #6b7280;
}

/* ============================================ */
/* SERVICE-SPECIFIC STYLES */
/* ============================================ */

/* Service Detail Section */
.service-detail {
    padding: 5rem 1.5rem;
    background-color: #000;
}

.service-detail.alternate {
    background-color: #0a0a0a;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-number {
    font-size: 4rem;
    font-weight: bold;
    color: #E43636;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.service-detail-title {
    font-size: 3rem;
    font-weight: bold;
    color: #F6EFD2;
    margin-bottom: 0.5rem;
}

.service-detail-subtitle {
    font-size: 1.5rem;
    color: #E43636;
    margin-bottom: 2rem;
}

.service-description h3 {
    font-size: 1.75rem;
    color: #F6EFD2;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-description p {
    font-size: 1.125rem;
    color: #E2DDB4;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    font-size: 1.125rem;
    color: #E2DDB4;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #E43636;
    font-weight: bold;
}

.service-list li strong {
    color: #F6EFD2;
}

/* Service Features Sidebar */
.service-detail-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background-color: #0a0a0a;
    border: 2px solid #E43636;
    border-radius: 1rem;
    padding: 2rem;
}

.service-detail.alternate .feature-box {
    background-color: #000;
}

.feature-box h4 {
    font-size: 1.5rem;
    color: #F6EFD2;
    margin-bottom: 1rem;
}

.feature-box ul {
    list-style: none;
    padding: 0;
}

.feature-box ul li {
    font-size: 1rem;
    color: #E2DDB4;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.feature-box p {
    font-size: 1rem;
    color: #E2DDB4;
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 1.5rem;
    background-color: #0a0a0a;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 3rem auto;
}

.pricing-card {
    background-color: #000;
    border: 2px solid #E43636;
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 40px rgba(228, 54, 54, 0.3);
}

.pricing-card.featured {
    border-color: #E43636;
    border-width: 3px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #E43636;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 2rem;
    color: #F6EFD2;
    margin-bottom: 1rem;
}

.pricing-desc {
    font-size: 1.125rem;
    color: #E2DDB4;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    font-size: 1rem;
    color: #E2DDB4;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.pricing-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #E43636;
    color: #fff;
    text-decoration: none;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.3s;
    margin-top: 1rem;
}

.pricing-btn:hover {
    background-color: #c42e2e;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(228, 54, 54, 0.5);
}

.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #E2DDB4;
    margin-top: 2rem;
    font-style: italic;
}

/* Process Section */
.process-section {
    padding: 5rem 1.5rem;
    background-color: #000;
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.process-step {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #0a0a0a;
    border: 2px solid #E43636;
    border-radius: 1rem;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateX(1rem);
    box-shadow: 0 10px 30px rgba(228, 54, 54, 0.3);
}

.step-number {
    position: absolute;
    left: -1rem;
    top: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #E43636;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.process-step h3 {
    font-size: 1.75rem;
    color: #F6EFD2;
    margin-bottom: 1rem;
    padding-left: 3rem;
}

.process-step p {
    font-size: 1.125rem;
    color: #E2DDB4;
    line-height: 1.8;
    padding-left: 3rem;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .service-number {
        font-size: 3rem;
    }

    .service-detail-title {
        font-size: 2rem;
    }

    .service-detail-subtitle {
        font-size: 1.25rem;
    }

    .service-description h3 {
        font-size: 1.5rem;
    }

    .service-description p,
    .service-list li {
        font-size: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        position: static;
        margin-bottom: 1rem;
    }

    .process-step h3,
    .process-step p {
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
    }

    .service-detail-grid.reverse {
        grid-template-columns: 1fr 2fr;
    }

    .service-detail-grid.reverse .service-detail-content {
        order: 2;
    }

    .service-detail-grid.reverse .service-detail-features {
        order: 1;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-detail-title {
        font-size: 3.5rem;
    }
}

/* ============================================ */
/* RESPONSIVE NAVIGATION & FOOTER */
/* ============================================ */

/* Mobile devices (up to 640px) */
@media (max-width: 640px) {
    nav .nav-links {
        gap: 0.75rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .nav-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .about-hero {
        padding: 7rem 1rem 4rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .intro-content h2,
    .section-title,
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* Tablets (640px and up) */
@media (min-width: 640px) {
    .container-footer-grid {
        flex-direction: row;
        gap: 3rem;
        justify-content: space-around;
    }

    .footer-info,
    .footer-contact {
        text-align: left;
    }

    .footer-text {
        margin: 0;
    }
}

/* Medium screens (768px and up) */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.875rem;
    }

    .nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Large tablets and desktops (768px and up) */
@media (min-width: 768px) {
    .about-hero h1 {
        font-size: 4.5rem;
    }

    .container-footer-grid {
        gap: 4rem;
    }
}

/* Large desktops (1024px and up) */
@media (min-width: 1024px) {
    .about-hero h1 {
        font-size: 5rem;
    }

    .section-title,
    .intro-content h2,
    .cta-section h2 {
        font-size: 3.5rem;
    }

    .container-footer-grid {
        gap: 8rem;
    }
}

/* Extra large screens (1280px and up) */
@media (min-width: 1280px) {
    .about-hero h1 {
        font-size: 5.5rem;
    }

    .container-footer-grid {
        gap: 12rem;
    }
}

/* Very small screens - Hide navigation links */
@media (max-width: 480px) {
    .nav-links {
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .nav-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

    .logo {
        font-size: 1.25rem;
    }
}
@media (max-width: 640px) {
    .nav-links {
        display: none;
    }

    .nav-btn {
        display: block;
    }
}
