/* ============================================
   KOSMETIKA VERONIKA LEŠKOVÁ
   Apple-style Minimalist Design
   Bílá, Růžová, Černá
   ============================================ */

/* Prevent horizontal scroll globally */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* ============================================
   CURSOR GLOW EFFECT - Pink dust
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 165, 184, 0.15) 0%, rgba(245, 165, 184, 0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.cursor-glow.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
}

/* CSS Variables */
:root {
    /* Colors - White, Pink, Black only */
    --primary: #f5a5b8;
    --primary-dark: #e8899e;
    --primary-light: #fce4ec;
    --primary-lighter: #fdf2f5;
    --black: #1d1d1f;
    --gray-dark: #424245;
    --gray: #86868b;
    --gray-light: #d2d2d7;
    --gray-lighter: #f5f5f7;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1120px;
    
    /* Border Radius - Apple style */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-normal: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.loading-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    animation: loadingPulse 1.5s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(245, 165, 184, 0.3);
}

.loading-logo img {
    width: 200%;
    height: 200%;
    object-fit: cover;
    object-position: 50% 18%;
    margin-left: -50%;
    margin-top: -10%;
}

.loading-progress {
    width: 200px;
    height: 3px;
    background: var(--gray-lighter);
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
    border-radius: 10px;
    animation: loadingProgress 1.3s ease-in-out forwards;
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
        box-shadow: 0 10px 40px rgba(245, 165, 184, 0.3);
    }
    50% {
        transform: scale(1.08) translateY(-10px);
        box-shadow: 0 20px 60px rgba(245, 165, 184, 0.5);
    }
}

@keyframes loadingProgress {
    0% {
        width: 0;
    }
    30% {
        width: 40%;
    }
    60% {
        width: 70%;
    }
    90% {
        width: 90%;
    }
    100% {
        width: 100%;
    }
}

/* Body hidden during loading */
body.loading {
    overflow: hidden;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.5;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 22px;
}

/* Typography - Apple Style */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--black);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 7vw, 64px); font-weight: 700; }
h2 { font-size: clamp(32px, 5vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 28px); }
h4 { font-size: clamp(19px, 2vw, 21px); }

p {
    color: var(--gray-dark);
}

/* Section Styles */
.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-light);
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    margin-bottom: 16px;
}

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

/* Buttons - Apple Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-xl);
    font-weight: 500;
    font-size: 17px;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.btn i {
    font-size: 14px;
    transition: transform var(--transition-fast);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--black);
    color: var(--white);
}

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

.btn-pink {
    background: var(--primary);
    color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--black);
    background: var(--gray-lighter);
}

.btn-link {
    background: transparent;
    color: var(--primary-dark);
    padding: 8px 0;
}

.btn-link:hover {
    color: var(--black);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 17px;
}

/* ============================================
   HEADER / NAVIGATION - Apple Style
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease;
}

/* Header scrolled state - solid white */
.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    position: relative;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-subtitle {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.nav-link:hover {
    background: var(--gray-lighter);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 14px;
}

.nav-phone i {
    color: var(--primary);
    font-size: 12px;
}

.nav-phone:hover {
    color: var(--black);
}

/* Hamburger Menu - Apple Style Animation */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    position: relative;
    cursor: pointer;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 22px;
    background: var(--black);
    border-radius: 2px;
    left: 11px;
    transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
    pointer-events: none;
}

.hamburger span:nth-child(1) {
    top: 14px;
    transform-origin: center center;
}

.hamburger span:nth-child(2) {
    top: 21px;
    transform-origin: center center;
}

.hamburger span:nth-child(3) {
    top: 28px;
    transform-origin: center center;
}

/* Hamburger to X animation - Apple style */
.hamburger.active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
    background: var(--black);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
    background: var(--black);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
}

/* ============================================
   FULLSCREEN MOBILE MENU - Apple Style
   ============================================ */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 40px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Menu Close Button - X inside fullscreen menu */
.menu-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10000;
    -webkit-tap-highlight-color: transparent;
}

.menu-close-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 24px;
    background: var(--black);
    border-radius: 2px;
    left: 10px;
    top: 21px;
}

.menu-close-btn span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-close-btn span:nth-child(2) {
    transform: rotate(-45deg);
}

.menu-close-btn:hover span {
    background: var(--primary);
}

.fullscreen-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullscreen-menu-links li {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fullscreen-menu.active .fullscreen-menu-links li {
    opacity: 1;
    transform: translateX(0);
}

.fullscreen-menu.active .fullscreen-menu-links li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active .fullscreen-menu-links li:nth-child(5) { transition-delay: 0.3s; }

.fullscreen-menu-links a {
    display: block;
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    padding: 16px 0;
    letter-spacing: -0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.fullscreen-menu-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.fullscreen-menu-links a.active {
    color: var(--primary);
}

.fullscreen-menu-cta {
    margin-top: 48px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0.3s;
}

.fullscreen-menu.active .fullscreen-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu-cta .btn {
    font-size: 18px;
    padding: 18px 36px;
}

/* Old mobile menu - keep for compatibility but hide */
.mobile-menu {
    display: none !important;
}

/* Black button style */
.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background: var(--gray-dark);
}

/* Black outline button - Apple style */
.btn-outline-black {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline-black:hover {
    background: var(--black);
    color: var(--white);
}

/* ============================================
   HERO SECTION - Apple Style
   ============================================ */
.hero {
    min-height: 100vh;
    padding-top: 52px;
    display: flex;
    align-items: center;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 52px);
    padding: 80px 0;
    background: none !important;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--primary-lighter);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 19px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.hero-buttons .btn {
    min-width: 200px;
    text-align: center;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-light);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.02em;
}

.stat-text {
    font-size: 13px;
    color: var(--gray);
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero-dots {
    display: none;
}

/* ============================================
   QUICK LINKS - Apple Style Cards
   ============================================ */
.quick-links {
    padding: 80px 0;
    background: var(--gray-lighter);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.quick-link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.quick-link-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.quick-link-icon i {
    font-size: 24px;
    color: var(--primary);
}

.quick-link-content h3 {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.quick-link-content p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   ABOUT SECTION - Apple Style
   ============================================ */
.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

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

.about-image-wrapper img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-lead {
    font-size: 21px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--black);
    line-height: 1.4;
}

.about-text {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

/* About features - responzivní layout pro mobil */
@media (max-width: 768px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .about-feature {
        padding: 12px 10px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .about-feature i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .about-feature span {
        font-size: 12px;
    }
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-lighter);
    border-radius: var(--radius-lg);
}

.about-feature i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.about-feature span {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

/* ============================================
   SERVICES / PRICELIST - Apple Style
   ============================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-lighter);
}

.pricelist-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pricelist-category {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition-normal);
}

.pricelist-category:hover {
    box-shadow: var(--shadow-md);
}

.pricelist-title {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.pricelist-title i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.pricelist-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricelist-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

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

.item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item-name {
    font-weight: 600;
    color: var(--black);
    font-size: 16px;
    line-height: 1.4;
}

.item-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.item-dots {
    flex: 1;
    border-bottom: 1px dashed var(--gray-light);
    margin: 0 8px;
    min-width: 20px;
    align-self: center;
}

.item-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-dark);
    white-space: nowrap;
    padding-top: 2px;
}

.services-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   CATEGORIES SECTION - Apple Style
   ============================================ */
.categories {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.categories-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.category-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: var(--transition-normal);
}

.category-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.category-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.category-card h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

/* ============================================
   GALLERY SECTION - Apple Style
   ============================================ */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--gray-lighter);
}

.gallery-products {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 240px);
    gap: 16px;
}

.gallery-grid-large {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
}

.gallery-grid-large .gallery-item {
    height: 280px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   LIGHTBOX - Fullscreen Gallery
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 24px;
        top: 10px;
        right: 10px;
    }
    
    .lightbox img {
        max-width: 95%;
    }
}

/* ============================================
   REVIEWS SECTION - Apple Style
   ============================================ */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reviews-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--gray-lighter);
    padding: 28px;
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
}

.review-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars i {
    color: #FBBC04;
    font-size: 12px;
}

.review-text {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-date {
    font-size: 13px;
    color: var(--gray);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary);
}

.reviews-nav {
    display: none;
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.google-reviews {
    padding: var(--section-padding) 0;
    background: var(--gray-lighter);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.google-logo {
    height: 32px;
    width: auto;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-score {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #FBBC04;
    font-size: 18px;
}

.rating-count {
    font-size: 15px;
    color: var(--gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.google-review-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.google-review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-avatar-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

/* Google style avatar colors */
.google-review-card:nth-child(1) .review-avatar-initials {
    background: #4285F4; /* Google Blue */
}

.google-review-card:nth-child(2) .review-avatar-initials {
    background: #34A853; /* Google Green */
}

.google-review-card:nth-child(3) .review-avatar-initials {
    background: #EA4335; /* Google Red */
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.review-meta .review-date {
    font-size: 13px;
    color: var(--gray);
}

.review-text-wrapper {
    margin-top: 16px;
}

.review-text-truncated {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.7;
}

.review-expand-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: 12px;
    transition: var(--transition-fast);
    display: block;
}

.review-expand-btn:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Google Reviews Button - Apple styl */
.btn-google-reviews {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 980px;
    font-size: 17px;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: var(--transition-normal);
}

.btn-google-reviews:hover {
    background: var(--gray-lighter);
    transform: scale(1.02);
}

.btn-google-reviews .btn-google-icon {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

.btn-google-reviews span {
    color: var(--black);
}

.btn-google-icon {
    height: 20px;
    width: auto;
}

.reviews-cta {
    text-align: center;
    margin-top: 48px;
}

/* Google Reviews Responsive */
@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 12px;
    }
    
    .rating-info {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   CTA SECTION - Apple Style
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--black);
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--gray);
    font-size: 19px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 220px;
    text-align: center;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: var(--gray-lighter);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   CONTACT SECTION - Apple Style
   ============================================ */
.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-lighter);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    max-width: 100%;
}

/* Reversed contact grid - form first */
.contact-grid-reversed {
    grid-template-columns: 1fr 1fr;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition-fast);
}

.contact-card:hover {
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 16px;
}

.contact-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
}

.contact-details a {
    color: var(--gray);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    background: var(--gray-lighter);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* ============================================
   FOOTER - Apple Style
   ============================================ */
.footer-simple {
    background: var(--black);
    padding: 32px 0;
    text-align: center;
}

.footer-simple p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-simple .powered-by,
.footer-simple .web-by {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 0;
}

.footer-simple .powered-by a,
.footer-simple .web-by a {
    color: #f5a5b8 !important;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-simple .powered-by a:hover,
.footer-simple .web-by a:hover {
    color: #ffc7d4 !important;
}

/* ============================================
   PRICELIST IMAGE SECTION
   ============================================ */
.pricelist-image-section {
    padding: 40px 0;
    background: var(--gray-lighter);
}

/* Top pricelist image - above prices */
.pricelist-image-section.pricelist-image-top {
    padding: 40px 0 60px;
    background: var(--white);
}

.pricelist-image {
    width: 93%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: left center;
}

/* Animated pricelist image - Apple style */
.pricelist-image-animated {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: pricelistImageFadeIn 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s forwards;
}

@keyframes pricelistImageFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-phone {
        display: none;
    }
    
    .hamburger {
        display: block !important;
    }
    
    .nav-btn-desktop {
        display: none !important;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .pricelist-wrapper {
        grid-template-columns: 1fr;
    }
    
    .categories-grid,
    .categories-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }
    
    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid-large .gallery-item {
        height: 220px;
    }
    
    .reviews-track {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    
    :root {
        --section-padding: 64px;
    }
    
    /* Text alignment - left aligned in centered blocks */
    .section-header,
    .hero-content,
    .about-content,
    .cta-content,
    .page-hero-content {
        text-align: center;
    }
    
    .section-header p,
    .hero-text,
    .about-text,
    .about-lead,
    .cta-content p {
        text-align: left;
        display: inline-block;
        max-width: 100%;
    }
    
    /* Ensure consistent text blocks */
    .section-subtitle {
        text-align: center;
    }
    
    .nav {
        height: 48px;
        position: relative;
    }
    
    /* Hide desktop nav button on mobile */
    .nav-btn-desktop {
        display: none !important;
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
    }
    
    .nav-actions .nav-phone {
        display: none;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: block !important;
    }
    
    /* Hide desktop nav menu on mobile */
    .nav-menu {
        display: none !important;
    }
    
    /* Hero image - zobrazit celý na mobilu */
    .hero-image img {
        height: auto;
        max-height: 400px;
        object-fit: contain;
        margin-bottom: 24px;
    }
    
    .hero-image {
        margin-bottom: 20px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    /* about-features handled separately above */
    
    /* Center button on mobile only - same width as hero buttons */
    .btn-center-mobile {
        display: inline-block;
        width: auto;
        text-align: center;
        margin: 24px auto 0;
    }
    
    .about-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-link-card {
        padding: 24px;
    }
    
    .category-card {
        height: 200px;
    }
    
    .pricelist-category {
        padding: 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ============================================
   ANIMATIONS - Apple Style
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* Scale animation variant */
.animate-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Slide animations */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.animate-slide-left.animated,
.animate-slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Hero specific animations */
.hero-content {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s both;
}

.hero-image {
    animation: fadeIn 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s both;
}

.hero-badge {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s both;
}

.hero-title {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s both;
}

.hero-text {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.5s both;
}

.hero-buttons {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s both;
}

.hero-stats {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s both;
}

/* Button hover animations */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Card hover effects */
.quick-link-card,
.category-card,
.gallery-item,
.review-card,
.pricelist-category {
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Stat number counting animation */
.stat-number {
    display: inline-block;
}

/* Smooth image loading */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Link underline animation */
.footer-nav a,
.footer-services a {
    position: relative;
}

.footer-nav a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after,
.footer-services a:hover::after {
    width: 100%;
}

/* Contact card hover */
.contact-card {
    transition: transform 0.3s ease, background 0.3s ease;
}

.contact-card:hover {
    transform: translateX(8px);
    background: var(--gray-lighter);
}

/* Icon float animation on hover */
.quick-link-icon {
    transition: transform 0.3s ease;
}

.quick-link-card:hover .quick-link-icon {
    transform: translateY(-4px);
}

/* Gallery zoom effect */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

/* Pricelist item hover */
.pricelist-item {
    transition: background 0.3s ease, padding 0.3s ease;
    border-radius: var(--radius-md);
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
}

.pricelist-item:hover {
    background: var(--gray-lighter);
}

/* Review card subtle animation */
.review-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Back to top button animation */
.back-to-top {
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-4px);
}

.back-to-top.visible {
    animation: fadeInUp 0.4s ease forwards;
}

/* Section header animations */
.section-badge {
    display: inline-block;
}

.section-title {
    display: inline-block;
}

/* Stagger children animation helper */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-children.animated > *:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s forwards; }
.stagger-children.animated > *:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s forwards; }
.stagger-children.animated > *:nth-child(3) { animation: fadeInUp 0.5s ease 0.3s forwards; }
.stagger-children.animated > *:nth-child(4) { animation: fadeInUp 0.5s ease 0.4s forwards; }
.stagger-children.animated > *:nth-child(5) { animation: fadeInUp 0.5s ease 0.5s forwards; }
.stagger-children.animated > *:nth-child(6) { animation: fadeInUp 0.5s ease 0.6s forwards; }

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .animate-on-scroll,
    .animate-scale,
    .animate-slide-left,
    .animate-slide-right {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   PAGE HERO - Subpages Header
   ============================================ */
.page-hero {
    padding: 130px 0 40px;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, var(--white) 100%);
    text-align: center;
}

/* Pink page hero - for gallery */
.page-hero.page-hero-pink {
    background: linear-gradient(90deg, #f5a5b8 0%, #e8b4c0 30%, #d4bcc2 60%, #c5c5c5 100%);
}

.page-hero.page-hero-pink h1,
.page-hero.page-hero-pink p {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    color: var(--black);
    margin: 16px 0;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
    padding: var(--section-padding) 0;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-page-content .section-title {
    margin-bottom: 24px;
}

.about-page-content .about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.5;
}

.about-page-content .about-text {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-page-content .about-features {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-page-image {
        order: -1;
    }
    
    .about-page-content {
        text-align: center;
    }
    
    .about-page-content .btn {
        margin: 0 auto;
    }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
    padding: var(--section-padding) 0;
}

/* Two column layout for desktop */
.services-page .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 992px) {
    .services-page .container {
        grid-template-columns: 1fr;
    }
}

.services-page .pricelist-category {
    margin-bottom: 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-lighter);
    height: fit-content;
}

.services-page .pricelist-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-page .pricelist-category-title i {
    color: var(--primary);
    font-size: 1.25rem;
}

.services-page .pricelist-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-page .pricelist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--gray-lighter);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.services-page .pricelist-item:hover {
    background: var(--primary-lighter);
    transform: translateX(4px);
}

.services-page .pricelist-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.services-page .pricelist-item-name {
    font-weight: 500;
    color: var(--black);
}

.services-page .pricelist-item-duration {
    font-size: 0.875rem;
    color: var(--gray);
}

.services-page .pricelist-item-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}

/* Pricelist item with description */
.services-page .pricelist-item.pricelist-item-with-desc {
    align-items: flex-start;
    flex-direction: row;
}

.services-page .pricelist-item-with-desc .pricelist-item-info {
    flex: 1;
    padding-right: 20px;
}

.services-page .pricelist-item-desc {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
    margin-top: 6px;
}

.services-page .pricelist-item-with-desc .pricelist-item-price {
    flex-shrink: 0;
    padding-top: 2px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: var(--section-padding) 0;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    color: var(--gray-dark);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details a {
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-details .text-muted {
    font-size: 0.875rem;
    color: var(--gray);
}

.contact-social {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-lighter);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-social h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
}

.contact-social .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-social .social-links a {
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.25rem;
    transition: all var(--transition-fast);
}

.contact-social .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-lighter);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--white);
}

/* Modern date and time inputs */
.contact-form input[type="date"],
.contact-form input[type="time"] {
    cursor: pointer;
    color: var(--black);
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    background-color: var(--primary-lighter);
    transition: background 0.2s ease;
}

.contact-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.contact-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    background-color: var(--primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(245, 165, 184, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-block {
    width: 100%;
    justify-content: center;
}

/* Map Section */
.map-section {
    padding: 80px 0 var(--section-padding);
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SUBPAGE ANIMATIONS
   ============================================ */
.page-hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.services-page .pricelist-category {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.services-page .pricelist-category:nth-child(1) { animation-delay: 0.1s; }
.services-page .pricelist-category:nth-child(2) { animation-delay: 0.2s; }
.services-page .pricelist-category:nth-child(3) { animation-delay: 0.3s; }
.services-page .pricelist-category:nth-child(4) { animation-delay: 0.4s; }
.services-page .pricelist-category:nth-child(5) { animation-delay: 0.5s; }
.services-page .pricelist-category:nth-child(6) { animation-delay: 0.6s; }

.gallery .gallery-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.gallery .gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery .gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery .gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery .gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery .gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery .gallery-item:nth-child(6) { animation-delay: 0.3s; }
.gallery .gallery-item:nth-child(7) { animation-delay: 0.35s; }
.gallery .gallery-item:nth-child(8) { animation-delay: 0.4s; }
.gallery .gallery-item:nth-child(9) { animation-delay: 0.45s; }
.gallery .gallery-item:nth-child(10) { animation-delay: 0.5s; }

.contact-info,
.contact-form-wrapper {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.contact-info { animation-delay: 0.1s; }
.contact-form-wrapper { animation-delay: 0.2s; }

/* ============================================
   RESPONSIVE - Subpages
   ============================================ */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-page .pricelist-category {
        padding: 20px;
    }
    
    .services-page .pricelist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .services-page .pricelist-item-price {
        align-self: flex-end;
    }
}
