:root {
    --primary-color: #0d1b2a;
    --secondary-color: #1b4965;
    --accent-color: #00a6fb;
    --accent-gradient: linear-gradient(45deg, #00a6fb, #0582ca);
    --text-light: #e0e1dd;
    --text-dark: #212529;
    --bg-light: #f8f9fa;
    --bg-dark: #0d1b2a;
    --card-bg: #112337;
    --border-color: #2a3b4d;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
}

.navbar {
    background-color: rgba(13, 27, 42, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.navbar-brand {
    color: var(--accent-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link.active, .nav-link:hover {
    color: var(--accent-color) !important;
}

.dropdown-menu {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
}
.dropdown-item {
    color: var(--text-light);
}
.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--accent-color);
}

.hero-section {
    position: relative;
    padding: 180px 0;
    background: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-weight: 800;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    opacity: 0.9;
}

.cta-button {
    background: var(--accent-gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 166, 251, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 166, 251, 0.5);
}

.hero-image-container img {
    border: 3px solid var(--border-color);
}

section {
    padding: 100px 0;
}

.section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.bg-light .section-title {
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bg-light .section-subtitle, .bg-light p {
    color: #6c757d;
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--accent-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.card-title {
    font-weight: 700;
    color: #fff;
}

.card-text {
    color: var(--text-light);
    opacity: 0.8;
}

.about-section img {
    border: 3px solid #dee2e6;
}

.process-section {
    background-color: var(--secondary-color);
}

.process-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 16px;
    border-top: 5px solid var(--accent-color);
    height: 100%;
    transition: transform 0.3s ease;
}
.process-card:hover {
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.3;
}

.process-title {
    font-weight: 700;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.footer-section {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding-top: 1.5rem;
}
.footer-section h5 {
    color: var(--accent-color);
    font-weight: 700;
}
.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--accent-color);
}
.copyright-bar {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
}

/* Page Specific Styles */
.page-header {
    padding: 120px 0 60px;
    background: var(--secondary-color);
    text-align: center;
}
.page-title {
    font-weight: 800;
}

.sidebar-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}
.sidebar-title {
    font-weight: 700;
    color: var(--accent-color);
}
.sidebar-card .bi {
    color: var(--accent-color);
}

.accordion-button {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
}
.accordion-button:not(.collapsed) {
    box-shadow: inset 0 -1px 0 var(--border-color);
}
.accordion-item {
    background-color: var(--primary-color);
    border: 1px solid var(--border-color);
}
.accordion-body {
    background-color: var(--card-bg);
    color: var(--text-light);
}

.contact-info-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
}
.icon-circle-sm {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}
.contact-link {
    color: var(--text-light);
    text-decoration: none;
}
.contact-link:hover {
    color: var(--accent-color);
}
.map-container img {
    filter: grayscale(1) brightness(0.8);
}
.form-control {
    background-color: var(--secondary-color);
    border-color: var(--border-color);
    color: var(--text-light);
}
.form-control:focus {
    background-color: var(--secondary-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 166, 251, 0.25);
    color: #fff;
}
.legal-text h4 {
    color: var(--accent-color);
    margin-top: 2rem;
    font-weight: 700;
}
.legal-text ul {
    list-style-type: square;
}

.thank-you-header {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-circle-lg {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

/* Animations */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-animation .shape {
    position: absolute;
    background: rgba(0, 166, 251, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}
.background-animation .shape:nth-child(1) {
    width: 200px; height: 200px; top: 10%; left: 5%; animation-duration: 25s;
}
.background-animation .shape:nth-child(2) {
    width: 300px; height: 300px; top: 60%; left: 80%; animation-duration: 30s;
}
.background-animation .shape:nth-child(3) {
    width: 150px; height: 150px; top: 40%; left: 40%; animation-duration: 20s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 0.8s ease-out forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Cookie Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    color: var(--text-light);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-consent-banner-content {
    flex-grow: 1;
}

.cookie-consent-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-modal {
    color: var(--text-light);
}

.cookie-modal .modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
}
.cookie-modal .modal-header, .cookie-modal .modal-footer {
    border-bottom-color: var(--border-color);
    border-top-color: var(--border-color);
}
.cookie-category {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}
.cookie-category .form-switch {
    font-size: 1.25rem;
}
.cookie-category p {
    font-size: 0.9rem;
    opacity: 0.8;
}