/* ========================================
   Jan Krupička — Realitní makléř
   Professional Real Estate Website
   Colors: #E73241 (accent), #FFFFFF, #F5F5F5
======================================== */

:root {
  --accent: #E73241;
  --accent-hover: #c92a38;
  --white: #FFFFFF;
  --bg: #F5F5F5;
  --bg-dark: #111111;
  --text: #111111;
  --text-secondary: #555555;
  --text-light: #888888;
  --border: #e0e0e0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(16px, 0.45vw + 14px, 20px);
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========================================
   Animations
======================================== */
@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);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-on-scroll.animated {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade {
  opacity: 0;
}

.animate-fade.animated {
  animation: fadeIn 1s ease forwards;
}

.animate-scale {
  opacity: 0;
}

.animate-scale.animated {
  animation: scaleIn 0.6s ease forwards;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Header
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 32px;
  position: relative;
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

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

.contact-link-small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.contact-link-small:hover {
  color: var(--accent);
}

.contact-link-small svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.header-cta {
  background: var(--accent);
  padding: 0 32px 0 64px;
  height: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: calc(-50vw + 50%);
  padding-right: calc(50vw - 50% + 32px);
  position: relative;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
}

.header-cta .btn-header {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  white-space: nowrap;
}

.header-cta .btn-header:hover {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

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

.social-icon-header {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon-header svg {
  width: 22px;
  height: 22px;
}

.social-icon-header:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 24px;
}

.logo-image {
  height: 95px;
  width: auto;
  object-fit: contain;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}

.nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--accent);
}

/* ========================================
   Buttons
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 50, 65, 0.3);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn span {
  position: relative;
  z-index: 1;
}

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

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

.btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 600;
}

.btn-white:hover {
  background: rgba(255,255,255,0.9);
}

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

.btn-full {
  width: 100%;
}

.btn-header {
  padding: 10px 20px;
}

/* ========================================
   Hero
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(231, 50, 65, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: auto;
  max-width: 100%;
  height: 580px;
  object-fit: contain;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.2s;
  animation: bounce 2s infinite;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.scroll-indicator:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ========================================
   Stats
======================================== */
.stats {
  padding: 80px 0;
  background: var(--bg);
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.stat {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px);
}

.stat:hover .stat-value {
  color: var(--accent-hover);
}

.stat-value {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ========================================
   About
======================================== */
.about {
  padding: 120px 0;
  background: var(--white);
}

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

.about h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  margin: 32px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(231, 50, 65, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* ========================================
   Portfolio
======================================== */
.portfolio {
  padding: 120px 0;
  background: var(--bg);
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 17px;
  color: var(--text-secondary);
}

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

.property-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.property-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

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

.property-image {
  position: relative;
  height: 240px;
  background: linear-gradient(145deg, #f0f0f0 0%, #e0e0e0 100%);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.property-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='1'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.property-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.property-badge.sold {
  background: var(--accent);
  color: var(--white);
}

.property-content {
  padding: 24px;
}

.property-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.property-location {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.property-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

/* ========================================
   Reviews
======================================== */
.reviews {
  padding: 100px 0;
  background: var(--bg);
}

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

.reviews .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* Google Rating Badge */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.google-rating-badge .google-icon {
  flex-shrink: 0;
}

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

.rating-text {
  font-size: 15px;
  color: var(--text-secondary);
}

.rating-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Reviews Carousel */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-name {
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.google-icon-small {
  flex-shrink: 0;
}

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

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-date {
  font-size: 13px;
  color: var(--text-light);
  margin-top: auto;
}

.reviews-footer {
  text-align: center;
  margin-top: 40px;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

.google-reviews-link:hover {
  border-color: var(--text-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========================================
   Process Section
======================================== */
.process {
  padding: 100px 0;
  background: var(--bg);
}

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

.process .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.process .section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

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

.process-step {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
}

.process-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========================================
   Video Marketing Section
======================================== */
.video-section {
  padding: 100px 0;
  background: var(--white);
}

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

.video-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.video-section .section-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.video-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

/* Video Container - Shorts Style */
.video-container {
  position: relative;
  width: 270px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  flex-shrink: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play button - před spuštěním */
.video-play-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.video-play-circle {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.video-play-button:hover .video-play-circle {
  transform: scale(1.1);
}

.video-play-circle svg {
  width: 32px;
  height: 32px;
  fill: #333;
  margin-left: 4px;
}

.video-container.playing .video-play-button {
  opacity: 0;
  pointer-events: none;
}

/* Instagram overlay - po skončení videa */
.video-instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  text-decoration: none;
  z-index: 10;
}

.video-container.ended .video-instagram-overlay {
  opacity: 1;
  pointer-events: auto;
}

.video-instagram-logo {
  width: 72px;
  height: 72px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.video-instagram-overlay:hover .video-instagram-logo {
  transform: scale(1.1);
}

.video-instagram-logo svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.video-instagram-text {
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.video-instagram-cta {
  color: white;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 10px 24px;
  border-radius: 8px;
  margin-top: 8px;
}

/* Replay button */
.video-replay-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s ease;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
}

.video-container.ended .video-replay-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-replay-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-replay-btn svg {
  width: 14px;
  height: 14px;
  fill: white;
}

/* Progress bar */
.video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 20;
  cursor: pointer;
  transition: height 0.2s ease;
}

.video-progress-bar:hover {
  height: 8px;
}

.video-progress-fill {
  height: 100%;
  background: white;
  width: 0%;
  pointer-events: none;
  position: relative;
}

.video-progress-bar:hover .video-progress-fill::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0,0,0,0.3);
}

/* Mute button */
.video-mute-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: background 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.video-container.playing .video-mute-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-mute-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-mute-btn svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.video-mute-btn .muted-icon {
  display: none;
}

.video-mute-btn.muted .unmuted-icon {
  display: none;
}

.video-mute-btn.muted .muted-icon {
  display: block;
}

.video-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.video-cta {
  text-align: center;
}

/* ========================================
   CTA Section
======================================== */
.cta {
  padding: 100px 0;
  text-align: center;
  background-color: #E73241;
}

.cta h2 {
  font-size: 36px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn {
  background-color: #FFFFFF;
  color: #E73241;
  font-weight: 600;
}

.cta .btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ========================================
   Contact
======================================== */
.contact {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.contact-link:hover .contact-link-icon {
  background: var(--accent);
  color: var(--white);
}

.contact-link-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.2s ease;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-light);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.social-icon:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========================================
   Form
======================================== */
.contact-form {
  background: var(--bg);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group.form-checkbox label {
  display: inline-flex;
  font-weight: normal;
  margin-bottom: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: all 0.2s ease;
}

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

.form-group input:hover,
.form-group textarea:hover {
  border-color: #ccc;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(231, 50, 65, 0.1);
}

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

.form-checkbox {
  margin-top: 8px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: #fff;
  transition: all 0.2s ease;
  margin: 0;
  padding: 0;
}

.checkbox-label input[type="checkbox"]:hover {
  background: #fff5f5;
}

.checkbox-label input[type="checkbox"]:checked {
  background: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  font-size: 15px;
  color: var(--text);
  line-height: 18px;
}

.contact-form .btn {
  margin-top: 8px;
}

/* ========================================
   Footer
======================================== */
.footer {
  padding: 48px 0 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-content {
  text-align: center;
  padding-bottom: 32px;
}

.footer-quote {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
}

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

.footer-contact-link svg {
  color: var(--accent);
  flex-shrink: 0;
}

.footer-divider {
  color: var(--border);
  font-weight: 300;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.footer-social-icon:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.footer-qvent {
  font-size: 12px;
  color: var(--text-light);
  transition: color 0.2s;
}

.footer-qvent:hover {
  color: var(--accent);
}

/* ========================================
   Scroll to Top Button
======================================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(231, 50, 65, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

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

.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(231, 50, 65, 0.4);
}

/* ========================================
   Responsive
======================================== */

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.mobile-menu-btn:hover svg {
  color: var(--white);
}

.mobile-menu-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text);
  transition: color 0.2s ease;
}

.mobile-menu-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}

.mobile-menu-btn.active svg {
  color: var(--white);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav.active {
  max-height: 300px;
  padding: 16px 24px;
}

.mobile-nav a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* Large Desktop (1400px+) */
@media (max-width: 1400px) {
  .video-grid {
    gap: 16px;
  }
}


/* Desktop / 2k */

@media (min-width: 1440px){
  .container{ max-width: 1240px; }
}

@media (min-width: 1920px){
  .container{ max-width: 1320px; }
}


/* Desktop / Small Desktop (1024px - 1200px) */
@media (max-width: 1200px) {
  .header-cta {
    padding-left: 40px;
  }
  
  .nav {
    gap: 24px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero .container {
    gap: 48px;
  }
  
  .video-container {
    width: 240px;
    height: 426px;
  }
}

/* Tablet Landscape (1024px) */
@media (max-width: 1024px) {
  /* Header */
  .header-cta {
    margin-right: 0;
    padding: 0 16px;
    clip-path: none;
    padding-left: 24px;
  }
  
  .header-container {
    height: 70px;
  }
  
  .header-cta {
    height: 70px;
  }
  
  .header-contact-info {
    display: none;
  }
  
  .nav {
    position: static;
    transform: none;
    gap: 20px;
  }
  
  .nav a {
    font-size: 14px;
  }
  
  /* Hero */
  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-image {
    order: -1;
    justify-content: center;
  }
  
  .hero-image img {
    height: 380px;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  /* Stats */
  .stats .container {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .stat-value {
    font-size: 40px;
  }
  
  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  /* Process */
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Reviews */
  .review-card {
    flex: 0 0 300px;
  }
  
  .google-rating-badge {
    padding: 10px 20px;
    gap: 10px;
  }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
  /* Header - kompletní přepracování pro tablet/mobil */
  .header {
    position: sticky;
    top: 0;
  }
  
  .header-container {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
    gap: 12px;
    justify-content: space-between;
  }
  
  .header-left {
    flex: 0 0 auto;
  }
  
  .logo {
    padding-left: 0;
  }
  
  .logo-image {
    height: 50px;
  }
  
  .header-cta {
    position: static;
    width: auto;
    margin: 0;
    padding: 0;
    height: auto;
    background: transparent;
    clip-path: none;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .header-cta .btn-header {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .header-social {
    display: none;
  }
  
  .nav {
    display: none;
  }
  
  /* Mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Mobile nav */
  .mobile-nav {
    display: flex;
  }
  
  /* Hero */
  .hero {
    padding: 24px 0 48px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-image {
    display: flex;
  }
  
  .hero-image img {
    height: 280px;
  }
  
  /* Stats */
  .stats {
    padding: 60px 0;
  }
  
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .stat-value {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  /* Sections padding */
  .about,
  .portfolio,
  .contact,
  .reviews,
  .process,
  .video-section {
    padding: 64px 0;
  }
  
  /* About */
  .about h2 {
    font-size: 26px;
  }
  
  .about p {
    font-size: 16px;
  }
  
  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .process .section-header h2,
  .video-section .section-header h2,
  .reviews .section-header h2 {
    font-size: 26px;
  }
  
  .process .section-header p,
  .video-section .section-header p,
  .reviews .section-header p {
    font-size: 16px;
  }
  
  .process-step {
    padding: 24px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  /* Video */
  .video-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .video-container {
    width: 200px;
    height: 355px;
  }
  
  .video-play-circle {
    width: 56px;
    height: 56px;
  }
  
  .video-play-circle svg {
    width: 24px;
    height: 24px;
  }
  
  .video-instagram-logo {
    width: 56px;
    height: 56px;
  }
  
  .video-instagram-logo svg {
    width: 32px;
    height: 32px;
  }

  .video-note {
    font-size: 14px;
    padding: 0 16px;
  }
  
  /* Reviews */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 14px;
  }
  
  .google-rating-badge {
    padding: 10px 16px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .rating-text {
    font-size: 14px;
  }
  
  /* CTA */
  .cta {
    padding: 64px 0;
  }
  
  .cta h2 {
    font-size: 26px;
  }
  
  .cta p {
    font-size: 16px;
    padding: 0 16px;
  }
  
  /* Contact */
  .contact-info h2 {
    font-size: 26px;
  }
  
  .contact-info > p {
    font-size: 16px;
  }
  
  .contact-form {
    padding: 24px;
  }
  
  .contact-link {
    font-size: 15px;
  }
  
  .contact-link-icon {
    width: 44px;
    height: 44px;
  }
  
  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer */
  .footer {
    padding: 32px 0 0;
  }
  
  .footer-contact-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-divider {
    display: none;
  }
  
  .footer-quote {
    font-size: 16px;
    padding: 0 16px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  /* Scroll to top */
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* Large Mobile (600px) */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .hero-image img {
    height: 260px;
  }
  
  .stat-value {
    font-size: 32px;
  }
  
  .about h2,
  .process .section-header h2,
  .video-section .section-header h2,
  .reviews .section-header h2,
  .contact-info h2,
  .cta h2 {
    font-size: 24px;
  }
  
  .btn-lg {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
  
  .video-cta .btn-lg,
  .reviews-footer .btn-lg {
    width: auto;
  }
  
  .feature {
    font-size: 14px;
  }
  
  .about-features {
    gap: 12px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .hero {
    padding: 24px 0 32px;
  }
  
  .hero h1 {
    font-size: 24px;
    line-height: 1.2;
  }
  
  .hero-image {
    display: flex !important;
  }
  
  .hero-image img {
    height: 200px;
    max-width: 100%;
  }
  
  .stats {
    padding: 48px 0;
  }
  
  .stats .container {
    gap: 24px;
  }
  
  .stat-value {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 12px;
  }
  
  .about,
  .portfolio,
  .contact,
  .reviews,
  .process,
  .video-section {
    padding: 48px 0;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
  
  .process .section-header,
  .video-section .section-header,
  .reviews .section-header {
    margin-bottom: 32px;
  }
  
  .process-step {
    padding: 20px;
  }
  
  .process-step h3 {
    font-size: 16px;
  }
  
  .process-step p {
    font-size: 14px;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Video mobile */
  .video-grid {
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .video-container {
    width: 160px;
    height: 284px;
  }
  
  .video-play-circle {
    width: 48px;
    height: 48px;
  }
  
  .video-play-circle svg {
    width: 20px;
    height: 20px;
  }
  
  .video-instagram-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }
  
  .video-instagram-logo svg {
    width: 28px;
    height: 28px;
  }
  
  .video-instagram-text {
    font-size: 12px;
  }
  
  .video-instagram-cta {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .video-replay-btn {
    font-size: 11px;
    padding: 6px 14px;
  }
  
  .video-mute-btn {
    width: 28px;
    height: 28px;
    top: 8px;
    right: 8px;
  }
  
  .video-mute-btn svg {
    width: 14px;
    height: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .checkbox-text {
    font-size: 14px;
  }
  
  .footer {
    padding: 24px 0 0;
  }
  
  .footer-content {
    padding-bottom: 20px;
  }
  
  .footer-quote {
    font-size: 14px;
    padding: 0 12px;
    margin-bottom: 16px;
  }
  
  .footer-contact-link {
    font-size: 12px;
  }
  
  .footer-social-icon {
    width: 32px;
    height: 32px;
  }
  
  .footer-bottom {
    padding: 12px 0;
  }
  
  .footer-bottom p,
  .footer-qvent {
    font-size: 11px;
  }
  
  .footer-legal-links {
    font-size: 11px;
  }
  
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
  }
}

/* ========================================
   Cookie Consent Banner
======================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  background: var(--bg-dark);
  color: var(--white);
  padding: 20px;
  border-radius: 16px;
  font-size: 14px;
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: slideUp 0.4s ease;
}

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

.cookie-banner p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--accent-hover);
}

.cookie-btn-reject {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn-reject:hover {
  background: rgba(255,255,255,0.15);
}

/* ========================================
   Form GDPR Notice
======================================== */
.form-gdpr-notice {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.form-gdpr-notice a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-gdpr-notice a:hover {
  color: var(--accent-hover);
}

/* ========================================
   Footer Legal Links
======================================== */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.footer-legal-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--accent);
}

.footer-legal-links span {
  color: var(--border);
}

/* ========================================
   CTA Statement
======================================== */
.cta-statement{
  background: linear-gradient(135deg, var(--accent) 0%, #d92c3b 100%);
}


.cta-statement h2{
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.25;
  margin-bottom: 18px;
}


.cta-statement p{
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.92);
}

.header .container{
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.header-container{
  padding-left: 16px !important;
  padding-right: 24px; 
}

@media (min-width: 768px){
  .header-container{
    padding-left: 24px;
  }
}

.logo{
  padding-left: 0;
}