:root {
    --primary: #0c4a6e;
    --secondary: #0369a1;
    --accent: #06b6d4;
    --background: #f0f9ff;
    --surface: #ffffff;
    --text: #082f49;
    --muted: #67e8f9;
    --gradient-start: #06b6d4;
    --gradient-end: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
    color: var(--text);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.centered-logo-nav {
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(8, 47, 73, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-left, .nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-left a, .nav-right a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-left a:hover, .nav-right a:hover {
    color: var(--accent);
}

.logo-link {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border-top: 1px solid var(--muted);
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}

.hero-split {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 600px;
    background: var(--surface);
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.hero-benefits li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.hero-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

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

.button-primary, .button-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.button-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.button-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.button-primary.large, .button-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

.wave-divider {
    width: 100%;
    height: 80px;
    fill: var(--surface);
    display: block;
}

.wave-divider.flip {
    transform: scaleY(-1);
}

.intro-section, .process-section, .services-preview, .why-choose, .cta-section {
    padding: 4rem 0;
}

.intro-section h2, .process-section h2, .services-preview h2, .why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 3rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(8, 47, 73, 0.1);
    transition: transform 0.3s;
}

.intro-card:hover {
    transform: translateY(-5px);
}

.intro-card.highlighted {
    border: 3px solid var(--accent);
}

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

.intro-card h3 {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
    color: var(--primary);
}

.intro-card p {
    padding: 0 1.5rem 1.5rem;
}

.vertical-process {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step.step-left .step-content {
    text-align: right;
    padding-right: 2rem;
}

.process-step.step-right {
    grid-template-columns: 1fr 1fr;
}

.process-step.step-right .step-content {
    order: 2;
    text-align: left;
    padding-left: 2rem;
}

.process-step.step-right .step-image {
    order: 1;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.step-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8, 47, 73, 0.1);
}

@media (max-width: 768px) {
    .process-line {
        left: 30px;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }
    
    .process-step.step-left .step-content,
    .process-step.step-right .step-content {
        text-align: left;
        padding: 0;
    }
    
    .process-step.step-right .step-content {
        order: 1;
    }
    
    .process-step.step-right .step-image {
        order: 2;
    }
    
    .step-number {
        position: absolute;
        left: -80px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8, 47, 73, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(8, 47, 73, 0.15);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.cta-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    margin: 4rem 0;
    box-shadow: 0 4px 20px rgba(8, 47, 73, 0.1);
}

.cta-content {
    padding: 3rem;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.cta-content p {
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--muted);
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cta-with-image {
        grid-template-columns: 1fr;
    }
    
    .cta-image {
        min-height: 300px;
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8, 47, 73, 0.1);
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

footer {
    background: var(--primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--muted);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--muted);
}

.sticky-contact-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--accent);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s;
    z-index: 999;
}

.sticky-contact-bar.visible {
    bottom: 0;
}

.sticky-contact-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.sticky-contact-bar a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    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;
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.about-intro, .expertise-section, .approach-section, .mission-values {
    padding: 4rem 0;
}

.about-grid, .approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content h2, .approach-text h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-image img, .approach-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(8, 47, 73, 0.1);
}

@media (max-width: 768px) {
    .about-grid, .approach-content {
        grid-template-columns: 1fr;
    }
}

.values-grid, .expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card, .expertise-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8, 47, 73, 0.1);
}

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

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

.expertise-card h3, .value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    align-items: start;
}

.service-detailed.reverse {
    direction: rtl;
}

.service-detailed.reverse > * {
    direction: ltr;
}

.service-content h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(8, 47, 73, 0.1);
    sticky: top 100px;
}

@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
    }
    
    .service-detailed.reverse {
        direction: ltr;
    }
}

.faq-section {
    padding: 4rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--surface);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(8, 47, 73, 0.1);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    float: right;
    font-size: 1.5rem;
    color: var(--accent);
}

.faq-item[open] summary:after {
    content: "−";
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-block, .contact-form-block {
    background: var(--surface);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(8, 47, 73, 0.1);
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--secondary);
}

.contact-cta {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-cta h3 {
    color: white;
    margin-bottom: 0.5rem;
}

form label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text);
}

form input, form textarea, form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--muted);
    border-radius: 6px;
    margin-top: 0.25rem;
    font-family: 'Barlow', sans-serif;
}

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

form input.error, form textarea.error {
    border-color: #ef4444;
}

form button[type="submit"] {
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.map-section {
    padding: 4rem 0;
    background: var(--surface);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(8, 47, 73, 0.1);
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--muted);
}

.legal-page {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-updated {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.legal-page article {
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: var(--secondary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page a {
    color: var(--accent);
}