:root {
  --primary: #8e62a4;
  --primary-light: #c79adf;
  --primary-dark: #6a457a;
  --black: #000000;
  --white: #ffffff;
  --gray-light: #ebebeb;
  --gray-medium: #999999;
  --gray-dark: #666666;
  --text-main: #000000;
  --text-muted: #666666;
  --bg-body: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
  --container-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family:
    "Raleway",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Dancing Script", cursive;
  color: var(--black);
  line-height: 1.2;
  font-weight: 500;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.subtitle {
  font-size: 1.125rem;
  max-width: 700px;
  margin-bottom: 3rem;
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero .container {
  max-width: 1400px;
  padding: 0 40px;
}

@media (max-width: 1366px) {
  .hero .container {
    max-width: 100%;
    padding: 0 30px;
  }
}

@media (max-width: 1200px) {
  .hero .container {
    padding: 0 24px;
  }
}

.section {
  padding: 80px 0;
  position: relative;
}

#sluzby {
  padding-top: 0;
}

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

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-family: "Dancing script", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo span {
  font-family: "VALENTINO", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}

.nav-links .btn {
  padding: 10px 20px;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--black);
  font-size: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-primary {
  background: var(--gray-light);
  color: var(--black);
  border-color: transparent;
  padding: 20px;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* Section */
.hero {
  padding-top: 40px;
  padding-bottom: 100px;
  min-height: 110vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  background: var(--gray-light);
  padding: 3rem;
  border-radius: var(--radius-lg);
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#hero-title {
  font-weight: 500;
  line-height: 1.1;
  word-spacing: 20px;
}

.eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 0;
  flex-wrap: wrap;
}

.hero-actions .btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.hero-actions .btn-secondary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero-image {
  position: relative;
  width: 100%;
  height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
/* About Section */
#o-mne {
  padding-top: 0;
  margin-top: calc(var(--header-height) + 40px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  border: none;
  transition: var(--transition);
}

.about-image::before {
  display: none;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section with Filters */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}

.filter-btn {
  text-decoration: none;
  color: var(--black);
  display: inline-block;
  padding: 10px 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

.service-card p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.service-card > div {
  margin-top: auto;
}

.service-card > div span {
  font-size: 1.1rem !important;
  color: var(--primary) !important;
  font-weight: 700 !important;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.service-note {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.service-note p {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
}

.service-note p strong {
  color: var(--black);
  font-weight: 700;
}

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

.service-note i {
  display: none;
}

/* Service Note Footer */
.service-note-footer {
  padding: 2rem 0;
  text-align: center;
}

.service-note-footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  text-transform: lowercase;
}

/* Pricing Dropdown */
.pricing-dropdown {
  margin-top: 2rem;
  scroll-margin-top: calc(var(--header-height) + 100px);
}

.pricing-toggle {
  width: 100%;
  background: var(--gray-light);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.5rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--black);
}

.pricing-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-toggle i {
  font-size: 1.2rem;
  transition: transform 0.4s ease;
  color: var(--primary);
}

.pricing-toggle.active i {
  transform: rotate(180deg);
}

.pricing-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.5s ease,
    margin-top 0.5s ease;
  opacity: 0;
}

.pricing-content.active {
  max-height: 3000px;
  opacity: 1;
  margin-top: 2rem;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.pricing-close {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1rem 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--black);
}

.pricing-close:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-close i {
  font-size: 1rem;
  color: var(--primary);
}

/* Brands */
.brands-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.brand-badge {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--text-main);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.brand-badge::before {
  display: none;
}

.brand-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Brands Section Background */
.brands-section {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
}

.brands-section::before {
  display: none;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

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

.gallery-item::after {
  display: none;
}

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

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

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: var(--transition);
}

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

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s;
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation: zoomIn 0.3s;
  border-radius: var(--radius-md);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2001;
}

.modal-close:hover {
  color: var(--primary);
  transform: scale(1.2);
}

.modal-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--black);
  border: none;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav button:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

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

@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.price-header h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

.price-list {
  margin-bottom: 2rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  line-height: 1.8;
}

.price-list .item-name {
  font-weight: 400;
  color: var(--text-muted);
}

.price-list .item-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.pricing-footer {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: left;
}

.pricing-validity {
  color: var(--black);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.pricing-validity i {
  display: none;
}

.pricing-note {
  color: var(--text-muted);
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0.75rem 0;
}

.pricing-note i {
  display: none;
  margin-right: 0.5rem;
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  background: rgb(241, 241, 241);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  display: none;
}

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

.contact-icon {
  width: 45px;
  height: 45px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-detail:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}

.contact-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-family: "Raleway", sans-serif;
}

.contact-text a {
  color: var(--text-muted);
}

.contact-text a:hover {
  color: var(--primary);
}

/* Footer */
footer {
  background: var(--white);
  padding: 3.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

footer::before {
  display: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-content a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

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

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
}

.social-link::before {
  display: none;
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.social-link i {
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gray-light);
  color: var(--black);
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
  transform: translateY(-5px);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate]:nth-child(1) {
  transition-delay: 0.1s;
}
[data-animate]:nth-child(2) {
  transition-delay: 0.2s;
}
[data-animate]:nth-child(3) {
  transition-delay: 0.3s;
}
[data-animate]:nth-child(4) {
  transition-delay: 0.4s;
}
[data-animate]:nth-child(5) {
  transition-delay: 0.5s;
}
[data-animate]:nth-child(6) {
  transition-delay: 0.6s;
}

/* Laptop/Notebook Responsive (1024px - 1366px) */
@media (max-width: 1366px) {
  .hero {
    min-height: 100vh;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .hero-content {
    height: 500px;
    padding: 2rem;
  }

  .hero-image {
    height: 500px;
  }

  #hero-title {
    font-size: 2.8rem;
  }

  .about-image {
    max-width: 450px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1.25rem;
  }

  .service-card {
    height: 280px;
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .price-header h3 {
    font-size: 2rem;
  }

  .price-list li {
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .hero-grid {
    gap: 2rem;
  }

  .hero-content {
    height: 420px;
    padding: 1.5rem;
  }

  .hero-image {
    height: 420px;
  }

  #hero-title {
    font-size: 2.4rem;
  }

  .about-grid {
    gap: 2rem;
  }

  .about-image {
    max-width: 380px;
  }

  .about-text p {
    font-size: 1.1rem;
  }

  .service-card {
    height: 260px;
  }

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

/* Mobile Responsive */
@media (max-width: 968px) {
  .hero {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-content {
    background: transparent;
    padding: 2rem 1rem;
    height: auto;
    text-align: left;
  }

  #hero-title {
    font-size: 4rem;
    text-align: center;
  }

  .hero-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

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

  .service-card {
    height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .modal-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    padding: 0.5rem;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-close {
    top: 15px;
    right: 20px;
    font-size: 35px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 8px 16px;
  }

  .hero .container {
    padding: 0 24px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  .hero-image {
    height: 400px;
  }

  .contact-wrapper {
    padding: 1.5rem;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-card {
    padding: 1.5rem;
  }

  .price-card {
    padding: 1.5rem;
  }

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