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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1d4ed8;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.main-nav {
    display: none;
}

.main-nav a {
    margin-left: 2rem;
    font-weight: 500;
    color: #333;
}

.main-nav a:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    flex: 1 1 300px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #667eea;
}

.btn-text {
    background: transparent;
    color: #666;
    padding: 0.5rem 1rem;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
}

.section-intro {
    margin-bottom: 3rem;
}

.section-intro.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Philosophy Section */
.company-philosophy {
    background-color: #f9fafb;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.philosophy-item {
    flex: 1 1 280px;
    text-align: center;
}

.philosophy-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

/* Services Highlight */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-card {
    flex: 1 1 260px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Statistics */
.statistics {
    background-color: #1f2937;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-block {
    flex: 1 1 280px;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-header h3 {
    margin: 0;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1 1 240px;
    position: relative;
    padding-top: 3rem;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    font-weight: 700;
    color: #e5e7eb;
    line-height: 1;
}

.step h3 {
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial {
    flex: 1 1 300px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial footer strong {
    color: #1f2937;
}

.testimonial footer span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Industries */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.industry-item {
    flex: 1 1 180px;
    text-align: center;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.industry-item img {
    margin: 0 auto 1rem;
}

.industry-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.industry-item p {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Insights */
.insights {
    background-color: #f9fafb;
}

.insights-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.insights-content {
    flex: 1 1 400px;
}

.insights-content h2 {
    margin-bottom: 1.5rem;
}

.insights-content p {
    margin-bottom: 1rem;
}

.insights-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.text-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: #2563eb;
}

/* FAQ */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #4b5563;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #d1d5db;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    line-height: 1;
}

.cookie-modal-close:hover {
    color: #1f2937;
}

.cookie-modal h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

.cookie-option p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* About Page */
.story {
    padding: 4rem 0;
}

.story-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-content {
    flex: 1 1 400px;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
}

.story-visual {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.values {
    background-color: #f9fafb;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 300px;
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Team */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 260px;
    text-align: center;
}

.team-avatar {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #4b5563;
}

/* Milestones */
.milestones {
    background-color: #f9fafb;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    flex-shrink: 0;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Achievements */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-item {
    flex: 1 1 240px;
    text-align: center;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.achievement-badge {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.achievement-item h3 {
    margin-bottom: 0.5rem;
}

/* Company Info */
.company-info {
    background-color: #f9fafb;
}

.info-box {
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.info-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-col {
    flex: 1 1 260px;
}

.info-col h3 {
    margin-bottom: 1rem;
}

/* Services Page */
.services-intro {
    background-color: #f9fafb;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content p {
    margin-bottom: 1rem;
}

.services-list .service-detail {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.service-detail-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-detail-title {
    flex: 1 1 300px;
}

.service-detail-title h2 {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.25rem;
    color: #2563eb;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-benefits {
    background-color: #f9fafb;
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-point {
    flex: 1 1 260px;
}

.benefit-point h3 {
    margin-bottom: 1rem;
}

/* Process Flow */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.flow-step {
    flex: 1 1 200px;
    text-align: center;
}

.flow-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.flow-step h3 {
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.contact-info,
.contact-description {
    flex: 1 1 400px;
}

.contact-block {
    margin-top: 2rem;
}

.contact-block h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item img {
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.info-box-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.info-box-contact h4 {
    margin-bottom: 1rem;
}

.info-box-contact ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Directions */
.directions {
    background-color: #f9fafb;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.direction-item {
    flex: 1 1 280px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.direction-icon {
    margin-bottom: 1rem;
}

.direction-item h3 {
    margin-bottom: 1rem;
}

/* Company Details */
.company-info-contact {
    background-color: #f9fafb;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.company-detail-item {
    flex: 1 1 300px;
}

.company-detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

/* Service Area */
.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.area-group {
    flex: 1 1 300px;
}

.area-group h3 {
    margin-bottom: 1rem;
}

.area-group ul {
    list-style: none;
}

.area-group ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.area-group ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
}

.area-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Thank You Page */
.thank-you-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
}

.thank-you-info {
    padding: 4rem 0;
}

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.info-block {
    flex: 1 1 400px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.info-block h2 {
    margin-bottom: 1rem;
}

/* Quick Links */
.quick-links {
    background-color: #f9fafb;
}

.links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.link-card {
    flex: 1 1 260px;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    color: inherit;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.link-card img {
    margin: 0 auto 1rem;
}

.link-card h3 {
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.link-card p {
    color: #6b7280;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

.legal-page h1 {
    margin-bottom: 1rem;
    color: #1f2937;
}

.legal-intro {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.legal-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #6b7280;
}

/* Responsive Design */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        margin: 0;
        padding: 1rem 20px;
        border-bottom: 1px solid #e5e7eb;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    section {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }
}

/* Utility Classes */
.centered {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}
