:root {
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;

  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;

  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-600: #0d9488;

  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;

  --green-50: #f0fdf4;
  --green-600: #16a34a;

  --lime-50: #f7fee7;

  --indigo-50: #eef2ff;

  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-600: #9333ea;

  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;

  --orange-50: #fff7ed;
  --orange-600: #ea580c;

  --amber-50: #fffbeb;

  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--gray-900);
  background: linear-gradient(to bottom right, var(--cyan-50), var(--blue-50), var(--teal-50));
  min-height: 100vh;
  line-height: 1.5;
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-sm {
  max-width: 896px;
  margin: 0 auto;
}

.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

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

.text-nowrap {
  white-space: nowrap;
}

.section-bg-white {
  background-color: var(--white);
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--cyan-600);
  line-height: 1.2;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background-color: var(--white);
  color: var(--cyan-600);
  border-color: var(--cyan-600);
}

.btn-outline:hover {
  background-color: var(--gray-100);
}

.btn-large {
  padding: 1rem 2rem;
}

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

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

.btn-dark {
  background-color: var(--cyan-700);
  color: var(--white);
  border-color: var(--white);
}

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

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

@media (max-width: 639px) {
  .desktop-only {
    display: none;
  }
}

/* Icons placeholder styling */
.icon-placeholder {
  width: 24px;
  height: 24px;
  border: 2px dashed currentColor;
  border-radius: 4px;
  display: inline-block;
  opacity: 0.7;
  flex-shrink: 0;
}

/* Hero Section */
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--gray-900);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
}

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

.hero-image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Features Cards Section */

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--gray-900);
}

.features-grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-cyan {
  background: linear-gradient(to bottom right, var(--cyan-50), var(--blue-50));
}

.card-teal {
  background: linear-gradient(to bottom right, var(--teal-50), var(--emerald-50));
}

.card-green {
  background: linear-gradient(to bottom right, var(--green-50), var(--lime-50));
}

.card-blue {
  background: linear-gradient(to bottom right, var(--blue-50), var(--indigo-50));
}

.card-purple {
  background: linear-gradient(to bottom right, var(--purple-50), var(--pink-50));
}

.card-orange {
  background: linear-gradient(to bottom right, var(--orange-50), var(--amber-50));
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
}

.icon-bg-cyan {
  background-color: var(--cyan-600);
}

.icon-bg-teal {
  background-color: var(--teal-600);
}

.icon-bg-green {
  background-color: var(--green-600);
}

.icon-bg-blue {
  background-color: var(--blue-600);
}

.icon-bg-purple {
  background-color: var(--purple-600);
}

.icon-bg-orange {
  background-color: var(--orange-600);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--gray-700);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.about-text strong {
  color: var(--gray-900);
}

/* Services Section */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.s-cyan {
  background: linear-gradient(to bottom right, var(--cyan-100), var(--blue-100));
}

.s-teal {
  background: linear-gradient(to bottom right, var(--teal-100), var(--emerald-100));
}

.s-purple {
  background: linear-gradient(to bottom right, var(--purple-100), var(--pink-100));
}

.service-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Locations Section */
.locations-card {
  background: linear-gradient(to bottom right, var(--cyan-600), var(--teal-600));
  border-radius: 1.5rem;
  padding: 3rem;
  color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.locations-card .section-title {
  color: var(--white);
  margin-bottom: 2rem;
}

.locations-grid {
  display: grid;
  gap: 1rem;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .locations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.location-item {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.location-item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Beach Image Section */
.beach-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 2rem;
}

.beach-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.beach-text {
  font-size: 1.25rem;
  color: var(--gray-700);
  max-width: 48rem;
  margin: 0 auto;
}

/* Contact Section */
.contact-card {
  background: linear-gradient(to bottom right, var(--cyan-600), var(--blue-700));
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: var(--white);
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
  .contact-card {
    padding: 3rem;
  }
}

.contact-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .contact-card h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .contact-card p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Pricing Section */
.bg-light-green {
  background-color: var(--emerald-50);
}

.bg-green {
  background-color: #3b713b;
  /* Kolor z obrazka */
}

.text-white {
  color: var(--white);
}

.pricing-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pricing-card {
  background-color: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pricing-header {
  padding: 1.25rem 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-list {
  list-style: none;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--gray-100);
}

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

.pricing-list li span:last-child {
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1rem;
}

@media (min-width: 640px) {
  .contact-buttons {
    flex-direction: row;
  }
}

/* Footer Section */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 1rem;
  text-align: center;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-subtitle {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-info {
    flex-direction: row;
  }

  .footer-divider {
    display: block;
  }
}

.footer-divider {
  display: none;
}

.footer-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.875rem;
}