:root {
    --color-dark: #0d1b2a;
    --color-accent: #00a693;
    --color-accent-dark: #007a6c;
    --color-light: #f8f9fa;
    --color-text-dark: #1f2937;
    --color-text-light: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

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

.bg-gradient-to-br{
    background: #311a31;
}

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

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

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

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

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

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

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-image: linear-gradient(45deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 166, 147, 0.3);
    border: none;
    cursor: pointer;
}

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

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

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

/* Hero Section */
.hero-section {
    min-height: 80vh;
}

.hero-title {
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

.animated-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.animated-shapes .shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.animated-shapes .shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

.animated-shapes .shape-3 {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 20%;
    animation: float 7s ease-in-out infinite;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 2rem;
    letter-spacing: 0.5px;
}

/* Service Card */
.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 4px solid var(--color-accent);
    transition: all 0.3s ease;
}

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

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

.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-accent);
    font-weight: 600;
}

/* Feature Card (Service page) */
.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}


/* Process Steps */
.process-step {
    position: relative;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    border: 4px solid var(--color-light);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Forms */
.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 166, 147, 0.2);
}
.form-checkbox {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border-color: #d1d5db;
    color: var(--color-accent);
}
.form-checkbox:checked {
    background-color: var(--color-accent);
}
.form-checkbox:focus {
    ring: var(--color-accent);
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

/* Contact Info */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #e6fffa;
    color: var(--color-accent);
}

/* Legal Pages */
.legal-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}
.legal-content p, .legal-content ul {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4b5563;
}
.legal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

/* Footer */
.footer-link {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-accent);
}

/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(13, 27, 42, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(5px);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.cookie-modal {
    background-color: white;
    color: var(--color-text-dark);
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
}

/* Switch Toggle for Cookie Modal */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 28px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: var(--color-accent);
}
input:disabled + .slider {
  background-color: #ccc;
  cursor: not-allowed;
}
input:checked + .slider:before {
  transform: translateX(22px);
}