@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}
html .fade-in {
  animation: fadeInAnimation 1s ease-in;
}
@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

body {
  background-color: #ffffff;
  color: #2d3748;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  border: none;
}
.btn-primary {
  background-color: #d4af37;
  color: #0f2444;
}
.btn-primary:hover {
  background-color: #0f2444;
  color: #d4af37;
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid #0f2444;
  color: #0f2444;
}
.btn-secondary:hover {
  background-color: #0f2444;
  color: #ffffff;
  transform: translateY(-2px);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  padding: 1rem 0;
  display: flex;
  align-items: center;
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.navbar .logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f2444;
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.navbar .logo span {
  color: #d4af37;
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2.5rem;
}
.navbar .nav-menu a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.navbar .nav-menu a:hover {
  color: #d4af37;
}
.navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-shrink: 0;
}

.custom-lang-selector {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-lang-selector .lang-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  background: #f7fafc;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  font-weight: 700;
  font-size: 0.85rem;
  color: #0f2444;
}
.custom-lang-selector .lang-selected img {
  border-radius: 2px;
}
.custom-lang-selector .lang-selected i {
  font-size: 0.75rem;
  color: #d4af37;
}
.custom-lang-selector .lang-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1010;
  width: 90px;
}
.custom-lang-selector .lang-dropdown.show {
  display: flex;
}
.custom-lang-selector .lang-dropdown .lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.custom-lang-selector .lang-dropdown .lang-option:hover {
  background: #f7fafc;
  color: #d4af37;
}
.custom-lang-selector .lang-dropdown .lang-option img {
  border-radius: 2px;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.burger-btn .line {
  width: 18px;
  height: 2px;
  background-color: #0f2444;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.burger-btn.active {
  background: #f7fafc;
  border-color: #d4af37;
}
.burger-btn.active .line {
  background-color: #0f2444;
}
.burger-btn.active .line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger-btn.active .line:nth-child(2) {
  opacity: 0;
}
.burger-btn.active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
  height: 100vh;
  background-image: linear-gradient(rgba(10, 25, 47, 0.55), rgba(10, 25, 47, 0.55)), url("../img/Krk_krk.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.hero-section .hero-content {
  max-width: 850px;
  padding: 0 1.5rem;
}
.hero-section .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.hero-section .hero-content p {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.apartments-section {
  padding: 7rem 0;
  background-color: #f7fafc;
}
.apartments-section .section-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  color: #0f2444;
  margin-bottom: 4rem;
}
.apartments-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d4af37;
  margin: 12px auto 0;
}
.apartments-section .apartments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}
.apartments-section .apartment-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
  transition: transform 0.3s ease;
}
.apartments-section .apartment-card:hover {
  transform: translateY(-8px);
}
.apartments-section .apartment-card .card-img {
  position: relative;
  height: 270px;
}
.apartments-section .apartment-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.apartments-section .apartment-card .card-img .badge-recommended {
  position: absolute;
  top: 0;
  left: 20px;
  background: linear-gradient(135deg, #0f2444 0%, #0f2444 100%);
  color: #d4af37;
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  padding: 0.7rem 0.9rem 1rem 0.9rem;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 83%, 0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-top: none;
}
.apartments-section .apartment-card .card-img .badge-recommended::before {
  content: "★";
  font-size: 0.75rem;
  color: #d4af37;
}
.apartments-section .apartment-card .card-body {
  padding: 2rem;
}
.apartments-section .apartment-card .card-body h3 {
  font-size: 1.5rem;
  color: #0f2444;
  margin-bottom: 0.6rem;
}
.apartments-section .apartment-card .card-body .capacity {
  color: #718096;
  margin-bottom: 1.8rem;
  font-weight: 500;
}
.apartments-section .apartment-card .card-body .capacity i {
  color: #d4af37;
  margin-right: 6px;
}
.apartments-section .apartment-card .card-body .btn {
  width: 100%;
  background-color: rgba(30, 58, 103, 0.08) !important;
  color: #1e3a67 !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.5rem;
  border: 1px solid rgba(30, 58, 103, 0.15) !important;
  border-radius: 10px;
  transition: all 0.25s ease;
  text-transform: none;
}
.apartments-section .apartment-card .card-body .btn:hover {
  background-color: rgba(30, 58, 103, 0.95) !important;
  color: #ffffff !important;
  border-color: #1e3a67 !important;
  box-shadow: 0 6px 16px rgba(30, 58, 103, 0.15);
  transform: translateY(-1px);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 36, 68, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal.active .modal-content {
  transform: scale(1);
}
.modal .modal-content {
  background: #ffffff;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 95vh;
  overflow-y: auto;
  padding: 3rem 2.5rem 2.5rem 2.5rem;
}
.modal .modal-content.large-modal {
  max-width: 900px;
  width: 100%;
}
.modal .modal-content.contact-modal {
  max-width: 480px;
  width: 100%;
  padding: 3.5rem 2.5rem 2.5rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.5);
}
.modal .modal-content.contact-modal h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f2444;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.modal .modal-content.contact-modal p {
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
.modal .modal-content.contact-modal .contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.modal .modal-content.contact-modal .contact-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  padding: 1rem 1.5rem;
  color: #ffffff;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal .modal-content.contact-modal .contact-link i {
  font-size: 1.4rem;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal .modal-content.contact-modal .contact-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  filter: brightness(1.08);
}
.modal .modal-content.contact-modal .contact-link.phone {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}
.modal .modal-content.contact-modal .contact-link.sms {
  background: linear-gradient(135deg, #17a2b8 0%, #117a8b 100%);
}
.modal .modal-content.contact-modal .contact-link.whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1e7e34 100%);
}
.modal .modal-content.contact-modal .contact-link.viber {
  background: linear-gradient(135deg, #7360F2 0%, #5b4cb8 100%);
}
.modal .modal-content.contact-modal .contact-link.email {
  background: linear-gradient(135deg, #3a506b 0%, #1c2541 100%);
}
.modal .modal-content .close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px;
  height: 38px;
  background: #f7fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  color: #0f2444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1200;
}
.modal .modal-content .close-modal:hover {
  background: #0f2444;
  color: #ffffff;
  transform: scale(1.05);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
}

.modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-gallery .main-img-container {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}
.modal-gallery .main-img-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.modal-gallery .main-img-container::after {
  content: "Open Image";
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(15, 36, 68, 0.75);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  opacity: 0.85;
  transition: all 0.3s ease;
  pointer-events: none;
}
.modal-gallery .main-img-container:hover img {
  transform: scale(1.03);
}
.modal-gallery .main-img-container:hover::after {
  opacity: 1;
  background: #d4af37;
  color: #0f2444;
}
.modal-gallery .thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.modal-gallery .thumb-grid .thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}
.modal-gallery .thumb-grid .thumb.active {
  border-color: #d4af37;
  filter: brightness(0.95);
}

.modal-info-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.5rem;
}
.modal-info-side h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #0f2444;
  line-height: 1.2;
}
.modal-info-side .modal-meta {
  background: #f7fafc;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.modal-info-side .modal-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-info-side .modal-meta .meta-item i {
  font-size: 1.4rem;
  color: #d4af37;
}
.modal-info-side .modal-meta .meta-item .meta-label {
  display: block;
  font-size: 0.75rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-info-side .modal-meta .meta-item strong {
  font-size: 1.1rem;
  color: #0f2444;
}
.modal-info-side .services-wrapper h4 {
  font-size: 1.1rem;
  color: #0f2444;
  margin-bottom: 1rem;
  border-left: 3px solid #d4af37;
  padding-left: 10px;
  font-weight: 700;
}
.modal-info-side .vector-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.modal-info-side .vector-services-grid .service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f7fafc;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  border: 1px solid rgba(226, 232, 240, 0.5);
}
.modal-info-side .vector-services-grid .service-item i {
  font-size: 1.1rem;
  color: #0f2444;
  width: 20px;
  text-align: center;
}
.modal-info-side #goToBookBtn {
  width: 100%;
  margin-top: auto;
  padding: 1rem;
}

.footer {
  background-color: #0f2444;
  color: #ffffff;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(226, 232, 240, 0.1);
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer .footer-info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.footer .footer-info h3 span {
  color: #d4af37;
}
.footer .footer-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}
.footer .footer-info p i {
  color: #d4af37;
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}
.footer .footer-info p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .footer-info p a:hover {
  color: #d4af37;
}
.footer .footer-info .footer-social-chats {
  display: flex;
  gap: 20px;
  margin-top: 1rem;
}
.footer .footer-info .footer-social-chats .chat-icon {
  font-size: 1.7rem;
  color: #d4af37;
  text-decoration: none !important;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-info .footer-social-chats .chat-icon:hover {
  transform: scale(1.18);
  opacity: 0.85;
  text-decoration: none !important;
}
.footer .footer-info .footer-social-chats .chat-icon i {
  text-decoration: none !important;
}
.footer .footer-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 250px;
}
.footer .footer-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.footer .footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}
.footer .footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer .footer-bottom span {
  font-size: 0.7rem;
}
.footer .footer-bottom .designer-link {
  color: #d4af37;
  text-decoration: none !important;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.footer .footer-bottom .designer-link:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  font-size: 30px;
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 5px;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Media Queries --- */
@media (max-width: 992px) {
  .modal-content.large-modal {
    padding: 3.5rem 1.5rem 2rem 1.5rem;
  }
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .modal-gallery .main-img-container {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
  }
  .navbar .logo {
    font-size: 1.2rem;
    z-index: 1200;
  }
  .navbar .burger-btn {
    display: flex;
    margin-left: auto;
    z-index: 1200;
  }
  .navbar .nav-menu {
    position: fixed !important;
    top: -100vh !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 40vh !important;
    background-color: #ffffff !important;
    box-shadow: 0 15px 30px rgba(10, 25, 47, 0.08) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
    transition: top 0.4s cubic-bezier(0.1, 1, 0.1, 1) !important;
  }
  .navbar .nav-menu.active {
    top: 0 !important;
  }
  .navbar .nav-menu a {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 70px !important;
    font-size: 1.3rem;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 2px solid rgba(10, 25, 47, 0.1);
  }
  .navbar .nav-menu a:first-child {
    border-top: 2px solid rgba(10, 25, 47, 0.1);
  }
  .hero-section .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-section .hero-content p {
    font-size: 1.2rem;
  }
}
@media (max-width: 576px) {
  .navbar .nav-menu {
    height: auto !important;
    padding-top: 4rem !important;
  }
  .navbar .nav-menu a {
    font-size: 1.2rem;
    height: 60px !important;
  }
  .modal {
    padding: 0.5rem;
  }
  .modal-content.large-modal {
    padding: 3.5rem 1rem 1rem 1rem;
    border-radius: 20px;
    max-height: 96vh;
    position: relative;
  }
  .modal-gallery {
    gap: 6px;
  }
  .modal-gallery .main-img-container {
    height: 220px;
    border-radius: 12px;
  }
  .modal-gallery .thumb-grid {
    gap: 5px;
  }
  .modal-gallery .thumb-grid .thumb {
    aspect-ratio: 4/3;
    border-radius: 6px;
    transform: scale(0.9);
  }
  .modal-content .close-modal {
    top: 15px !important;
    right: 15px !important;
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, 0.05);
  }
  .footer {
    padding: 3rem 1rem 1.5rem 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  .footer .footer-grid {
    gap: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-info {
    align-items: center;
  }
  .footer .footer-info p {
    justify-content: center;
  }
  .footer .footer-map {
    height: 200px;
    width: 100%;
    max-width: 400px;
  }
  .footer .footer-bottom {
    margin-top: 2rem;
    font-size: 0.8rem;
  }
  .modal-info-side {
    gap: 0.8rem;
  }
  .modal-info-side h3 {
    font-size: 1.4rem;
  }
  .modal-info-side .vector-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .modal-info-side .vector-services-grid .service-item {
    padding: 6px;
    font-size: 0.75rem;
  }
  .modal-info-side #goToBookBtn {
    margin-top: 0.5rem;
    padding: 0.8rem;
  }
}
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */