/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #f5f5f5;
    --accent-orange: #e8621b;
    --accent-dark-orange: #d84315;
    --accent-light-orange: #ff9800;
    --accent-blue: #1565c0;
    --accent-gray: #666;
    --text: #333;
    --text-light: #666;
    --border: #e0e0e0;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.5;
    color: var(--text);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    letter-spacing: -1px;
}

.logo i {
    font-size: 1.6rem;
    color: var(--accent-orange);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
    padding: 120px 30px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--accent-orange);
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: 2px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--accent-dark-orange);
    color: var(--white);
    border-color: var(--accent-dark-orange);
}

/* Services Section */
.services {
    padding: 100px 30px;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.3s;
    padding: 2.5rem;
    text-align: center;
    border-radius: 0;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(232, 98, 27, 0.1) 0%, rgba(216, 67, 21, 0.1) 100%);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    color: var(--accent-orange);
    font-weight: bold;
    letter-spacing: 1px;
}

.service-card-1 .service-icon { color: var(--accent-orange); }
.service-card-2 .service-icon { color: var(--accent-dark-orange); }
.service-card-3 .service-icon { color: var(--accent-light-orange); }
.service-card-4 .service-icon { color: var(--accent-orange); }
.service-card-5 .service-icon { color: var(--accent-dark-orange); }
.service-card-6 .service-icon { color: var(--accent-light-orange); }

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.service-card:hover {
    border-color: var(--accent-orange);
    background: #fafafa;
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.12);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(232, 98, 27, 0.2) 0%, rgba(216, 67, 21, 0.2) 100%);
    transform: scale(1.1);
}

/* Stats Section */
.stats {
    padding: 80px 30px;
    background: var(--primary);
    color: var(--white);
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-orange);
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 30px;
    background: var(--secondary);
}

.why-choose h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-item {
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--accent-orange);
    text-align: center;
    transition: all 0.3s;
    border-radius: 0;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.12);
}

.why-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Item Icons */
.icon-symbol {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232, 98, 27, 0.1) 0%, rgba(216, 67, 21, 0.1) 100%);
    border: 2px solid var(--accent-orange);
    border-radius: 50%;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 30px;
    background: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 0;
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.12);
}

.stars {
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-card h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Testimonial Stars */
.stars {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-orange);
    letter-spacing: 1px;
    font-weight: bold;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 30px;
    background: var(--accent-orange);
    color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    font-weight: 800;
    letter-spacing: -1px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255,255,255,0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--accent-orange);
    border-radius: 0;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Contact Section */
.contact {
    padding: 100px 30px;
    background: var(--secondary);
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -1px;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(232, 98, 27, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--accent-dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.3);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
    font-size: 0.9rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-dark-orange) 100%);
    padding: 80px 30px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Services Page */
.services-page {
    padding: 100px 30px;
    background: var(--white);
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-full-card {
    background: var(--secondary);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: all 0.3s;
}

.service-full-card .service-icon.large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-full-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.service-full-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    color: var(--text);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.service-full-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.12);
}

/* Why Us Page */
.why-us-page {
    padding: 100px 30px;
    background: var(--white);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.why-section {
    background: var(--secondary);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.why-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.why-section p {
    color: var(--text-light);
    line-height: 1.7;
}

.why-section:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.12);
}

.stats-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-card h4 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Page */
.testimonials-page {
    padding: 100px 30px;
    background: var(--white);
}

.testimonials-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-full-card {
    background: var(--secondary);
    padding: 2rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent-orange);
    transition: all 0.3s;
}

.testimonial-full-card:hover {
    box-shadow: 0 8px 16px rgba(232, 98, 27, 0.12);
    transform: translateY(-5px);
}

.testimonial-full-card .stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    letter-spacing: 3px;
}

.testimonial-full-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-full-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-service {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Contact Page */
.contact-page {
    padding: 100px 30px;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary);
    font-weight: 700;
}

.contact-form-section {
    background: var(--secondary);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    background: var(--secondary);
    padding: 2rem;
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent-orange);
}

.contact-info-item h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    transition: all 0.3s;
}

.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(232, 98, 27, 0.1);
}

/* CTA Section */
.cta-section {
    background: var(--accent-orange);
    color: var(--white);
    padding: 80px 30px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .cta-button {
    background-color: var(--white);
    color: var(--accent-orange);
}

.cta-section .cta-button:hover {
    background-color: var(--accent-dark-orange);
    color: var(--white);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .services-full-grid {
        grid-template-columns: 1fr;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .stats-detailed {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-full-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .services-page,
    .why-us-page,
    .testimonials-page,
    .contact-page {
        padding: 60px 20px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .stats-detailed {
        grid-template-columns: 1fr;
    }
}
