/* CSS 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: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.cookie-buttons button {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: #1d4ed8;
}

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

.btn-secondary:hover {
    background: #fff;
    color: #1a1a1a;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    font-weight: 500;
    color: #333;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Split-Screen Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.95rem;
    color: #64748b;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.intro-left,
.intro-right {
    flex: 1;
}

.intro-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.intro-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-right p {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    padding: 1rem;
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    font-weight: 500;
}

/* Services Highlight Section */
.services-highlight {
    background: #f8fafc;
    padding: 6rem 2rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #64748b;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-link {
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(5px);
}

/* Process Split Section */
.process-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.process-left,
.process-right {
    flex: 1;
}

.process-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-intro {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
}

.process-right {
    position: relative;
}

.process-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 6rem 2rem;
    color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.testimonial-author {
    font-weight: 600;
    opacity: 0.9;
}

/* Values Split Section */
.values-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.values-left,
.values-right {
    flex: 1;
}

.values-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.values-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.value-item p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Coverage Section */
.coverage-section {
    background: #f8fafc;
    padding: 4rem 2rem;
}

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

.coverage-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.coverage-content p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.coverage-cities {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.city-tag {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 50px;
    font-weight: 600;
    color: #2563eb;
}

/* Form Split Section */
.form-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.form-left,
.form-right {
    flex: 1;
}

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefits li {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Emergency CTA Section */
.emergency-cta {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 4rem 2rem;
    color: #fff;
}

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

.emergency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emergency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-emergency {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #fff;
    color: #dc2626;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-emergency:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: #94a3b8;
}

.footer-column a:hover {
    color: #2563eb;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #64748b;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 6rem 2rem 4rem;
    color: #fff;
    text-align: center;
}

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

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* Services Detail Page */
.services-detail {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-split {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 3rem;
    background: #f8fafc;
    border-radius: 12px;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-detail-left,
.service-detail-right {
    flex: 1;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #2563eb;
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-badge.urgent {
    background: #dc2626;
}

.service-detail-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-description {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-includes h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-includes ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-includes li {
    color: #64748b;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.price-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-from {
    font-size: 1.25rem;
    color: #64748b;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.price-note {
    color: #64748b;
    font-size: 0.95rem;
}

.service-image-box {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.pricing-note-section {
    background: #fff3cd;
    padding: 3rem 2rem;
    margin: 4rem 0;
}

.pricing-note-content {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-note-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.pricing-notes {
    list-style: disc;
    padding-left: 1.5rem;
}

.pricing-notes li {
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-services {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #fff;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* About Page */
.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.about-left,
.about-right {
    flex: 1;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-left p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.team-values {
    background: #f8fafc;
    padding: 6rem 2rem;
}

.team-values h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-card p {
    color: #64748b;
    line-height: 1.7;
}

.numbers-section {
    padding: 6rem 2rem;
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

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

.number-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.number-label {
    font-size: 1.1rem;
    color: #64748b;
}

.expertise-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.expertise-left,
.expertise-right {
    flex: 1;
}

.expertise-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.expertise-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.expertise-right p {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-list li {
    padding: 1rem;
    background: #f1f5f9;
    border-left: 4px solid #2563eb;
    color: #475569;
    font-size: 1.05rem;
}

.certifications-section {
    background: #f8fafc;
    padding: 4rem 2rem;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.certifications-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.certifications-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.cert-item {
    padding: 1rem 2rem;
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 8px;
    font-weight: 600;
    color: #2563eb;
}

.approach-section {
    padding: 6rem 2rem;
}

.approach-content h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.approach-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.approach-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.approach-item p {
    color: #64748b;
    line-height: 1.7;
}

.why-us-section {
    background: #f8fafc;
    padding: 6rem 2rem;
}

.why-us-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.why-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.why-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.why-card strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.why-card p {
    color: #64748b;
    line-height: 1.7;
}

.cta-about {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

/* Contact Page */
.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.contact-block p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
}

.contact-block a {
    color: #2563eb;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.contact-info-box {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-info-box h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-info-box p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.transport-item p {
    color: #64748b;
    margin: 0;
}

.map-placeholder {
    margin-top: 2rem;
}

.map-box {
    background: #e0e7ff;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #2563eb;
}

.map-box p {
    font-size: 1.25rem;
    color: #1e3a8a;
    font-weight: 600;
}

.contact-cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.faq-section {
    padding: 6rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #64748b;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background: #f8fafc;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.thanks-info {
    margin: 2rem 0;
}

.selected-service {
    padding: 1rem 2rem;
    background: #fff;
    border-left: 4px solid #2563eb;
    display: inline-block;
    font-size: 1.1rem;
}

.thanks-next {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-steps {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-steps li {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.thanks-contact p {
    color: #64748b;
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: #2563eb;
    font-weight: 600;
}

/* Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-container {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.legal-container p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-container li {
    color: #475569;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-container a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    font-style: italic;
    color: #64748b;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.gdpr-table thead,
.cookies-table thead {
    background: #f8fafc;
}

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1a1a1a;
    border-bottom: 2px solid #e2e8f0;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    color: #475569;
    border-bottom: 1px solid #e2e8f0;
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .process-split,
    .values-split,
    .form-split,
    .about-story-split,
    .expertise-split,
    .contact-split,
    .service-detail-split {
        flex-direction: column;
    }

    .service-detail-split.reverse {
        flex-direction: column;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid,
    .testimonials-grid,
    .values-grid,
    .numbers-grid,
    .approach-grid,
    .why-us-grid,
    .faq-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card,
    .value-card,
    .approach-item,
    .why-card,
    .faq-item {
        flex: 1 1 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-header-center h2,
    .team-values h2,
    .numbers-section h2 {
        font-size: 2rem;
    }

    .thanks-container {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

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

    .header-content h1 {
        font-size: 2rem;
    }

    .service-detail-split {
        padding: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}