:root {
    --bs-primary: #0369a1;
    --bs-secondary: #0284c7;
    --bs-primary-rgb: 3, 105, 161;
    --bs-secondary-rgb: 2, 132, 199;
}

body {
    font-family: 'Inter', sans-serif;
    color: #0c4a6e;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb-nav .nav-item {
    margin: 0;
}

.nav-separator {
    color: #0ea5e9;
    font-weight: bold;
    list-style: none;
}

.nav-link {
    color: #0c4a6e !important;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0.75rem;
}

.nav-link:hover,
.nav-link.active {
    color: #0369a1 !important;
}

.hero-diagonal {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #0369a1 0%, #0369a1 50%, transparent 50%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.hero-text-side {
    background: transparent;
    z-index: 2;
    padding: 3rem 0;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    color: white;
}

.hero-text p {
    color: rgba(255, 255, 255, 0.95);
}

.hero-image-side {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
}

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

@media (max-width: 991px) {
    .hero-diagonal {
        background: #0369a1;
        min-height: auto;
    }
    
    .hero-image-side {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
    }
    
    .hero-content {
        min-height: auto;
    }
}

.color-block-divider {
    background: #0ea5e9;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    font-weight: 500;
}

.bg-surface {
    background-color: #f0f9ff;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0ea5e9;
    transform: translateX(-50%);
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-number {
    width: 80px;
    height: 80px;
    background: #0369a1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.3);
    position: relative;
    z-index: 2;
}

.process-content {
    flex: 1;
    max-width: 45%;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: row !important;
        padding-left: 100px;
    }
    
    .process-number {
        position: absolute;
        left: 0;
    }
    
    .process-content {
        max-width: 100%;
    }
}

.feature-list {
    list-style: none;
    padding: 0;
}

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

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.minimal-footer {
    background: #0c4a6e;
    color: white;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #7dd3fc;
}

.cta-section {
    background: linear-gradient(135deg, #0369a1 0%, #0284c7 100%);
}

.btn-primary {
    background-color: #0369a1;
    border-color: #0369a1;
}

.btn-primary:hover {
    background-color: #0284c7;
    border-color: #0284c7;
}

.btn-outline-primary {
    color: #0369a1;
    border-color: #0369a1;
}

.btn-outline-primary:hover {
    background-color: #0369a1;
    border-color: #0369a1;
    color: white;
}

.contact-info-box {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.contact-link {
    color: #0369a1;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    color: #0284c7;
    text-decoration: underline;
}

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

.value-card {
    background: white;
    border-radius: 8px;
    transition: transform 0.3s ease;
    height: 100%;
}

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

.value-icon {
    color: #0ea5e9;
}

.stat-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.expertise-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    box-shadow: 0 8px 20px rgba(3, 105, 161, 0.15);
}

.service-detail-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.approach-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.approach-number {
    width: 60px;
    height: 60px;
    background: #0ea5e9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto;
}

.process-timeline-detailed {
    padding: 2rem 0;
}

.process-step-detailed {
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.process-number-large {
    font-size: 5rem;
    font-weight: bold;
    color: #0ea5e9;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.timeline-chart {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.timeline-marker {
    background: #0ea5e9;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    align-self: flex-start;
}

.timeline-content {
    flex: 1;
}

.contact-form input.error,
.contact-form textarea.error,
.contact-form select.error {
    border-color: #dc3545;
}

.contact-cta {
    border-left: 4px solid #0ea5e9;
}

.contact-info-block {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.contact-info-compact {
    border-left: 4px solid #0ea5e9;
}

.thanks-icon {
    animation: checkmark 0.5s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.legal-content h2 {
    color: #0369a1;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #0284c7;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    color: #0c4a6e;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

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

.legal-content a {
    color: #0369a1;
    text-decoration: none;
}

.legal-content a:hover {
    color: #0284c7;
    text-decoration: underline;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

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

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

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

.page-header {
    padding: 4rem 0 !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f0f9ff;
    color: #0369a1;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(3, 105, 161, 0.25);
}

@media (max-width: 991px) {
    .nav-separator {
        display: none;
    }
}