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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4f46e5;
}

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

ul {
    list-style: none;
}

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

/* Header and Navigation */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.logo a:hover {
    color: #4f46e5;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

.nav-menu a {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6366f1;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #6366f1;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }
}

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

.btn-primary {
    background: #6366f1;
    color: #ffffff;
}

.btn-primary:hover {
    background: #4f46e5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.btn-secondary:hover {
    background: #6366f1;
    color: #ffffff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero */
.page-hero {
    background: #f9fafb;
    padding: 4rem 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

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

.page-lead {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.section-intro {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Intro Section */
.intro-section {
    background: #f9fafb;
}

.intro-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-visual {
    flex: 1;
}

.intro-visual svg {
    width: 100%;
    max-width: 300px;
}

@media (max-width: 768px) {
    .intro-grid {
        flex-direction: column;
    }
}

/* Philosophy Section */
.philosophy-section {
    background: #ffffff;
}

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

.philosophy-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.philosophy-card h3 {
    color: #6366f1;
    margin-bottom: 0.75rem;
}

/* Services Highlight */
.services-highlight {
    background: #f9fafb;
}

.services-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-feature {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* Benefits Section */
.benefits-section {
    background: #ffffff;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e7ff;
    min-width: 80px;
}

.benefit-content {
    flex: 1;
}

/* Stats Section */
.stats-section {
    background: #111827;
    color: #ffffff;
}

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

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

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

.stat-label {
    font-size: 1rem;
    color: #d1d5db;
}

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

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #6366f1;
}

/* Process Section */
.process-section {
    background: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

/* Knowledge Section */
.knowledge-section {
    background: #f9fafb;
}

.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.knowledge-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

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

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

.faq-question:hover {
    color: #6366f1;
}

.faq-icon {
    font-size: 1.5rem;
    color: #6366f1;
    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;
    padding: 0 0;
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Story Section */
.story-section {
    background: #f9fafb;
}

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

/* Mission Section */
.mission-section {
    background: #ffffff;
}

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 300px;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.values-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

/* Team Section */
.team-section {
    background: #f9fafb;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.team-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.team-icon svg {
    width: 100%;
    height: 100%;
}

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

/* Approach Section */
.approach-section {
    background: #ffffff;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-step {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border-top: 4px solid #6366f1;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 2rem auto 0;
}

.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: #6366f1;
    min-width: 80px;
}

.timeline-content {
    flex: 1;
}

/* Philosophy Detail */
.philosophy-detail {
    background: #f9fafb;
}

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

/* Industries Section */
.industries-section {
    background: #ffffff;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

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

.service-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.service-card.featured-service {
    border: 2px solid #6366f1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6366f1;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-card-header {
    padding: 2rem 2rem 1rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.service-card-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
}

.service-card-body {
    padding: 2rem;
}

.service-features {
    margin-top: 1.5rem;
}

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

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

/* Service Benefits */
.service-benefits {
    background: #ffffff;
}

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

.benefit-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

/* Process Detail */
.process-detail {
    background: #f9fafb;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-block {
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.process-step-number {
    display: inline-block;
    background: #6366f1;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison-section {
    background: #ffffff;
}

.comparison-content {
    margin-top: 2rem;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
}

.comparison-item ul {
    margin-top: 1rem;
}

.comparison-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

/* Contact Page */
.contact-info-section {
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.info-box {
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #6366f1;
}

.info-box ul {
    margin-top: 1rem;
}

.info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6366f1;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* Location Section */
.about-location {
    background: #f9fafb;
}

.location-content {
    margin-top: 2rem;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.location-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

/* Company Info Section */
.company-info-section {
    background: #ffffff;
}

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

.company-info-block {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
}

/* Visit Info */
.visit-info {
    background: #f9fafb;
}

.visit-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.visit-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

/* Thank You Page */
.thankyou-hero {
    background: #f9fafb;
    padding: 5rem 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.thankyou-icon svg {
    width: 100%;
    height: 100%;
}

.thankyou-lead {
    font-size: 1.25rem;
    color: #6b7280;
}

.next-steps {
    background: #ffffff;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #6366f1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.while-waiting {
    background: #f9fafb;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.resource-card .btn {
    margin-top: 1rem;
}

.info-section {
    background: #ffffff;
}

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

/* Legal Pages */
.legal-hero {
    background: #f9fafb;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.legal-updated {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.legal-content {
    background: #ffffff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.legal-text h3 {
    margin-top: 1.5rem;
    color: #6366f1;
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

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

.footer-column a:hover {
    color: #6366f1;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

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

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

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

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

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

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

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

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

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}