/* Global Styles for Kozmetický salón Venus */

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Georgia", serif;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

/* Color Variables */
:root {
  --primary-white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --accent-rose: #d4a574;
  --accent-gold: #c9a96e;
  --accent-mint: #a8c8a8;
  --text-dark: #2c2c2c;
  --text-medium: #555;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section-light {
  background-color: var(--light-gray);
}

/* Header Styles */
.header {
  background-color: var(--primary-white);
  box-shadow: 0 2px 10px var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.logo {
  font-family: "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-rose);
}

/* Navigation Styles */
.nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-rose);
  background-color: var(--light-gray);
}

.nav-link.active {
  color: var(--accent-rose);
  background-color: var(--medium-gray);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* CTA Button Styles */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-rose));
}

.cta-button:active {
  transform: translateY(0);
}

/* Footer Styles */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-rose);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}


.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #999;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

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

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

.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mb-3 {
  margin-bottom: 3rem;
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

/* Card Styles */
.card {
  background: white;
  border-radius: 15px;
  padding: 1rem;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Responsive Design */
@media (max-width: 1040px) {
  .header-content {
    padding: 0.5rem 0;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 15px var(--shadow-medium);
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

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

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

/* Page-specific adjustments */
body {
  padding-top: 80px; /* Account for fixed header */
}

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 100px;
}

/* Homepage Specific Styles */

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8),
    rgba(212, 165, 116, 0.3)
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, var(--light-gray), white);
}

.feature-icon {
  text-align: center;
}

.feature-icon .icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .feature-icon .icon {
  transform: scale(1.1);
}

/* Featured Treatments Section */
.treatment-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.treatment-image {
  height: 75px;
  overflow: hidden;
  position: relative;
}

.treatment-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.treatment-content {
  padding: 1.5rem;
}

.treatment-content h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 1.3rem;
}

.treatment-content p {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.treatment-link {
  color: var(--accent-rose);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.treatment-link:hover {
  color: var(--accent-gold);
}

.treatment-link::after {
  content: " →";
  transition: transform 0.3s ease;
}

.treatment-link:hover::after {
  transform: translateX(5px);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
  color: white;
  margin-bottom: 0;
  padding-bottom: 60px;
}

/* Global CTA Content Styles - Override all other CTA styles */
.cta-content h2 {
  color: white !important;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.cta-content p {
  color: white !important;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent-rose);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.scroll-to-top:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Responsive Design for Homepage */
@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
    margin: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .treatment-image {
    height: 150px;
  }

  .treatment-placeholder {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .treatment-content {
    padding: 1rem;
  }

  .scroll-to-top {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* About Me Page Specific Styles */

/* About Hero Section */
.about-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light-gray), white);
}

.about-intro {
  align-items: flex-start;
  gap: 3rem;
}

.about-image {
  text-align: center;
}

.portrait-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px var(--shadow-medium);
  transition: transform 0.3s ease;
}

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

.about-content h1 {
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.about-text h3 {
  color: var(--accent-rose);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Experience Timeline */
.experience-timeline {
  background: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    var(--accent-rose),
    var(--accent-gold)
  );
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin: 3rem 0;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 120px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  margin: 0 2rem;
  flex: 1;
  border: 1px solid var(--medium-gray);
}

.timeline-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.timeline-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* Qualifications Section */
.qualifications {
  background: white;
}

.qualification-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.qualification-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.qualification-icon {
  margin-bottom: 1.5rem;
}

.qualification-icon .icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.qualification-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.qualification-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Certificates Section */
.certificates {
  background: var(--light-gray);
}

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

.certificate-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow-light);
  transition: all 0.3s ease;
  background: white;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-medium);
}

.certificate-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-image {
  transform: scale(1.05);
}

.certificate-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.certificate-item:hover .certificate-overlay {
  transform: translateY(0);
}

.certificate-overlay h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.certificate-overlay p {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
}

.certificate-note {
  color: var(--text-medium);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* Personal Touch Section */
.personal-touch {
  background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
  color: white;
}

.personal-content h2 {
  color: white;
  margin-bottom: 2rem;
  font-size: 2.2rem;
}

.personal-quote {
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid var(--accent-rose);
}

.personal-quote blockquote {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  font-style: italic;
  color: #f0f0f0;
}

.personal-quote cite {
  color: var(--accent-rose);
  font-weight: 600;
  font-style: normal;
}

.personal-content p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .timeline {
    padding: 1.5rem 0;
    max-width: 100%;
  }

  .timeline::before {
    left: 30px;
    width: 2px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
    margin: 2rem 0;
    position: relative;
  }

  .timeline-year {
    position: absolute;
    left: -50px;
    min-width: 100px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-radius: 20px;
    z-index: 3;
  }

  .timeline-content {
    margin: 0.5rem auto 0 auto;
    width: calc(100% - 20px);
    max-width: 400px;
    padding: 1.2rem;
    margin-left: 0;
    transform: translateX(50px);
  }

  .timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .certificates-gallery {
    grid-template-columns: 1fr;
  }

  .personal-quote {
    padding: 1.5rem;
  }

  .personal-quote blockquote {
    font-size: 1.1rem;
  }

  .personal-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 80px 0 40px;
  }

  .timeline {
    padding: 1rem 0;
  }

  .timeline::before {
    left: 25px;
    width: 2px;
  }

  .timeline-item {
    padding-left: 15px;
    margin: 1.5rem 0;
  }

  .timeline-year {
    left: -10px;
    min-width: 80px;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 15px;
  }

  .timeline-content {
    padding: 1rem;
    margin: 0.3rem 0 0 0;
    width: calc(100% - 15px);
    max-width: 260px;
    margin-left: 20px;
  }

  .timeline-content h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .qualification-card {
    padding: 1.5rem;
  }

  .certificate-image {
    height: 300px;
  }

  .certificate-overlay {
    padding: 1.5rem;
  }
}

@media (max-width: 320px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    padding-left: 55px;
    margin: 1rem 0;
  }

  .timeline-year {
    left: -35px;
    min-width: 70px;
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    border-radius: 12px;
  }

  .timeline-content {
    padding: 0.8rem;
    margin: 0.2rem 0 0 0;
    width: calc(100% - 10px);
    max-width: 280px;
    margin-left: 15px;
  }

  .timeline-content h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light-gray), white);
}

.services-intro h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 2.5rem;
}

.services-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Sections */
.cosmetic-treatments {
  background: white;
}

.device-treatments {
  background: var(--light-gray);
}

.additional-services {
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-size: 2.2rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-header {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  color: white;
  padding: 2rem;
  text-align: center;
}

.service-header h3 {
  color: white;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
}

.service-content {
  padding: 2rem;
}

.service-detail {
  margin-bottom: 2rem;
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail h4 {
  color: var(--accent-rose);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-detail p {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* CTA Services Section */
.cta-services {
  background: var(--light-gray);
}

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

.cta-button-secondary {
  display: inline-block;
  background: transparent;
  color: var(--accent-rose);
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-rose);
}

.cta-button-secondary:hover {
  background: var(--accent-rose);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Service Navigation (if needed) */
.service-nav {
  background: white;
  padding: 1rem 0;
  border-bottom: 1px solid var(--medium-gray);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.service-nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.service-nav-link {
  color: var(--text-medium);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.service-nav-link:hover,
.service-nav-link.active {
  background: var(--accent-rose);
  color: white;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
  .services-intro h1 {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-header {
    padding: 1.5rem;
  }

  .service-header h3 {
    font-size: 1.2rem;
  }

  .service-content {
    padding: 1.5rem;
  }



  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .service-nav-links {
    gap: 1rem;
  }

  .service-nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .services-hero {
    padding: 80px 0 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-header {
    padding: 1.2rem;
  }

  .service-header h3 {
    font-size: 1.1rem;
  }

  .service-content {
    padding: 1.2rem;
  }

  .service-detail {
    margin-bottom: 1.5rem;
  }



  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Pricing Page Specific Styles */

/* Pricing Hero Section */
.pricing-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light-gray), white);
}

.pricing-intro h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 2.5rem;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Sections */
.cosmetic-pricing {
  background: white;
}

.device-pricing {
  background: var(--light-gray);
}

.additional-pricing {
  background: white;
}

.package-deals {
  background: var(--light-gray);
}

.pricing-info {
  background: white;
}

.cta-pricing {
  background: var(--light-gray);
}

/* Pricing Table */
.pricing-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-light);
  border: 1px solid var(--medium-gray);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price-table thead {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  color: white;
}

.price-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}

.price-table th:last-child {
  text-align: center;
  width: 120px;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--medium-gray);
  transition: background-color 0.3s ease;
}

.price-table tbody tr:hover {
  background-color: var(--light-gray);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table td {
  padding: 1.5rem 1rem;
  vertical-align: top;
}

.price-table td:last-child {
  text-align: center;
  vertical-align: middle;
}

.service-description {
  display: block;
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-top: 0.5rem;
  font-style: italic;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-rose);
}

.featured-service {
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.1),
    rgba(201, 169, 110, 0.1)
  );
  position: relative;
}

/* Package Cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.featured-package {
  border: 3px solid var(--accent-rose);
  position: relative;
}

.featured-package::before {
  content: "NAJOBĽÚBENEJŠÍ";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-rose);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.package-header {
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  color: white;
  padding: 2rem;
  text-align: center;
}

.package-header h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.package-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.original-price {
  font-size: 1rem;
  text-decoration: line-through;
  opacity: 0.8;
}

.discounted-price {
  font-size: 2rem;
  font-weight: 700;
}

.package-content {
  padding: 2rem;
}

.package-services {
  list-style: none;
  margin-bottom: 1.5rem;
}

.package-services li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--medium-gray);
  position: relative;
  padding-left: 1.5rem;
}

.package-services li:last-child {
  border-bottom: none;
}

.package-services li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-rose);
  font-weight: bold;
}

.package-savings {
  background: var(--light-gray);
  color: var(--accent-rose);
  padding: 0.8rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

/* Info Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  border: 1px solid var(--medium-gray);
}

.info-card h3 {
  color: var(--accent-rose);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--medium-gray);
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-rose);
  font-weight: bold;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
  .pricing-intro h1 {
    font-size: 2rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .price-table {
    font-size: 0.9rem;
  }

  .price-table th,
  .price-table td {
    padding: 1rem 0.8rem;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 100px;
  }

  .price {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.8rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .package-header {
    padding: 1.5rem;
  }

  .package-content {
    padding: 1.5rem;
  }

  .discounted-price {
    font-size: 1.6rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 80px 0 40px;
  }

  .pricing-table {
    margin: 0 -15px;
    border-radius: 0;
  }

  .price-table {
    font-size: 0.8rem;
  }

  .price-table th,
  .price-table td {
    padding: 0.8rem 0.5rem;
  }

  .price-table th:last-child,
  .price-table td:last-child {
    width: 80px;
  }

  .price {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.75rem;
    margin-top: 0.3rem;
  }

  .featured-service::before {
    font-size: 0.6rem;
    padding: 0.2rem 0.6rem;
  }

  .package-header h3 {
    font-size: 1.2rem;
  }

  .discounted-price {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .scroll-to-top,
  .cta-pricing {
    display: none;
  }

  .pricing-table {
    box-shadow: none;
    border: 1px solid #000;
  }

  .price-table th {
    background: #f0f0f0 !important;
    color: #000 !important;
  }

  .package-card {
    box-shadow: none;
    border: 1px solid #000;
    break-inside: avoid;
  }
}

/* Gallery and References Page Specific Styles */

/* Gallery Hero Section */
.gallery-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light-gray), white);
}

.gallery-intro h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 2.5rem;
}

.gallery-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Section */
.salon-gallery {
  background: white;
}

.gallery-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.gallery-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.gallery-overlay p {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
}

/* References Section */
.references {
  background: var(--light-gray);
}

.references-description {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

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

.reference-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 8px 25px var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--medium-gray);
  overflow: hidden;
}

.reference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.reference-content {
  padding: 2rem;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--accent-rose);
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

.reference-content blockquote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0 0 2rem 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.reference-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--medium-gray);
  padding-top: 1.5rem;
}

.author-info h4 {
  color: var(--text-dark);
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.rating .stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px var(--shadow-light);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-medium);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-rose);
  margin-bottom: 1rem;
  line-height: 1;
  animation: countUp 0.6s ease-out;
}

.stat-label {
  font-size: 1.1rem;
  color: #ccc;
  font-weight: 500;
}

/* CTA Gallery Section */
.cta-gallery {
  background: var(--light-gray);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1002;
  animation: fadeIn 0.3s ease;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Gallery Page */
@media (max-width: 768px) {
  .gallery-intro h1 {
    font-size: 2rem;
  }

  .gallery-subtitle {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item {
    border-radius: 15px;
  }

  .gallery-image {
    height: 250px;
  }

  .gallery-overlay {
    padding: 1.5rem;
  }

  .references-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reference-content {
    padding: 1.5rem;
  }

  .quote-icon {
    font-size: 3rem;
    top: 0.5rem;
    right: 1rem;
  }

  .reference-content blockquote {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 1rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    padding: 80px 0 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-image {
    height: 200px;
  }

  .gallery-overlay {
    padding: 1rem;
  }

  .gallery-overlay h3 {
    font-size: 1rem;
  }

  .gallery-overlay p {
    font-size: 0.8rem;
  }

  .reference-content {
    padding: 1.2rem;
  }

  .quote-icon {
    font-size: 2.5rem;
  }

  .reference-content blockquote {
    font-size: 0.9rem;
  }

  .reference-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Animation for statistics numbers */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--light-gray), white);
}

.contact-intro h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 2.5rem;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Information Section */
.contact-info {
  background: white;
}

.contact-layout {
  gap: 3rem;
  align-items: flex-start;
}

.contact-details h2,
.map-container h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-method {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-rose);
}

.contact-method h3 {
  color: var(--accent-rose);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.contact-method p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.contact-icon {
  margin-right: 1.5rem;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-content h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-content p {
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

.contact-content a {
  color: var(--accent-rose);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-content a:hover {
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-rose);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-gold);
}

/* Map Container */
.map-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-light);
  border: 1px solid var(--medium-gray);
}

.map-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-light);
}

.map-note {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--light-gray);
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px var(--shadow-light);
  border: 1px solid var(--medium-gray);
}

.contact-form-wrapper h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 2rem;
}

.form-description {
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-rose);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  line-height: 1.5;
  color: var(--text-medium);
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--medium-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.error-message {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}

.form-group.error .error-message {
  display: block;
}

/* FAQ Section */
.faq-section {
  background: white;
}

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

.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-light);
  border: 1px solid var(--medium-gray);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.faq-item h3 {
  color: var(--accent-rose);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0;
}

/* CTA Contact Section */
.cta-contact {
  background: var(--light-gray);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-intro h1 {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 1rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-details h2,
  .map-container h2 {
    font-size: 1.6rem;
  }

  .contact-item {
    padding: 1.2rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 1rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.6rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .faq-item {
    padding: 1.5rem;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 80px 0 40px;
  }

  .contact-method {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .contact-content h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .contact-content p {
    font-size: 0.9rem;
  }

  .contact-form-wrapper {
    padding: 1.5rem;
    margin: 0 -15px;
    border-radius: 0;
  }

  .contact-form-wrapper h2 {
    font-size: 1.4rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
  }

  .checkbox-label {
    font-size: 0.8rem;
  }

  .faq-item {
    padding: 1.2rem;
  }

  .faq-item h3 {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content p {
    font-size: 1rem;
  }

  .social-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 320px) {
  .contact-item {
    padding: 0.8rem;
    margin-bottom: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .contact-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }

  .contact-content p {
    font-size: 0.8rem;
  }

  .contact-method {
    padding: 1rem;
  }

  .contact-method h3 {
    font-size: 1.1rem;
  }

  .contact-method p {
    font-size: 0.9rem;
  }
}

/* Form Validation Styles */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
  border-color: #27ae60;
}

.form-group.success .error-message {
  color: #27ae60;
  display: block;
}

/* Loading State */
.contact-form.loading .cta-button {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form.loading .cta-button::after {
  content: " Odosielam...";
}

/* Success Message */
.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid #c3e6cb;
  display: none;
}

.success-message.show {
  display: block;
}

@media (min-width: 400px) and (max-width: 440px) {
  .timeline-content {
    max-width: 280px;
  }
}

@media (min-width: 440px) and (max-width: 480px) {
  .timeline-content {
    max-width: 320px;
  }
}

@media (min-width: 480px) and (max-width: 520px) {
  .timeline-content {
    max-width: 330px;
  }
  .timeline-year {
    left: -10px;
  }
}

@media (min-width: 520px) and (max-width: 560px) {
  .timeline-content {
    max-width: 350px;
  }
  .timeline-year {
    left: -10px;
  }
}

@media (min-width: 560px) and (max-width: 600px) {
  .timeline-content {
    max-width: 370px;
  }
  .timeline-year {
    left: -10px;
  }
}

@media (min-width: 600px) and (max-width: 640px) {
  .timeline-content {
    max-width: 420px;
  }
  .timeline-year {
    left: -10px;
  }
}

@media (min-width: 640px) and (max-width: 680px) {
  .timeline-content {
    max-width: 450px;
  }
  .timeline-year {
    left: -10px;
  }
}

@media (min-width: 680px) and (max-width: 720px) {
  .timeline-content {
    max-width: 480px;
  }
  .timeline-year {
    left: -10px;
  }
}
@media (min-width: 720px) and (max-width: 768px) {
  .timeline-content {
    max-width: 540px;
  }
  .timeline-year {
    left: -10px;
  }
}




