:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-light: #ff6b6b;
  --gold: #f4d160;
  --light: #edf6f9;
  --white: #ffffff;
  --gray: #6c757d;
  --dark-gray: #2d3436;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  background-color: var(--light);
  color: var(--dark-gray);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar {
  background: var(--primary);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo img {
  height: 55px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.navbar-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--accent);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navbar-phone:hover {
  color: var(--gold);
}

.navbar-phone i {
  font-size: 20px;
  color: var(--gold);
}

.navbar-whatsapp-group {
  display: flex;
  gap: 15px;
}

.navbar-whatsapp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 25px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-whatsapp-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.navbar-whatsapp-item svg {
  width: 18px;
  height: 18px;
  fill: white;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(320px, 72vw);
  height: 100vh;
  background: var(--primary);
  z-index: 1000;
  transition: left 0.4s ease;
  padding: 88px 20px 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.mobile-menu-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  width: 100%;
}

.mobile-call-btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.mobile-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.12);
}

.mobile-whatsapp-btn {
  background: transparent;
  border: 2px solid #25d366;
  color: var(--white);
}

.mobile-whatsapp-btn:hover {
  background: #25d366;
}

.mobile-whatsapp-btn svg {
  width: 18px;
  height: 18px;
  fill: #25d366;
  transition: fill 0.3s ease;
  flex-shrink: 0;
}

.mobile-whatsapp-btn:hover svg {
  fill: var(--white);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 85px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://lirp.cdn-website.com/1b8b4ac3/dms3rep/multi/opt/slide-2304w.jpg")
    center/cover;
  opacity: 0.15;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  color: var(--white);
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 25px;
  max-width: 760px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title span {
  color: var(--gold);
}

.hero-description {
  font-size: 19px;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 35px;
  max-width: 640px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.hero-image {
  position: relative;
  min-width: 0;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent);
  border-radius: 20px;
  z-index: -1;
}

.hero-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 5px;
}

.about {
  padding: 120px 30px;
  background: var(--white);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.about .section-subtitle {
  color: #505d6f;
  max-width: 760px;
  font-weight: 600;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.3;
}

.about-text {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.about-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 22px;
}

.about-text p {
  color: #4f5d75;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 500;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 700;
  color: var(--primary);
  font-size: 20px;
}

.services {
  padding: 120px 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
}

.services .section-label,
.services .section-title,
.services .section-subtitle {
  color: var(--white);
}

.services .section-subtitle {
  opacity: 0.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 42px 32px;
  transition: all 0.4s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-card ul {
  list-style: none;
}

.service-card ul li {
  color: rgba(255, 255, 255, 0.84);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}

.service-card ul li:last-child {
  border-bottom: none;
}

.service-card ul li::before {
  content: "✓";
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}

.gallery {
  padding: 120px 30px;
  background: var(--light);
}

.gallery .section-subtitle {
  font-size: 20px;
  color: #4b5563;
  max-width: 760px;
  font-weight: 600;
}

.gallery-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.gallery-track-container {
  overflow: hidden;
  border-radius: 15px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-slide {
  min-width: calc((100% - 40px) / 3);
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.gallery-slide:hover::before {
  opacity: 1;
}

.gallery-slide:hover img {
  transform: scale(1.1);
}

.gallery-slide-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: var(--white);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-slide:hover .gallery-slide-content {
  transform: translateY(0);
  opacity: 1;
}

.gallery-slide-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.gallery-slide-content p {
  font-size: 14px;
  opacity: 0.9;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.gallery-btn:hover {
  background: var(--accent-light);
  transform: translateY(-50%) scale(1.1);
}

.gallery-btn-prev {
  left: 0;
}

.gallery-btn-next {
  right: 0;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.contact {
  padding: 120px 30px;
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 60px;
}

.contact-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  height: 500px;
}

#map {
  width: 100%;
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-info {
  padding: 20px 0;
}

.contact-info-title {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 22px;
  color: var(--white);
}

.contact-info-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-info-content p,
.contact-info-content a {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

.contact-info-content a:hover {
  color: var(--accent);
}

.hours-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px 20px;
}

.hours-grid .day {
  color: var(--gray);
  font-size: 14px;
  font-weight: 600;
}

.hours-grid .time {
  color: var(--gray);
  font-size: 14px;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-social a {
  width: 55px;
  height: 55px;
  background: var(--light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 22px;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-social a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-social a:focus {
  outline: none;
}

.contact-social a.facebook:hover {
  background: #1877f2;
  color: var(--white);
}

.contact-social a.whatsapp:hover {
  background: #25d366;
  color: var(--white);
}

.contact-social a.email:hover {
  background: var(--accent);
  color: var(--white);
}

.footer {
  background: #2d3436;
  padding: 60px 30px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-column {
  color: var(--white);
}

.footer-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-description {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact-list i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 50px;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom-right h5 {
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 45px;
  height: 30px;
  background: var(--white);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.payment-icon svg {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 1280px) {
  .navbar-container {
    padding: 0 24px;
    gap: 18px;
  }

  .navbar-menu {
    gap: 28px;
  }

  .navbar-menu a {
    font-size: 15px;
  }

  .navbar-contact {
    gap: 14px;
  }

  .navbar-phone {
    font-size: 15px;
  }

  .navbar-whatsapp-group {
    gap: 10px;
  }

  .navbar-whatsapp-item {
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero-container {
    gap: 40px;
  }

  .services-grid {
    gap: 28px;
  }
}

@media (max-width: 1100px) {
  .navbar-menu,
  .navbar-contact {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-container {
    min-height: 68px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 90px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 34px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-title,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 36px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    height: 380px;
    order: 2;
  }

  .contact-info {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero-container,
  .about,
  .services,
  .gallery,
  .contact,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 4.2vw, 2.6rem);
    line-height: 1.14;
  }

  .hero-description {
    font-size: 17px;
    line-height: 1.7;
  }

  .btn {
    padding: 15px 28px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .service-card {
    padding: 32px 24px;
  }

  .service-card h3 {
    font-size: 21px;
  }

  .gallery-carousel {
    padding: 0 50px;
  }

  .gallery-slide {
    min-width: calc((100% - 20px) / 2);
  }

  .gallery-slide img {
    height: 340px;
  }

  .contact-info-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 0 80px;
  }

  .hero-container,
  .about,
  .services,
  .gallery,
  .contact,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-buttons {
    gap: 14px;
  }

  .hero-stats {
    gap: 26px;
  }

  .stat-number {
    font-size: 2.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-carousel {
    padding: 0 44px;
  }

  .gallery-slide {
    min-width: 100%;
  }

  .gallery-slide img {
    height: 320px;
  }

  .gallery-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-info-title {
    font-size: 26px;
    text-align: center;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    align-items: center;
  }

  .contact-info-icon {
    margin: 0 auto;
  }

  .contact-info-content {
    text-align: center;
  }

  .contact-info-content h4,
  .contact-info-content p,
  .contact-info-content a {
    text-align: center;
    display: block;
  }

  .hours-grid {
    justify-content: center;
    text-align: center;
  }

  .contact-social {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact-list li {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .mobile-menu {
    width: min(340px, 86vw);
    padding: 90px 20px 24px;
  }

  .hero-title {
    font-size: 1.9rem;
    letter-spacing: 0.6px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-item {
    min-width: 120px;
  }

  .section-label {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .gallery-carousel {
    padding: 0 36px;
  }

  .gallery-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0 18px;
  }

  .navbar-logo img {
    height: 42px;
  }

  .mobile-menu {
    width: min(290px, 76vw);
    padding: 84px 18px 20px;
  }

  .mobile-contact-btn {
    min-height: 42px;
    font-size: 0;
    padding: 10px 12px;
    gap: 8px;
  }

  .mobile-call-btn span,
  .mobile-whatsapp-btn span {
    font-size: 13px;
  }

  .mobile-whatsapp-btn span {
    font-size: 0;
  }

  .mobile-whatsapp-btn::after {
    content: "993-317-9999";
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
  }

  .mobile-whatsapp-btn:last-child::after {
    content: "993-166-7666";
  }

  .hero {
    padding: 100px 0 70px;
  }

  .hero-container,
  .about,
  .services,
  .gallery,
  .contact,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .about-text h3 {
    font-size: 26px;
  }

  .feature-item span {
    font-size: 18px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-card ul li {
    font-size: 15px;
  }

  .gallery-slide img {
    height: 280px;
  }

  .gallery-slide-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .gallery-slide-content h4 {
    font-size: 17px;
  }

  .contact-info-title {
    font-size: 24px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .mobile-menu {
    width: min(270px, 78vw);
    padding: 80px 16px 18px;
  }

  .mobile-menu-links a {
    font-size: 14px;
    padding: 12px 0;
  }

  .mobile-contact-btn {
    min-height: 40px;
    padding: 9px 10px;
  }

  .mobile-call-btn span,
  .mobile-whatsapp-btn::after {
    font-size: 12px;
  }
}