/* =========================================
   VARIABLES
========================================= */
:root {
    /* Brand Colors */
    --primary: #04012C;
    --secondary: #02A6D5;
    --neutral-light: #F7F7F7;
    --complementary: #C0C0C0;
    --text-color: #333333;
    --white: #ffffff;

    /* Gradients */
    --bg-gradient: linear-gradient(135deg, #F7F7F7 0%, #e8f0fe 100%);
    --accent-gradient: linear-gradient(135deg, #04012C 0%, #02A6D5 100%);
    --button-gradient: linear-gradient(135deg, #02A6D5 0%, #0185aa 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(4, 1, 44, 0.05);

    /* Utilities */
    --border-radius: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;

    /* Typography */
    --font-main: 'Outfit', sans-serif;
    --fs-body: 1rem;
    --fs-h1: clamp(2.5rem, 5vw, 4.5rem);
    --fs-h2: clamp(2.1rem, 4vw, 2.8rem);
    --fs-h3: clamp(1.5rem, 3vw, 2rem);
    --fs-small: 0.875rem;
}

/* =========================================
   RESET & BASE
========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* base for rem */
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background: var(--bg-gradient);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1,
.h1 {
    font-size: var(--fs-h1);
}

h2,
.h2 {
    font-size: var(--fs-h2);
}

h3,
.h3 {
    font-size: var(--fs-h3);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-lg);
}

p {
    margin-bottom: var(--space-md);
    max-width: 70%;
}

@media (max-width: 768px) {
    p {
        max-width: 100%;
    }
}

/* Typography styles */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding-top: 0.1em;
    padding-bottom: 0.1em;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.lead-text {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: var(--space-lg);
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* =========================================
   COMPONENTS
========================================= */
/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
}

@media (max-width: 768px) {
    .glass-panel, .glass-panel-blue {
        padding: var(--space-md);
    }
}

.glass-panel, .glass-panel-blue {
    max-width: 100%;
    overflow-x: hidden;
}

.glass-panel-blue {
    background: rgba(2, 166, 213, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(2, 166, 213, 0.2);
    box-shadow: 0 8px 32px 0 rgba(2, 166, 213, 0.08);
    border-radius: var(--border-radius);
    padding: var(--space-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--button-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(2, 166, 213, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 166, 213, 0.5);
    color: var(--white);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(4, 1, 44, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 1, 44, 0.4);
    color: var(--white);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-col-span-2 {
        grid-column: span 2;
    }
}

@media (min-width: 992px) {
    .bento-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-col-span-3 {
        grid-column: span 3;
    }
}

.bento-image-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--glass-shadow);
    display: flex;
    height: 100%;
    min-height: 250px;
}

.bento-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bento-image-card:hover img {
    transform: scale(1.05);
}

.bento-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(4, 1, 44, 0.1);
}

.bento-card p {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.bento-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(2, 166, 213, 0.1) 0%, rgba(2, 166, 213, 0.05) 100%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.bento-icon-small {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.circle-icon {
    font-size: 2rem;
    color: var(--white);
    background: var(--accent-gradient);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(2, 166, 213, 0.3);
}

/* =========================================
   LAYOUT / SECTIONS
========================================= */
.section {
    padding: var(--space-xl) 0;
    position: relative;
}

.bg-light {
    background-color: var(--white);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Topbar */
.topbar {
    background: var(--primary);
    color: var(--neutral-light);
    padding: 0.5rem 0;
    font-size: var(--fs-small);
}

.topbar-content {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .topbar-content {
        justify-content: flex-end;
    }
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-link:hover {
    color: var(--secondary);
}

.topbar-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar-info i {
    color: var(--secondary);
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

.hamburger {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    display: block;
}

.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--glass-shadow);
    padding: 1rem 0;
}

.main-nav.active {
    display: block;
}

.main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.main-nav a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--secondary);
    background: rgba(2, 166, 213, 0.1);
}

@media (min-width: 992px) {
    .hamburger {
        display: none;
    }

    .main-nav {
        display: block;
        position: static;
        width: auto;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .main-nav ul {
        flex-direction: row;
        align-items: center;
    }
}

.main-nav .nav-cta {
    background: var(--button-gradient);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(2, 166, 213, 0.3);
    margin-left: 0.5rem;
}

.main-nav .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 166, 213, 0.4);
    background: var(--button-gradient);
}

.main-nav .nav-cta.active {
    background: var(--button-gradient);
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    padding: var(--space-xl) 0;
    overflow: hidden;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
    }
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(4, 1, 44, 0.05);

    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.location-badge i {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: var(--fs-h3);
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: var(--fs-h1);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.floating-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(2, 166, 213, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.5rem 1.1rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(2, 166, 213, 0.1);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    border: 1px solid rgba(2, 166, 213, 0.2);
}

.hover-float {
    animation: float 6s ease-in-out infinite;
}

.hover-float:nth-child(2) {
    animation-delay: 1s;
}

.hover-float:nth-child(3) {
    animation-delay: 2s;
}

.hover-float:nth-child(4) {
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    border-radius: 50%;
}

.hero-image {
    border-radius: 30px;
    object-fit: cover;
    width: 100%;
    max-height: 600px;
    box-shadow: 0 20px 50px rgba(4, 1, 44, 0.15);
}

/* Highlight Box */
.highlight-box {
    border-left: 5px solid var(--secondary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary);
    padding: 2rem;
}

.highlight-box p {
    margin: 0 auto;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-card {
    padding: 0;
    overflow: hidden;
}

.team-image-wrapper img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center top;
    border-bottom: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .team-image-wrapper img {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .team-image-wrapper img {
        height: 380px;
    }
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    margin-bottom: 1rem;
}

.team-info p {
    margin: 0;
    max-width: 100%;
}

/* CTA Banner */
.cta-banner {
    padding: 2.5rem;
    border: 2px dashed rgba(2, 166, 213, 0.3);
}

.phone-link {
    font-size: 1.5rem;
    font-weight: 800;
    margin-left: 0.5rem;
}

.transform-hover {
    transition: var(--transition);
    will-change: transform;
}

.transform-hover:hover {
    transform: scale(1.02);
}

/* Reviews Mockup */
.google-reviews-mockup {
    max-width: 400px;
    margin: 0 auto;
}

.google-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.stars {
    color: #FFD700;
}

/* Footer */
.footer {
    background: #02011a;
    color: var(--white);
    padding: var(--space-xl) 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(2, 166, 213, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.footer-subtitle {
    color: var(--white);
    opacity: 0.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p,
.footer-col address {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.footer-col a:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer-logo-wrapper {
    margin-top: 1rem;
}

.footer-logo {
    max-height: 80px;
    width: auto;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 0;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    opacity: 0.7;
}

.footer-bottom .container {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer-bottom .container {
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .footer-col {
        text-align: center;
    }

    .footer-col p,
    .footer-col address {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo {
        margin: 0 auto;
    }
}

.footer-bottom p {
    margin-bottom: 0;
    line-height: 1.2;
}

.footer-bottom a {
    text-decoration: underline;
}

/* Accessibility & Utils */
.text-muted {
    opacity: 0.7;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Accordion */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: start;
}

@media (min-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: var(--space-md);
    transition: var(--transition);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--primary);
    font-size: 1.1rem;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-item.active {
    box-shadow: var(--glass-shadow);
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(200px);
    width: 90%;
    max-width: 640px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cookie-bar.active {
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    max-width: 100%;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-end;
}

.btn-cookie-accept {
    background: var(--button-gradient);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
}

.btn-cookie-accept:hover { opacity: 0.85; }

.btn-cookie-reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(4, 1, 44, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cookie-reject:hover { background: rgba(4, 1, 44, 0.06); }

.btn-cookie-customize {
    background: transparent;
    color: var(--text-color);
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.btn-cookie-customize:hover { opacity: 1; }

@media (min-width: 576px) {
    .cookie-bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-content {
        flex: 1;
    }
}

/* Cookie Floating Button */
.cookie-float-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 1.4rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cookie-float-btn.visible {
    display: flex;
}

.cookie-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

/* Cookie Modal */
.cookie-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal-overlay.active {
    display: flex;
}

.cookie-modal {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 2rem;
    width: 90%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.cookie-modal h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.cookie-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(4, 1, 44, 0.08);
}

.cookie-category:last-of-type {
    border-bottom: none;
    margin-bottom: 1.2rem;
}

.cookie-category-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.cookie-category-info span {
    font-size: 0.8rem;
    opacity: 0.6;
}

.cookie-toggle {
    position: relative;
    width: 2.8rem;
    height: 1.6rem;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(4, 1, 44, 0.15);
    border-radius: 2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    background: var(--white);
    left: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    transition: left 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--secondary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    left: calc(100% - 1.35rem);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-actions {
    display: flex;
    justify-content: flex-end;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.review-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.review-stars {
    color: #FFD700;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-color);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.google-logo-small {
    width: 18px;
}

.reviews-cta {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .reviews-cta {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}



@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PRICE LIST (Ceník)
========================================= */
.price-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(4, 1, 44, 0.06);
    position: relative;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    white-space: normal;
    flex: 1 1 auto;
    word-break: break-word;
}

@media (min-width: 576px) {
    .price-item span {
        white-space: nowrap;
        flex: 0 0 auto;
    }
}

.price-item::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
    margin-right: 0.25rem;
    opacity: 0.7;
    align-self: center;
}

.price-item .price-dots {
    display: none;
    flex: 1;
    border-bottom: 2px dotted rgba(4, 1, 44, 0.2);
    min-width: 20px;
    margin: 0 0.5rem;
    position: relative;
    top: -3px;
}

@media (min-width: 576px) {
    .price-item .price-dots {
        display: block;
    }
}

.price-item strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .price-item {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.75rem 0;
    }
    
    .price-item strong {
        margin-left: auto;
        font-size: 1.1rem;
    }
    
    .bento-icon-small {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .bento-card h3 {
        font-size: 1.25rem;
    }
}