/* Nav.is - Complete Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
    --navy-950: #0a1628;
    --navy-900: #0f2137;
    --navy-800: #1a3550;
    --navy-700: #264a6a;
    --navy-600: #335f84;
    --navy-500: #40749e;
    --navy-400: #5c8db5;
    --navy-300: #7fa6c9;
    --navy-200: #a8c4dc;
    --navy-100: #d4e2ef;
    --navy-50: #eef4f9;
    --accent-600: #475569;
    --accent-500: #64748b;
    --accent-400: #94a3b8;
    --accent-300: #cbd5e1;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-900);
}

a {
    color: var(--navy-600);
    text-decoration: none;
    transition: color 0.15s ease;
}

    a:hover {
        color: var(--navy-800);
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy-900);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.15s ease;
    padding: 0.5rem 0;
}

    .nav-link:hover {
        color: var(--navy-700);
    }

    .nav-link.active {
        color: var(--navy-700);
        font-weight: 600;
    }

.nav-cta {
    background: var(--navy-800);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.15s ease;
}

    .nav-cta:hover {
        background: var(--navy-900);
        color: var(--white) !important;
    }

/* Mobile menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy-800);
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

        .nav-menu.open {
            display: flex;
        }

    .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ========================================
   BC BANNER
   ======================================== */
.bc-banner {
    background: var(--navy-800);
    padding: 0.75rem 0;
}

.bc-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
}

    .bc-banner-content span {
        color: var(--navy-200);
        font-size: 0.9375rem;
    }

.bc-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.375rem 0.75rem;
    background: #14b8a6 !important;
    border-radius: 0.375rem;
    transition: all 0.15s ease;
}

    .bc-banner-link:hover {
        background: #0d9488 !important;
        color: var(--white);
    }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    border: none;
    outline: none;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--navy-200);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--navy-300);
    margin-top: 0.25rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--navy-700);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--navy-800);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    background: var(--white);
    color: var(--navy-700);
    border: 2px solid var(--navy-200);
}

    .btn-secondary:hover {
        background: var(--navy-50);
        border-color: var(--navy-300);
        color: var(--navy-800);
    }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 4rem 0;
}

.section-light {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .section-header p {
        color: var(--gray-600);
        font-size: 1.125rem;
    }

/* ========================================
   SOLUTIONS GRID
   ======================================== */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.solution-card {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    transition: all 0.25s ease;
}

    .solution-card:hover {
        border-color: var(--navy-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.solution-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--navy-100);
    border-radius: 0.75rem;
    color: var(--navy-600);
    margin-bottom: 1.5rem;
    transition: all 0.15s ease;
}

.solution-card:hover .solution-icon {
    background: var(--navy-600);
    color: var(--white);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .solution-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.25rem 0;
        font-size: 0.875rem;
        color: var(--gray-600);
    }

        .solution-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent-500);
            border-radius: 50%;
            flex-shrink: 0;
        }

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy-600);
}

    .solution-link svg {
        transition: transform 0.15s ease;
    }

.solution-card:hover .solution-link svg {
    transform: translateX(4px);
}

/* ========================================
   SERVICES GRID
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 1.5rem;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--navy-100);
    border-radius: 1rem;
    color: var(--navy-600);
    margin: 0 auto 1.5rem;
}

.service-item h3 {
    margin-bottom: 0.75rem;
}

.service-item p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ========================================
   CTA BOX
   ======================================== */
.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--navy-50);
    border-radius: 1rem;
}

    .cta-box h2 {
        margin-bottom: 1rem;
    }

    .cta-box p {
        color: var(--gray-600);
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--navy-950);
    color: var(--navy-300);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--navy-800);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.footer-brand .logo-icon {
    background: var(--navy-700);
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--navy-300);
    font-size: 0.9rem;
    transition: color 0.15s ease;
}

    .footer-column a:hover {
        color: var(--white);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    font-size: 0.85rem;
}

    .footer-bottom a {
        color: var(--navy-400);
    }

        .footer-bottom a:hover {
            color: var(--white);
        }

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    padding: 3rem 0;
    text-align: center;
    border: none;
}

    .page-hero h1 {
        color: var(--white);
        font-size: clamp(2rem, 4vw, 2.75rem);
        margin-bottom: 0.75rem;
    }

    .page-hero p {
        color: var(--navy-200);
        font-size: 1.125rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* ========================================
   GUIDES LIST PAGE
   ======================================== */
.guides-page {
    padding: 3rem 1.5rem;
    background: var(--gray-50);
    min-height: calc(100vh - 200px);
}

.guides-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .guides-header h1 {
        font-size: 2.5rem;
        color: var(--navy-900);
        margin-bottom: 1rem;
    }

    .guides-header p {
        color: var(--gray-600);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.guide-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

    .guide-card:hover {
        border-color: var(--navy-300);
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.guide-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--navy-100), var(--navy-50));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .guide-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.guide-card-icon {
    font-size: 3rem;
    color: var(--navy-400);
}

.guide-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-card-category {
    display: inline-block;
    background: var(--navy-100);
    color: var(--navy-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.guide-card h3 {
    font-size: 1.2rem;
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.guide-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.guide-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-600);
    margin-top: auto;
    padding-top: 1rem;
}

    .guide-card-link svg {
        transition: transform 0.15s ease;
    }

.guide-card:hover .guide-card-link svg {
    transform: translateX(4px);
}

.guides-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}

.guides-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guides-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-500);
}

.guides-error {
    text-align: center;
    padding: 2rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #dc2626;
    max-width: 600px;
    margin: 2rem auto;
}

@media (max-width: 1024px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guides-header h1 {
        font-size: 2rem;
    }
}

/* ========================================
   GUIDE DETAIL PAGE
   ======================================== */
.guide-detail {
    padding: 2rem 1.5rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.guide-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy-600);
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.15s ease;
}

    .guide-back:hover {
        color: var(--navy-800);
    }

.guide-detail-header {
    margin-bottom: 2rem;
}

.guide-detail-category {
    display: inline-block;
    background: var(--navy-100);
    color: var(--navy-700);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.guide-detail-header h1 {
    font-size: 2.5rem;
    color: var(--navy-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.guide-detail-description {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   GUIDE FEATURED IMAGE - CONSTRAINED SIZE
   ======================================== */
.guide-featured-image {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 500px;
}

    .guide-featured-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
        display: block;
    }

/* ========================================
   GUIDE CONTENT AREA
   ======================================== */
.guide-content {
    color: var(--gray-700);
    line-height: 1.8;
}

    .guide-content h2 {
        font-size: 1.75rem;
        color: var(--navy-900);
        margin: 2.5rem 0 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--navy-100);
    }

    .guide-content h3 {
        font-size: 1.35rem;
        color: var(--navy-800);
        margin: 2rem 0 0.75rem;
    }

    .guide-content p {
        margin-bottom: 1.25rem;
    }

    .guide-content ul,
    .guide-content ol {
        margin: 1.25rem 0;
        padding-left: 1.5rem;
    }

    .guide-content li {
        margin-bottom: 0.5rem;
    }

    /* ========================================
   GUIDE CONTENT IMAGES - MEDIUM SIZE, CLICKABLE
   ======================================== */
    .guide-content img {
        max-width: 700px;
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 1.5rem 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: block;
    }

        .guide-content img:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

    .guide-content code {
        background: var(--gray-100);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-size: 0.9em;
        color: var(--navy-700);
    }

    .guide-content pre {
        background: var(--navy-950);
        color: var(--navy-100);
        padding: 1.5rem;
        border-radius: 8px;
        overflow-x: auto;
        margin: 1.5rem 0;
    }

        .guide-content pre code {
            background: none;
            padding: 0;
            color: inherit;
        }

    .guide-content blockquote {
        border-left: 4px solid var(--navy-300);
        padding-left: 1.5rem;
        margin: 1.5rem 0;
        color: var(--gray-600);
        font-style: italic;
    }

    .guide-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 1.5rem 0;
    }

    .guide-content th,
    .guide-content td {
        border: 1px solid var(--gray-200);
        padding: 0.75rem 1rem;
        text-align: left;
    }

    .guide-content th {
        background: var(--gray-50);
        font-weight: 600;
        color: var(--navy-800);
    }

.guide-not-found {
    text-align: center;
    padding: 4rem 2rem;
}

    .guide-not-found h1 {
        font-size: 2rem;
        color: var(--navy-900);
        margin-bottom: 1rem;
    }

    .guide-not-found p {
        color: var(--gray-600);
        margin-bottom: 2rem;
    }

/* ========================================
   GUIDE BOTTOM NAVIGATION
   ======================================== */
.guide-bottom-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
    .guide-detail-header h1 {
        font-size: 2rem;
    }

    .guide-detail-description {
        font-size: 1.1rem;
    }

    .guide-content h2 {
        font-size: 1.5rem;
    }

    .guide-content h3 {
        font-size: 1.2rem;
    }

    .guide-content img {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .guide-bottom-nav {
        flex-direction: column;
        gap: 1rem;
    }

        .guide-bottom-nav .btn {
            width: 100%;
            justify-content: center;
        }
}

/* ========================================
   LIGHTBOX - FULL SCREEN IMAGE VIEW
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
}

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

    .lightbox-close:hover {
        color: #ccc;
    }

/* ========================================
   SERVICE CARDS (Services page)
   ======================================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.25s ease;
}

    .service-card:hover {
        border-color: var(--navy-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--navy-100);
    border-radius: 0.75rem;
    color: var(--navy-600);
    margin-bottom: 1.5rem;
    transition: all 0.15s ease;
}

.service-card:hover .service-card-icon {
    background: var(--navy-600);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

    .service-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.375rem 0;
        font-size: 0.9rem;
        color: var(--gray-600);
    }

        .service-features li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--navy-500);
            border-radius: 50%;
            flex-shrink: 0;
        }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--navy-50);
    padding: 2rem;
    border-radius: 1rem;
}

    .contact-info h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--navy-900);
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--navy-100);
}

    .contact-item:last-child {
        border-bottom: none;
    }

.contact-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--navy-100);
    border-radius: 0.5rem;
    color: var(--navy-600);
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-weight: 500;
    color: var(--navy-900);
}

    .contact-item-value a {
        color: var(--navy-700);
    }

        .contact-item-value a:hover {
            color: var(--navy-900);
            text-decoration: underline;
        }

.contact-form {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
}

    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--navy-900);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    transition: all 0.15s ease;
    background: var(--white);
}

    .form-input:focus,
    .form-textarea:focus {
        outline: none;
        border-color: var(--navy-400);
        box-shadow: 0 0 0 3px rgba(51, 95, 132, 0.1);
    }

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-block {
    width: 100%;
}

.success-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    border-radius: 0.5rem;
    color: #065f46;
}

    .success-message svg {
        flex-shrink: 0;
        color: #10b981;
    }

    .success-message p {
        margin: 0.25rem 0 0 0;
        font-size: 0.95rem;
    }

.error-message {
    padding: 1rem;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SOLUTION DETAIL PAGES
   ======================================== */
.solution-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

    .solution-intro p {
        font-size: 1.125rem;
        color: var(--gray-600);
        line-height: 1.7;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.25s ease;
}

    .feature-card:hover {
        border-color: var(--navy-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-4px);
    }

.feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--navy-100);
    border-radius: 0.75rem;
    color: var(--navy-600);
    margin-bottom: 1.25rem;
    transition: all 0.15s ease;
}

.feature-card:hover .feature-card-icon {
    background: var(--navy-600);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Provider/Bank/Platform logos section */
.bank-logos,
.provider-logos,
.platform-logos {
    text-align: center;
    padding: 2rem;
    background: var(--navy-50);
    border-radius: 1rem;
    margin-top: 2rem;
}

    .bank-logos h3,
    .provider-logos h3,
    .platform-logos h3 {
        font-size: 1.125rem;
        color: var(--navy-900);
        margin-bottom: 0.5rem;
    }

    .bank-logos p,
    .provider-logos p,
    .platform-logos p {
        color: var(--gray-600);
        margin: 0;
    }

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE - HERO
   ======================================== */
@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-box {
        padding: 2rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* ========================================
   GUIDE CONTENT - HTML RENDERING
   ======================================== */
.guide-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.guide-content th,
.guide-content td {
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    text-align: left;
}

.guide-content th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--navy-900);
}

.guide-content tr:nth-child(even) {
    background: #fafafa;
}

/* ========================================
   EXTRA IMAGES SECTION WITH TEXT
   ======================================== */
.extra-images-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

    .extra-images-section h3 {
        font-size: 1.5rem;
        color: var(--navy-900);
        margin-bottom: 2rem;
    }

.image-with-text {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

    .image-with-text:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.image-title {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .image-container:hover {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg);
    }

    .image-container img {
        display: block;
        max-width: 100%;
        height: auto;
    }

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-container:hover .zoom-hint {
    opacity: 1;
}

.image-description {
    margin-top: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

    .image-description p {
        margin-bottom: 0.75rem;
    }

    .image-description table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
    }

    .image-description th,
    .image-description td {
        border: 1px solid var(--gray-200);
        padding: 0.5rem 0.75rem;
        text-align: left;
    }

    .image-description th {
        background: var(--gray-50);
        font-weight: 600;
        color: var(--navy-900);
    }

/* ========================================
   LIGHTBOX WITH TEXT PANEL
   ======================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    box-sizing: border-box;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
}

    .lightbox-close:hover {
        color: #ccc;
    }

.lightbox-wrapper {
    display: flex;
    gap: 2rem;
    max-width: 95vw;
    max-height: 90vh;
    align-items: flex-start;
}

.lightbox-image-side {
    flex-shrink: 0;
    max-width: 60%;
}

    .lightbox-image-side img {
        max-width: 100%;
        max-height: 85vh;
        object-fit: contain;
        border-radius: 8px;
        display: block;
    }

.lightbox-text-side {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 400px;
    max-height: 85vh;
    overflow-y: auto;
}

.lightbox-title {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.lightbox-description {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

    .lightbox-description p {
        margin-bottom: 0.75rem;
    }

    .lightbox-description table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    .lightbox-description th,
    .lightbox-description td {
        border: 1px solid var(--gray-200);
        padding: 0.5rem 0.75rem;
        text-align: left;
    }

    .lightbox-description th {
        background: var(--gray-50);
        font-weight: 600;
        color: var(--navy-900);
    }

/* Featured image clickable */
.guide-featured-image {
    cursor: pointer;
    transition: transform 0.2s ease;
}

    .guide-featured-image:hover {
        transform: scale(1.01);
    }

@media (max-width: 900px) {
    .lightbox-wrapper {
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
    }

    .lightbox-image-side {
        max-width: 100%;
    }

        .lightbox-image-side img {
            max-height: 50vh;
        }

    .lightbox-text-side {
        max-width: 100%;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }

    .lightbox-overlay {
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .guide-bottom-nav {
        flex-direction: column;
        gap: 1rem;
    }

        .guide-bottom-nav .btn {
            width: 100%;
            text-align: center;
        }
}

/* ===========================================
   GUIDE DETAIL - FEATURED IMAGE
   =========================================== */
.guide-featured-image {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
    margin-bottom: 2rem;
}

    .guide-featured-image:hover {
        transform: scale(1.01);
    }

    .guide-featured-image img {
        display: block;
        max-width: 100%;
        height: auto;
    }

/* ===========================================
   GUIDE CONTENT (HTML RENDERING)
   =========================================== */
.guide-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.guide-content th,
.guide-content td {
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    text-align: left;
}

.guide-content th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--navy-900);
}

.guide-content tr:nth-child(even) {
    background: #fafafa;
}

/* ===========================================
   EXTRA IMAGES SECTION
   =========================================== */
.extra-images-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

    .extra-images-section > h3 {
        font-size: 1.5rem;
        color: var(--navy-900);
        margin-bottom: 2rem;
    }

.image-with-text {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

    .image-with-text:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.image-title {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .image-container:hover {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg);
    }

    .image-container img {
        display: block;
        max-width: 100%;
        height: auto;
    }

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-container:hover .zoom-hint,
.guide-featured-image:hover .zoom-hint {
    opacity: 1;
}

.image-description {
    margin-top: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

    .image-description p {
        margin-bottom: 0.75rem;
    }

    .image-description table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
    }

    .image-description th,
    .image-description td {
        border: 1px solid var(--gray-200);
        padding: 0.5rem 0.75rem;
        text-align: left;
    }

    .image-description th {
        background: var(--gray-50);
        font-weight: 600;
        color: var(--navy-900);
    }

    .image-description tr:nth-child(even) {
        background: #fafafa;
    }

    .image-description ul,
    .image-description ol {
        margin: 0.75rem 0;
        padding-left: 1.25rem;
    }

    .image-description li {
        margin-bottom: 0.25rem;
    }

/* ===========================================
   GUIDE DETAIL - FEATURED IMAGE
   =========================================== */
.guide-featured-image {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease;
    margin-bottom: 2rem;
}

    .guide-featured-image:hover {
        transform: scale(1.01);
    }

    .guide-featured-image img {
        display: block;
        max-width: 100%;
        height: auto;
    }

/* ===========================================
   GUIDE CONTENT (HTML RENDERING)
   =========================================== */
.guide-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.guide-content th,
.guide-content td {
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1rem;
    text-align: left;
}

.guide-content th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--navy-900);
}

.guide-content tr:nth-child(even) {
    background: #fafafa;
}

/* ===========================================
   EXTRA IMAGES SECTION
   =========================================== */
.extra-images-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

    .extra-images-section > h3 {
        font-size: 1.5rem;
        color: var(--navy-900);
        margin-bottom: 2rem;
    }

.image-with-text {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

    .image-with-text:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

.image-title {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.image-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .image-container:hover {
        transform: scale(1.01);
        box-shadow: var(--shadow-lg);
    }

    .image-container img {
        display: block;
        max-width: 100%;
        height: auto;
    }

.zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-container:hover .zoom-hint,
.guide-featured-image:hover .zoom-hint {
    opacity: 1;
}

.image-description {
    margin-top: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 1rem;
}

    .image-description p {
        margin-bottom: 0.75rem;
    }

    .image-description table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
    }

    .image-description th,
    .image-description td {
        border: 1px solid var(--gray-200);
        padding: 0.5rem 0.75rem;
        text-align: left;
    }

    .image-description th {
        background: var(--gray-50);
        font-weight: 600;
        color: var(--navy-900);
    }

    .image-description tr:nth-child(even) {
        background: #fafafa;
    }

    .image-description ul,
    .image-description ol {
        margin: 0.75rem 0;
        padding-left: 1.25rem;
    }

    .image-description li {
        margin-bottom: 0.25rem;
    }

/* ===========================================
   LIGHTBOX WITH SLIDESHOW
   =========================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    box-sizing: border-box;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: color 0.2s ease;
}

    .lightbox-close:hover {
        color: var(--primary);
    }

/* Arrow buttons */
.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .lightbox-arrow:hover {
        background: rgba(43, 188, 192, 0.8);
        border-color: var(--primary);
    }

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-arrow.hidden {
    opacity: 0.3;
    pointer-events: none;
}

/* Content container */
.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

    .lightbox-image-container img {
        max-width: 100%;
        max-height: 60vh;
        object-fit: contain;
        border-radius: 8px;
    }

/* Text box below image */
.lightbox-text-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 700px;
    max-height: 25vh;
    overflow-y: auto;
}

.lightbox-title {
    font-size: 1.25rem;
    color: var(--navy-900);
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary);
}

.lightbox-description {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

    .lightbox-description p {
        margin-bottom: 0.75rem;
    }

    .lightbox-description table {
        width: 100%;
        border-collapse: collapse;
        margin: 1rem 0;
        font-size: 0.9rem;
    }

    .lightbox-description th,
    .lightbox-description td {
        border: 1px solid var(--gray-200);
        padding: 0.5rem 0.75rem;
        text-align: left;
    }

    .lightbox-description th {
        background: var(--gray-50);
        font-weight: 600;
        color: var(--navy-900);
    }

    .lightbox-description tr:nth-child(even) {
        background: #fafafa;
    }

    .lightbox-description ul,
    .lightbox-description ol {
        margin: 0.75rem 0;
        padding-left: 1.25rem;
    }

/* Image counter */
.lightbox-counter {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 768px) {
    .lightbox-arrow {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
    }

    .lightbox-overlay {
        padding: 1rem;
    }

    .lightbox-image-container img {
        max-height: 40vh;
    }

    .lightbox-text-box {
        max-height: 35vh;
        padding: 1rem;
    }
}

@media (max-width: 640px) {
    .guide-bottom-nav {
        flex-direction: column;
        gap: 1rem;
    }

        .guide-bottom-nav .btn {
            width: 100%;
            text-align: center;
        }

    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}

/* ===========================================
   Cookie Consent Banner
   =========================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.cookie-main {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

    .cookie-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        color: #1D3557;
    }

    .cookie-text p {
        font-size: 0.9rem;
        color: #4B5563;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .cookie-text a {
        color: #2BBCC0;
        text-decoration: underline;
    }

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

    .cookie-buttons .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

.cookie-settings {
    max-width: 600px;
}

    .cookie-settings h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
        color: #1D3557;
    }

.cookie-settings-intro {
    font-size: 0.95rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-category-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

    .cookie-category-info strong {
        font-size: 0.95rem;
        color: #1D3557;
    }

.cookie-badge {
    font-size: 0.7rem;
    background: #2BBCC0;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.cookie-category-desc {
    font-size: 0.85rem;
    color: #6B7280;
    margin: 0.75rem 0 0 0;
    padding-left: 3.5rem;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

    .cookie-toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

.cookie-toggle input:checked + .toggle-slider {
    background-color: #2BBCC0;
}

    .cookie-toggle input:checked + .toggle-slider:before {
        transform: translateX(20px);
    }

.cookie-toggle.disabled .toggle-slider {
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-settings-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        padding: 1.25rem 1rem;
    }

    .cookie-main {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-text {
        min-width: auto;
    }

    .cookie-buttons {
        flex-direction: column;
    }

        .cookie-buttons .btn {
            width: 100%;
        }

    .cookie-category-desc {
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .cookie-settings-buttons {
        flex-direction: column;
    }

        .cookie-settings-buttons .btn {
            width: 100%;
        }
}