/* --- CSS Variables --- */
:root {
  --bg-dark: #0a0a0a;
  --bg-card: #151515;
  --bg-card-hover: #1e1e1e;
  --text-main: #f0f0f0;
  --text-muted: #a0a0a0;
  --accent-color: #00d2ff;
  --accent-glow: rgba(0, 210, 255, 0.4);
  --silver-accent: #c0c0c0;
  --glass-bg: rgba(20, 20, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: 'Montserrat', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-dark);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

ul {
  list-style: none;
}

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

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

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

/* --- Reusable Components --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0 auto 40px;
  box-shadow: 0 0 10px var(--accent-glow);
}

.underline.left-align {
  margin: 0 0 30px 0;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary {
  background-color: transparent;
  color: #fff;
  border: 1px solid var(--accent-color);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--accent-color);
  z-index: -1;
  transition: var(--transition);
}

.btn-primary:hover::before {
  width: 100%;
}

.btn-primary:hover {
  box-shadow: 0 0 25px var(--accent-glow);
  color: #000;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.loader-logo {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--silver-accent);
  margin-bottom: 20px;
  animation: pulseLight 1.5s infinite alternate;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: loadingBar 1s infinite ease-in-out;
}

@keyframes pulseLight {
  from {
    opacity: 0.5;
    text-shadow: 0 0 0px var(--accent-glow);
  }

  to {
    opacity: 1;
    text-shadow: 0 0 15px var(--accent-glow);
  }
}

@keyframes loadingBar {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* --- Header & Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-glow);
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('assets/img/ChatGPT\ Image\ Apr\ 22\,\ 2026\,\ 10_20_54\ PM.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* kichik ekranda scroll qilinadi */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 16px 0;
  max-width: 100%;
  width: min(100%, 900px);
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.25rem, 10vw, 5rem);
  margin-bottom: 10px;
  letter-spacing: clamp(1px, 0.5vw, 4px);
  color: #fff;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  word-break: break-word;
}

.hero-subtitle {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  color: var(--silver-accent);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: clamp(0.5px, 0.3vw, 2px);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 210, 255, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 210, 255, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: #fff;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- About Section --- */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.glass-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.glass-float-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 0 10px var(--accent-glow);
  line-height: 1;
}

.glass-float-card .text {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-top: 5px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.features-list li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  color: #ddd;
}

.features-list li i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 1.2rem;
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.gallery-overlay span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  backdrop-filter: blur(3px);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
  text-shadow: 0 0 10px var(--accent-color);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent-color);
}

.lightbox-content img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

/* --- Reviews Section --- */
.reviews {
  background-color: #0d0d0d;
}

.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 50px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 0 15px;
}

.review-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
}

.stars {
  color: #f39c12;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.comment {
  font-size: 1.1rem;
  font-style: italic;
  color: #ddd;
  margin-bottom: 25px;
}

.customer-info h4 {
  color: #fff;
  font-size: 1.2rem;
}

.slider-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: #fff;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 10px var(--accent-glow);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-glow);
  transform: scale(1.3);
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-cards {
  display: grid;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.border-glow:hover {
  border-color: rgba(0, 210, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
  transform: translateX(10px);
}

.contact-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  margin-right: 20px;
}

.contact-card .name {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-card .phone {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-5px);
}

.contact-form {
  padding: 40px;
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  text-align: center;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #bbb;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  transition: var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 10px rgba(0, 210, 255, 0.15);
  background: rgba(0, 0, 0, 0.5);
}

.error-text {
  color: #ff4d4d;
  font-size: 0.8rem;
  position: absolute;
  bottom: -20px;
  left: 0;
  display: none;
}

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

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

.form-status {
  min-height: 1.25em;
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-align: center;
}

.form-status.success {
  color: #4ade80;
}

.form-status.error {
  color: #ff4d4d;
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.w-100 {
  width: 100%;
}

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

.map-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.map-frame {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 1px rgba(0, 210, 255, 0.25);
  width: 100%;
  max-width: 100%;
}

.map-iframe {
  display: block;
  width: 100%;
  height: min(55vh, 480px);
  min-height: 320px;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: #050505;
  border-top: 1px solid var(--glass-border);
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.brand-col p {
  color: var(--text-muted);
  margin-top: 15px;
  font-size: 0.9rem;
}

.footer h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.links-col ul li {
  margin-bottom: 10px;
}

.links-col a {
  color: var(--text-muted);
  transition: var(--transition);
}

.links-col a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-col p {
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-col i {
  color: var(--accent-color);
}

.footer-bottom {
  background: #000;
  padding: 20px 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid #111;
}

/* --- Floating Buttons --- */
.floating-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.scroll-top {
  right: 20px;
  bottom: 85px;
  background: var(--bg-card);
  border: 1px solid var(--accent-color);
}

.scroll-top:hover {
  background: var(--accent-color);
  color: #000;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.telegram-btn {
  left: 20px;
  bottom: 20px;
  background: #229ED9;
  opacity: 1;
  visibility: visible;
}

.telegram-btn:hover {
  background: #1b84b5;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(34, 158, 217, 0.55);
  color: #fff;
}

.phone-btn {
  right: 20px;
  bottom: 20px;
  background: var(--accent-color);
  opacity: 1;
  visibility: visible;
  color: #000;
}

.phone-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* --- Animations (Scroll Reveal) --- */
.reveal-text {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.reveal-text.active,
.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

/* --- Responsive --- */
@media (max-width: 900px) {

  .about-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .glass-float-card {
    bottom: 10px;
    right: 10px;
    padding: 15px;
  }

  .hero {
    background-attachment: scroll;
  }

  h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .section-title .underline {
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    text-align: center;
    transition: 0.3s ease;
    padding: 48px 20px 40px;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.45rem;
  }

  .service-card {
    padding: 28px 20px;
  }

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

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form h3 {
    font-size: 1.45rem;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  .contact-card {
    flex-wrap: wrap;
    padding: 16px;
  }

  .contact-card .phone {
    font-size: 1.05rem;
    word-break: break-word;
  }

  .border-glow:hover {
    transform: none;
  }

  .review-card {
    padding: 24px 18px;
  }

  .comment {
    font-size: 1rem;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 32px;
  }

  .map-section {
    padding: 0 0 48px;
  }

  .map-block {
    gap: 18px;
  }

  .map-iframe {
    height: min(36vh, 280px);
    min-height: 200px;
    max-height: 300px;
  }

  .map-open-btn {
    width: 100%;
    max-width: none;
    justify-content: center;
    text-align: center;
    padding: 12px 18px;
    font-size: 0.85rem;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .scroll-top {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .telegram-btn {
    left: 12px;
  }

  .phone-btn {
    right: 12px;
  }
}

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

  .map-section {
    padding: 0 0 40px;
  }

  .map-iframe {
    height: min(30vh, 240px);
    min-height: 180px;
    max-height: 260px;
  }

  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-item img {
    height: 220px;
  }

  .slider-container {
    padding-bottom: 56px;
  }

  .slider-controls {
    gap: 12px;
    flex-wrap: wrap;
  }

  .footer-content {
    gap: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero {
    background-attachment: scroll;
  }

  .slider-wrapper {
    transition: none;
  }

  .gallery-item img {
    transition: none;
  }
}