:root {
  --deep: #09172b;
  --ocean: #0f3f73;
  --mid: #185f99;
  --aqua: #2b8eb8;
  --light: #9dd8ef;
  --foam: #edf6fa;
  --mist: #f7fafc;
  --gold: #c8a96e;
  --gold-soft: #e3c995;
  --white: #ffffff;
  --text: #1a2b3c;
  --text-body: #4a5568;
  --muted: #627287;
  --placeholder: #a0aab4;
  --border: rgba(15, 63, 115, 0.12);
  --shadow: 0 18px 50px rgba(10, 28, 52, 0.12);
  --shadow-soft: 0 10px 26px rgba(10, 28, 52, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
}

p {
  color: var(--muted);
}

/* -- Navbar -- */
.navbar {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
  padding: 1.25rem 0;
}

.navbar.scrolled {
  background: rgba(9, 23, 43, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
  padding: 0.65rem 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 0.04em;
  max-width: 85%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navbar-brand span {
  color: var(--gold);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0.9rem !important;
  transition: color 0.2s;
}

.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
  margin-right: 0.5rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* -- Hero -- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 23, 43, 0.78) 0%, rgba(9, 23, 43, 0.46) 42%, rgba(9, 23, 43, 0.72) 100%),
    linear-gradient(160deg, var(--deep) 0%, var(--ocean) 45%, var(--mid) 75%, var(--aqua) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://bazeny-mont.cz/img/bazen1.png') center/cover no-repeat;
  opacity: 0.32;
  transform: scale(1.03);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}

.hero-waves svg {
  display: block;
  width: 200%;
  height: 100%;
  animation: wave 10s linear infinite;
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 2rem 1.25rem 5rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 strong {
  display: block;
  font-size: 0.75em;
  font-weight: 700;
  color: var(--light);
  margin-top: 0.5rem;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.2);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--deep);
  border: none;
  padding: 1rem 2.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(200, 169, 110, 0.28);
}

.btn-gold:hover {
  transform: translateY(-3px);
  color: var(--deep);
  filter: brightness(1.03);
}

.btn-outline-hero {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  padding: 1rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  margin-top: 2.5rem;
}

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

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.80rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* -- Sekce -- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ocean);
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

/* -- O nás -- */
.about-section {
  padding: 7rem 0;
}

.about-section .text-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.about-section .text-body-sm {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--ocean);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  z-index: 2;
}

.about-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-badge .lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -- Služby -- */
.services-section {
  background: var(--foam);
  padding: 7rem 0;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  height: 100%;
  box-shadow: var(--shadow-soft);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 63, 115, 0.2);
}

.service-card .img-wrap {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 2rem;
}

.service-card-body p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.service-card-body h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 0.5rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.service-card-divider {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1rem;
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(43, 142, 184, 0.1);
  color: var(--ocean);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
}

/* -- Galerie -- */
.gallery-section {
  padding: 7rem 0;
  background: var(--white);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 63, 115, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-size: 1.8rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-grid-item {
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease;
}

.gallery-grid-item.gallery-hidden {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

.gallery-grid-item.gallery-visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tlačítko zobrazit více */
.btn-gallery-toggle {
  background: linear-gradient(135deg, var(--ocean), var(--mid));
  color: var(--white);
  border: none;
  padding: 1rem 2.8rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 63, 115, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gallery-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(15, 63, 115, 0.3);
  filter: brightness(1.08);
}

.btn-gallery-toggle:active {
  transform: translateY(-1px);
}

.btn-gallery-toggle .toggle-icon {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.btn-gallery-toggle.expanded .toggle-icon {
  transform: rotate(180deg);
}

.gallery-facebook-note {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.btn-gallery-toggle.expanded~.gallery-facebook-note {
  max-height: 100px;
  opacity: 1;
  margin-top: 1.8rem;
}

.gallery-facebook-note a {
  color: var(--ocean);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid rgba(15, 63, 115, 0.2);
  transition: all var(--transition);
  padding-bottom: 1px;
}

.gallery-facebook-note a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.gallery-facebook-note i {
  color: var(--gold);
  font-size: 1.05rem;
  vertical-align: middle;
}

/* -- Lightbox -- */
.modal-content {
  background: rgba(0, 0, 0, 0.95);
  border: none;
}

.modal-body {
  padding: 2rem;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close-gallery {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 2rem;
  line-height: 1;
  z-index: 1060;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-close-gallery:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1060;
  transition: all 0.3s ease;
  color: var(--ocean);
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: var(--ocean);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-nav-prev {
  left: 20px;
}

.lightbox-nav-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1060;
}

.lightbox-counter #currentImageIndex {
  color: var(--gold);
  font-weight: 700;
}

#lightboxImage {
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-height: 85vh;
  object-fit: contain;
}

#lightboxImage.changing {
  opacity: 0;
  transform: scale(0.95);
}

/* -- Výhody -- */
.features-section {
  padding: 7rem 0;
}

.features-section .text-body {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(15, 63, 115, 0.08);
  color: var(--ocean);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(15, 63, 115, 0.08);
}

.feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ocean);
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* -- CTA -- */
.cta-section {
  background: linear-gradient(135deg, var(--deep) 0%, #0c2f54 55%, var(--ocean) 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 196, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.cta-section h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 300;
}

.cta-section h2 strong {
  color: var(--gold);
  font-weight: 700;
}

/* -- Kontakt -- */
.contact-section {
  padding: 7rem 0;
  background: var(--foam);
}

.contact-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-info-card {
  background: linear-gradient(135deg, #002244 0%, #004080 100%);
  color: var(--white);
  padding: 3rem;
  height: 100%;
}

.contact-info-card h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-detail .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  border-radius: 8px;
}

.contact-detail .info .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-detail .info .val {
  font-size: 1rem;
  color: var(--white);
}

.contact-detail .info a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail .info a:hover {
  color: var(--gold);
}

.contact-form-wrapper {
  background-color: var(--white);
  transition-delay: .15s;
}

.form-control-custom {
  border: 1px solid rgba(15, 63, 115, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--mist);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: rgba(15, 63, 115, 0.45);
  box-shadow: 0 0 0 4px rgba(43, 142, 184, 0.12);
  background: var(--white);
}

.form-control-custom::placeholder {
  color: var(--placeholder);
}

textarea.form-control-custom {
  resize: vertical;
}

select.form-control-custom {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f3f73' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label-custom {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.btn-submit {
  background: linear-gradient(135deg, var(--ocean), var(--mid));
  color: var(--white);
  border: none;
  padding: 1rem 3rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  width: 100%;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(15, 63, 115, 0.18);
}

.btn-submit:hover {
  transform: translateY(-2px);
  color: var(--white);
  filter: brightness(1.05);
}

.form-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
  display: block;
}

/* Honeypot anti-spam */
.honeypot {
  display: none !important;
  position: absolute;
  left: -9999px;
}

/* -- Footer -- */
footer {
  background: var(--deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 2.5rem 0;
  font-size: 0.82rem;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--light);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand span {
  color: var(--gold);
}

/* -- Animace -- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* -- Responzivita -- */
@media (max-width: 768px) {
  .navbar {
    padding: 0.9rem 0;
    background: rgba(9, 23, 43, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar-brand {
    font-size: 1.2rem;
    max-width: 70%;
  }

  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 6rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1.25rem;
  }

  .stat-item {
    min-width: 80px;
  }

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

  .hero-stats {
    gap: 2rem;
  }

  .about-img-wrap::after {
    display: none;
  }

  .about-badge {
    left: 1rem;
    top: 1rem;
    border-radius: var(--radius-sm);
  }

  .contact-info-card,
  .service-card,
  .about-img-wrap img {
    border-radius: var(--radius-md);
  }

  .btn-gallery-toggle {
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
  }

  .lightbox-nav {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }

  .lightbox-nav-prev {
    left: 10px;
  }

  .lightbox-nav-next {
    right: 10px;
  }

  .btn-close-gallery {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-counter {
    bottom: 20px;
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }

  .modal-body {
    padding: 1rem;
  }

  #lightboxImage {
    max-height: 70vh;
  }

  .contact-section {
    padding: 5rem 0;
  }

  .contact-wrapper {
    border-radius: var(--radius-md);
  }

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

/* Universal fix for horizontal scroll */
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}

* {
  max-width: 100%;
}

.row {
  max-width: none;
}

section,
footer {
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.hero-waves svg {
  max-width: none;
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1rem;
    max-width: 65%;
    letter-spacing: 0.02em;
  }

  .navbar-toggler {
    padding: 0.35rem 0.5rem;
  }

  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero-content {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}