/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-primary: #FF4F44;
    --color-secondary: #2FD3E2;
    --color-white: #FFFFFF;

    /* Gray Scale - odstíny šedé */
    --color-gray-900: #1F2937;  /* Nejtmavší šedá */
    --color-gray-800: #374151;
    --color-gray-700: #4B5563;
    --color-gray-600: #6B7280;
    --color-gray-500: #9CA3AF;
    --color-gray-400: #D1D5DB;
    --color-gray-300: #E5E7EB;
    --color-gray-200: #F3F4F6;
    --color-gray-100: #F9FAFB;
    --color-gray-50: #FCFCFD;   /* Nejsvětlejší šedá */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF4F44 0%, #FF6B60 100%);
    --gradient-secondary: linear-gradient(135deg, #2FD3E2 0%, #4DE0ED 100%);
    --gradient-bg: linear-gradient(180deg, #E6FDFF 0%, #FFFFFF 100%);

    /* Typography */
    --font-primary: 'Red Hat Display', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-gray-900);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-gray-600);
}

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

strong {
    font-weight: 700;
}

/* ===================================
   Container & Layout
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 2rem;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(255, 79, 68, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 79, 68, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-gray-900);
    border: 2px solid var(--color-gray-700);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: var(--color-gray-200);
    color: var(--color-gray-700);
}

.btn-tertiary:hover {
    background: var(--color-gray-300);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-gray-900);
    color: var(--color-white);
}

.btn-dark:hover {
    background: var(--color-primary);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Button Sizes */
.btn-md {
    height: 44px !important;
    padding: 0 1.5rem !important;
    font-size: 0.9375rem !important;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-gray-900);
}

.logo-img {
    width: 180px;
    height: auto;
}

.logo-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-gray-900);
    transition: var(--transition-fast);
    position: relative;
    padding: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-normal);
}

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

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

.nav-link.active {
    color: var(--color-primary);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--color-gray-900);
    border-radius: 3px;
    transition: var(--transition-normal);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-white);
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateX(0);
    }
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    padding: 8rem 0 6rem;
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-bg);
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    transition: var(--transition-slow);
    animation: gentleFloat 12s ease-in-out infinite;
}

/* Jemná animace plovoucích kolečků */
@keyframes gentleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -15px) scale(1.02);
        opacity: 0.5;
    }
    50% {
        transform: translate(-5px, -20px) scale(1.05);
        opacity: 0.55;
    }
    75% {
        transform: translate(-10px, -10px) scale(1.03);
        opacity: 0.5;
    }
}

.shape-1 {
    width: 280px;
    height: 280px;
    background: var(--gradient-secondary);
    top: -120px;
    left: -50px;
    opacity: 0.65;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: var(--gradient-primary);
    top: -100px;
    right: -50px;
    opacity: 0.6;
    animation-delay: 2s;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: var(--gradient-secondary);
    top: 30%;
    left: 6%;
    opacity: 0.55;
    animation-delay: 4s;
}

.shape-4 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    right: 6%;
    opacity: 0.5;
    animation-delay: 6s;
}

.shape-5 {
    width: 260px;
    height: 260px;
    background: var(--gradient-primary);
    bottom: -100px;
    left: -60px;
    opacity: 0.7;
    animation-delay: 1.5s;
}

.shape-6 {
    width: 280px;
    height: 280px;
    background: var(--gradient-secondary);
    bottom: -80px;
    right: -30px;
    opacity: 0.55;
    animation-delay: 3.5s;
}

.shape-7 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    bottom: 30%;
    left: 10%;
    opacity: 0.5;
    animation-delay: 5s;
}

/* Responsivní chování pro tablety */
@media (max-width: 968px) {
    .shape-1 {
        width: 210px;
        height: 210px;
        top: -90px;
        left: -40px;
    }

    .shape-2 {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -40px;
    }

    .shape-3 {
        width: 150px;
        height: 150px;
        top: 28%;
        left: 5%;
    }

    .shape-4 {
        width: 220px;
        height: 220px;
        top: 18%;
        right: 6%;
    }

    .shape-5 {
        width: 190px;
        height: 190px;
        bottom: -80px;
        left: -50px;
    }

    .shape-6 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        right: -25px;
    }

    .shape-7 {
        width: 150px;
        height: 150px;
        bottom: 18%;
        left: 15%;
    }
}

/* Responsivní chování pro mobily */
@media (max-width: 768px) {
    .shape-1 {
        width: 120px;
        height: 120px;
        top: -40px;
        left: -35px;
        opacity: 0.35;
    }

    .shape-2 {
        width: 140px;
        height: 140px;
        top: -50px;
        right: -45px;
        opacity: 0.3;
    }

    .shape-3 {
        display: none;
    }

    .shape-4 {
        width: 100px;
        height: 100px;
        top: 12%;
        right: 2%;
        opacity: 0.25;
    }

    .shape-5 {
        width: 110px;
        height: 110px;
        bottom: -50px;
        left: -40px;
        opacity: 0.35;
    }

    .shape-6 {
        width: 120px;
        height: 120px;
        bottom: -45px;
        right: -30px;
        opacity: 0.3;
    }

    .shape-7 {
        display: none;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.6fr 0.4fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    margin-bottom: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-gray-900) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--color-gray-600);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 220px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.decorative-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
}

.deco-circle-1 {
    width: 250px;
    height: 250px;
    background: var(--gradient-secondary);
    top: 50px;
    right: 100px;
    opacity: 0.8;
}

.deco-circle-2 {
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    bottom: 100px;
    right: 50px;
    opacity: 0.6;
}

@media (max-width: 968px) {
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-image {
        display: none;
    }

    .decorative-elements {
        display: none;
    }
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Packages Section
   =================================== */

.packages {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.package-card-featured {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.875rem;
}

.package-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gray-200);
}

.package-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-duration {
    color: var(--color-gray-600);
    font-weight: 600;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.feature-item span {
    color: var(--color-gray-900);
    font-size: 0.95rem;
}

.package-pricing {
    margin-bottom: 1.5rem;
    text-align: center;
}

.price {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-gray-900);
}

.price-note {
    color: var(--color-gray-600);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Mobile Swipe Styles */
@media (max-width: 768px) {
    .packages {
        overflow: visible;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    .packages-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 1.5rem 0.5rem 2rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        margin-bottom: -2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .packages-grid::-webkit-scrollbar {
        display: none;
    }

    .package-card {
        min-width: calc(100% - 3rem);
        max-width: calc(100% - 3rem);
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 1.5rem;
    }

    .package-card:first-child {
        margin-left: 1.5rem;
    }

    .package-card:last-child {
        margin-right: 1.5rem;
    }

    .package-card:hover {
        transform: none;
        box-shadow: var(--shadow-lg);
    }

    .featured-badge {
        top: -20px;
        z-index: 1;
        padding: 0.4rem 1.25rem;
        font-size: 0.8rem;
    }

    /* Compact styling for mobile */
    .package-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }

    .package-title {
        font-size: 1.25rem;
        margin-bottom: 0.375rem;
    }

    .package-duration {
        font-size: 0.875rem;
    }

    .package-features {
        margin-bottom: 1.25rem;
    }

    .feature-item {
        margin-bottom: 0.625rem;
    }

    .feature-item span {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .check-icon {
        width: 20px;
        height: 20px;
    }

    .price {
        font-size: 2rem;
    }

    .price-note {
        font-size: 1rem;
    }

    .package-pricing {
        margin-bottom: 1rem;
    }
}

/* Swipe Indicators (dots) */
.packages-indicators {
    display: none;
}

@media (max-width: 768px) {
    .packages-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--color-gray-400);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .indicator-dot.active {
        background: var(--color-primary);
        width: 24px;
        border-radius: 4px;
    }
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: #F9FAFB;
    position: relative;
}

/* Bento Grid Layout - Masonry style with CSS columns */
.testimonials-bento {
    column-count: 3;
    column-gap: 2.2rem;
    position: relative;
    padding: 0;
}

/* Wrapper for gradient effect */
.testimonials-bento-wrapper {
    position: relative;
    max-height: 650px;
    overflow: hidden;
    padding: 40px;
    margin-top: -40px;
}

/* Gradient overlay at the bottom */
.testimonials-bento-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0.8) 40%, #F9FAFB 100%);
    pointer-events: none;
    z-index: 10;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Masonry card styles */
.testimonials-bento .testimonial-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 2.2rem;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
}

/* Full hover effect for non-Safari browsers */
.testimonials-bento .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Safari-only: completely disable hover effect to fix rendering bugs with CSS columns */
@supports (-webkit-hyphens:none) {
    .testimonials-bento .testimonial-card {
        transition: none !important;
    }
    .testimonials-bento .testimonial-card:hover {
        transform: none !important;
        box-shadow: var(--shadow-md) !important;
    }
}

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

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

.testimonial-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    text-align: right;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--color-gray-900);
    position: relative;
    overflow: hidden;
}

/* For Bento Grid - show full text, no truncation */
.testimonials-bento .testimonial-text {
    max-height: none;
    overflow: visible;
}

/* For regular grid - keep truncation */
.testimonials-grid .testimonial-text {
    max-height: 4.8em;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.testimonials-grid .testimonial-text.expanded {
    max-height: none;
}

.testimonials-grid .testimonial-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(to bottom, transparent, var(--color-white));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonials-grid .testimonial-text.expanded::after {
    opacity: 0;
}

.testimonial-read-more {
    display: none;
}

.testimonials-grid .testimonial-read-more {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: var(--transition-fast);
    border: none;
    background: none;
    padding: 0;
    font-family: var(--font-secondary);
}

.testimonials-grid .testimonial-read-more:hover {
    color: var(--color-gray-900);
    text-decoration: underline;
}

.testimonials-grid .testimonial-read-more.hidden {
    display: none;
}

/* Responsive Masonry for tablets */
@media (max-width: 968px) {
    .testimonials-bento {
        column-count: 2;
    }
}

/* Mobile Masonry */
@media (max-width: 768px) {
    .testimonials {
        overflow: visible;
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

    /* Single column on mobile */
    .testimonials-bento {
        column-count: 1;
    }

    .testimonials-bento-wrapper {
        max-height: 1100px;
        padding: 6px;
        margin-top: -6px;
    }

    /* Disable hover effect on mobile */
    .testimonials-bento .testimonial-card:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
}

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 1.5rem 0.5rem 2rem;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        margin-bottom: -2rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: calc(100% - 3rem);
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-stop: always;
        padding: 1.75rem;
    }

    .testimonial-card:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
}

/* Testimonials Swipe Indicators */
.testimonials-indicators {
    display: none;
}

@media (max-width: 768px) {
    .testimonials-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .testimonials-indicators .indicator-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--color-gray-400);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .testimonials-indicators .indicator-dot.active {
        background: var(--color-primary);
        width: 24px;
        border-radius: 4px;
    }
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--color-gray-900);
    font-size: 1rem;
}

.author-location {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.testimonial-date {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-cta .btn {
    min-width: 260px;
}

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

/* ===================================
   Booking Section
   =================================== */

.booking {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.booking-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 3rem 0;
}

.time-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--color-gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-gray-900);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.time-slot:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.booking-note {
    text-align: center;
    max-width: 700px;
    margin: 2rem auto;
    color: var(--color-gray-600);
}

.booking-cta {
    text-align: center;
    margin-top: 2rem;
}

.booking-cta .btn {
    min-width: 260px;
}

@media (max-width: 768px) {
    .time-slot {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.avatar-wrapper {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.avatar-img {
    display: block;
    width: 94%;
    border-radius: 50%;
}

.avatar-placeholder {
    background: var(--gradient-primary);
}

.avatar-bg {
    display: none;
}

.about-content {
    max-width: 600px;
}

.about-text {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-gray-200);
}

.info-item {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .avatar-wrapper {
        max-width: 250px;
    }
}

/* ===================================
   FAQ Section
   =================================== */

.faq {
    padding: 0 0 var(--spacing-xl) 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

.faq-answer h4 {
    padding: 0 1.5rem;
    margin-bottom: 0.8rem;
    margin-top: 2rem;
    color: var(--color-gray-900);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-primary);
}

.faq-answer h4:first-child {
    margin-top: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
}

.faq-cta-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--color-gray-900);
}

.faq-cta .btn {
    min-width: 260px;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-bg);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-title a {
    text-decoration: none;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition-normal);
    position: relative;
}

.contact-title a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.contact-title a:hover::after {
    width: 100%;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--color-gray-900);
    color: var(--color-white);
    padding: 3rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-link {
    color: var(--color-gray-50);
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: var(--color-gray-600);
    font-size: 1rem;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===================================
   Utility Classes
   =================================== */

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

.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===================================
   Cookie Consent Banner & Modal
   =================================== */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner-visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-title {
    margin-bottom: 1rem;
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
}

.cookie-banner-actions .btn {
    width: 240px;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal-visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-xl);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.cookie-modal-visible .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--color-gray-100);
}

.cookie-modal-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
}

.cookie-modal-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-gray-500);
    transition: color var(--transition-fast);
    padding: 0.5rem;
    margin: -0.5rem -0.5rem 0 0;
}

.cookie-modal-close:hover {
    color: var(--color-primary);
}

.cookie-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-intro {
    font-size: 1rem;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cookie-category {
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--color-gray-200);
    transition: border-color var(--transition-fast);
}

.cookie-category:hover {
    border-color: var(--color-primary);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.cookie-category-description {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-label {
    display: block;
    width: 36px;
    height: 20px;
    background: var(--color-gray-300);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.cookie-toggle input[type="checkbox"]:disabled + .cookie-toggle-label {
    cursor: not-allowed;
    opacity: 0.6;
}

.cookie-toggle-inner {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-label {
    background: var(--color-primary);
}

.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-label .cookie-toggle-inner {
    transform: translateX(16px);
}

.cookie-info-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.cookie-info-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.cookie-info-link a:hover {
    color: var(--color-gray-900);
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--color-gray-100);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-banner .btn,
    .cookie-btn-text {
        width: 100%;
        text-align: center;
    }

    .cookie-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .cookie-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .cookie-modal-title {
        font-size: 1.5rem;
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-category {
        padding: 1.25rem;
    }

    .cookie-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .cookie-modal-footer .btn,
    .cookie-modal-footer .cookie-btn-text {
        width: 100%;
    }
}

/* Animation for better UX */
@media (prefers-reduced-motion: reduce) {
    .cookie-banner,
    .cookie-modal,
    .cookie-modal-content,
    .cookie-toggle-inner {
        transition: none;
    }
}
