:root {
    --brand-dark: #0D1B2A;
    --brand-darker: #050d16;
    --brand-accent: #00F5D4;
    --brand-accent-dark: #00bfa8;
    --brand-secondary: #9B5DE5;
    --text-dark: #1E293B;
    --text-light: #F1F5F9;
    --text-muted: #94A3B8;
    --bg-light: #F8F9FA;
    --border-light: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

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

.prose {
    color: #334155;
}
.prose h2 {
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 1.5em;
    margin-top: 2em;
}
.prose p, .prose ul li {
    line-height: 1.8;
}
.prose a {
    color: var(--brand-accent-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}
.prose a:hover {
    color: var(--brand-dark);
}

/* Header */
#main-header {
     background-color: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

footer{
    background-color: var(--brand-dark) !important;

}

#main-header.scrolled {
    background-color: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
    position: relative;
    color: white;
    font-weight: 600;
    transition: color 0.3s;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}


/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--brand-dark);
    background-image: linear-gradient(45deg, var(--brand-accent), #90e0ef);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.2);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 245, 212, 0.4);
}

.cta-button-sm {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    color: white;
    background: transparent;
    border: 2px solid var(--brand-accent);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-sm:hover {
    background-color: var(--brand-accent);
    color: var(--brand-dark);
}


/* Hero Section */
.hero-section {
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(45deg, var(--brand-accent), #FEE440);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.hero-title {
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-image {
    border: 3px solid rgba(255,255,255,0.1);
}

/* Animated Shapes */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    list-style: none;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    animation: float 25s infinite linear;
    border-radius: 50%;
}
.shape1 { width: 40px; height: 40px; left: 15%; bottom: 20%; animation-duration: 20s; }
.shape2 { width: 80px; height: 80px; left: 60%; top: 10%; animation-duration: 35s; }
.shape3 { width: 20px; height: 20px; left: 80%; bottom: 50%; animation-duration: 15s; }

.bg-gradient-to-br {
background: #0b1826 !important;
}
/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 16px;
    border-top: 4px solid;
    border-image: linear-gradient(to right, var(--brand-accent), var(--brand-secondary)) 1;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}
.card-text {
    color: #475569;
    margin-bottom: 1.5rem;
}
.card-link {
    font-weight: 600;
    color: var(--brand-accent-dark);
    transition: color 0.3s ease;
}
.card-link:hover {
    color: var(--brand-dark);
}

/* Process Steps (dark bg) */
.process-step {
    padding: 1.5rem;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-accent);
    color: var(--brand-dark);
    font-weight: 700;
    border: 2px solid var(--brand-dark);
}
.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.step-text {
    color: var(--text-muted);
}


/* Footer */
.footer-link {
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: var(--brand-accent);
}

/* Animations */
.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);
    }
}
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-600 { animation-delay: 0.6s; }

/* Contact page styles */
.contact-icon-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-right: 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-accent), var(--brand-accent-dark));
    color: white;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.2);
}

.form-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 4px;
    border-color: var(--border-light);
    color: var(--brand-accent-dark);
}
.form-checkbox:focus {
    ring: var(--brand-accent-dark);
    ring-offset: 0;
}
.form-error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Service page styles */
.page-header-section {
    min-height: 40vh;
}
.process-card {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border-bottom: 3px solid var(--brand-accent);
}
.process-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    background: var(--brand-dark);
    color: white;
}
.process-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.process-card-text {
    color: #475569;
}

/* Cookie Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--brand-dark);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards ease-out;
}
@keyframes slideUp {
    to { transform: translateY(0); }
}

/* Cookie Modal */
#cookie-consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#cookie-consent-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.cookie-modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}
.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .cookie-slider {
    background-color: var(--brand-accent-dark);
}
input:checked + .cookie-slider:before {
    transform: translateX(22px);
}
input:disabled + .cookie-slider {
    background-color: #9ca3af;
    cursor: not-allowed;
}