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

:root {
    --color-primary: #0f172a;
    --color-secondary: #3b82f6;
    --color-accent: #10b981;
    --color-text: #1e293b;
    --color-text-light: #64748b;
    --color-bg: #ffffff;
    --color-bg-alt: #f8fafc;
    --color-bg-dark: #0f172a;
    --color-border: #e2e8f0;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

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

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-secondary);
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

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

.hero-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-visual {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-visual img {
    width: 100%;
    height: auto;
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 1.5rem;
    background: var(--color-bg-alt);
}

.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Content Wrapper */
.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Intro Section */
.intro-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.intro-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* Services Preview */
.services-preview {
    padding: 5rem 1.5rem;
    background: var(--color-bg-dark);
    color: white;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 0.5rem;
}

.services-cta {
    text-align: center;
}

/* Workflow Section */
.workflow-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

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

.workflow-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.workflow-steps {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Expertise Section */
.expertise-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.expertise-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.expertise-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.expertise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.expertise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.expertise-list li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.expertise-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.link-arrow::after {
    content: "→";
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author strong {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Languages Section */
.languages-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

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

.languages-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.languages-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--color-text-light);
}

.languages-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.language-pair {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.lang-flag {
    font-size: 3rem;
}

.lang-arrow {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.language-pair p {
    font-weight: 600;
    color: var(--color-text);
}

/* Form Section */
.form-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-dark);
    color: white;
}

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

.form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: 400;
}

/* Buttons */
.cta-primary,
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #0d9668;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 8px;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #0d9668;
    transform: translateY(-2px);
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

/* Footer */
.main-footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 4rem 1.5rem 2rem;
}

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

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta a {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--color-accent);
    color: white;
}

.btn-accept:hover {
    background: #0d9668;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject:hover {
    border-color: white;
}

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

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

.page-hero .lead {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.service-detail {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.service-detail-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.price-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: white;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-note {
    padding: 1rem;
    background: var(--color-bg-alt);
    border-left: 4px solid var(--color-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-pricing {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Process Section */
.process-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Story Section */
.story-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.story-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.story-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

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

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-icon {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.value-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Team Section */
.team-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-member {
    background: var(--color-bg-alt);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.member-role {
    font-size: 0.95rem;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Expertise Areas */
.expertise-areas {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.expertise-areas h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.expertise-areas > .content-wrapper > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.expertise-list-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.expertise-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.certifications-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.cert-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cert-item {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-secondary);
}

.cert-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.cert-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* CTA Section Alt */
.cta-section-alt {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section-alt p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-box {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
}

.contact-info-box h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.contact-info-box p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.info-item p {
    margin: 0;
}

.info-item a {
    color: var(--color-secondary);
}

/* Map Section */
.map-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg-alt);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.map-section > .content-wrapper > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.9);
    padding: 1rem;
    text-align: center;
    color: white;
}

.directions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.directions ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.directions li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 1.5rem;
    background: var(--color-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Thanks Section */
.thanks-section {
    padding: 8rem 1.5rem 5rem;
    background: var(--color-bg);
    min-height: 80vh;
}

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

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.thanks-message {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.thanks-details {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.thanks-info {
    margin-bottom: 3rem;
}

.thanks-info h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-box {
    background: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: left;
}

.step-num {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.step-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.thanks-contact {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 12px;
}

.thanks-contact p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: var(--color-secondary);
    font-weight: 600;
}

/* Legal Content */
.legal-content {
    padding: 8rem 1.5rem 5rem;
    background: var(--color-bg);
}

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

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 3rem 0 1rem;
    color: var(--color-primary);
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-content li {
    line-height: 1.7;
}

.legal-content a {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 10rem 2rem 6rem;
    }

    .hero-content {
        flex: 1;
    }

    .hero-visual {
        flex: 1;
    }

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

    .trust-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: 280px;
    }

    .workflow-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1;
        min-width: 250px;
    }

    .expertise-content {
        flex-direction: row;
        align-items: center;
    }

    .expertise-text {
        flex: 1;
    }

    .expertise-visual {
        flex: 1;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

    .languages-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .language-pair {
        flex: 1;
        min-width: 200px;
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .service-detail.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-visual {
        flex: 1;
    }

    .service-detail-content {
        flex: 1;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1;
        min-width: 280px;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1;
        min-width: 280px;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info-box {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
    }

    .footer-col {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .next-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step-box {
        flex: 1;
        min-width: 200px;
    }

    .cert-grid {
        flex-direction: row;
    }

    .cert-item {
        flex: 1;
    }

    .expertise-list-detailed {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .expertise-item {
        flex: 1;
        min-width: 300px;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4rem;
    }

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