@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Soft Teal / Mint Palette */
    --primary-color: #0d9488;
    --primary-light: #2dd4bf;
    --primary-dark: #0f766e;
    
    --secondary-color: #f0fdfa;
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    --border-color: #e2e8f0;
    
    --font-family: 'Outfit', sans-serif;
    --border-radius: 12px;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Custom Overrides & Helpers */
.text-primary {
    color: var(--primary-color) !important;
}
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.9), rgba(15, 118, 110, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    color: #fff;
}
.btn-primary:hover {
    background: linear-gradient(135deg, rgba(15, 118, 110, 1), rgba(17, 94, 89, 1));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
    color: #fff;
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.4);
    color: var(--primary-color);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: rgba(13, 148, 136, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.1);
}

.glass-nav {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.dropdown-menu {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}
.nav-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.nav-logo:hover {
    transform: scale(1.02);
}

@media (max-width: 991.98px) {
    .nav-logo {
        max-height: 35px;
    }
}
.footer-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.02);
}
.nav-link {
    color: var(--text-main);
    font-weight: 500;
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background-color: var(--secondary-color);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-klarity {
    background: radial-gradient(circle at top right, #e0f2fe 0%, #f0fdfa 40%, #ffffff 100%);
    padding: 6rem 0;
}

/* Legal Pages & Contact Styling */
.page-header {
    background: radial-gradient(circle at top right, #e0f2fe 0%, #f0fdfa 50%, #ffffff 100%);
    padding: 4.5rem 0 3.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.policy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px -8px rgba(13, 148, 136, 0.18);
    border-color: rgba(13, 148, 136, 0.3);
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-nav-container {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.sidebar-link {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-left: 2px solid var(--border-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.sidebar-link:last-child {
    margin-bottom: 0;
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: rgba(13, 148, 136, 0.04);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    background-color: var(--bg-light);
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    background-color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05);
    border-color: rgba(13, 148, 136, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

