* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

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

a {
  text-decoration: none;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav span {
  color: white;
  font-size: 14px;
}

.login,
.add-business {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.2s;
}

.login {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.add-business {
  background: white;
  color: black;
  font-weight: bold;
}

.login:active,
.add-business:active {
  transform: scale(0.96);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: url("images/salon-start.jpeg") center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
}

.hero-title {
  margin: 0;
  text-align: center;
}

.typing {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 22ch;
  max-width: 0;
  border-right: 3px solid white;
  animation: typing 3s steps(22, end) forwards, blink 0.7s step-end infinite;
}

@keyframes typing {
  from { max-width: 0; }
  to { max-width: 22ch; }
}

@keyframes blink {
  50% { border-color: transparent; }
}


/* SEARCH */
.search-box {
  margin: 20px auto 0;
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  width: 100%;
  max-width: 400px;
}

.search-box input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  min-width: 0;
}

/* CONTENT */
.content-section {
  background: #f3f4f6;
  margin-top: -80px;
  border-radius: 30px 30px 0 0;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.content-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.gallery img {
  width: calc(33.333% - 14px);
  border-radius: 15px;
  object-fit: cover;
}

.videos {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.videos video {
  width: calc(50% - 10px);
  border-radius: 15px;
}

.reviews {
  display: flex;
  gap: 20px;
}

.review {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 15px;
  flex: 1;
}

.review p {
  margin-bottom: 10px;
}

.review span {
  font-size: 14px;
  color: #666;
}

/* FOOTER */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  color: #bbb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #00bcd4;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #888;
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 12px;
    padding: 15px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .nav span {
    width: 100%;
    text-align: center;
  }

  .login,
  .add-business {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 0 16px;
  }

  .hero-content {
    width: 100%;
  }

  .typing {
  font-size: 22px;
  width: 22ch;
}
  .search-box {
    width: 100%;
    padding: 10px 15px;
  }

  .search-box input {
    font-size: 14px;
  }

  .content-section {
    margin-top: -30px;
    padding: 30px 16px;
  }

  .content-section h2 {
    font-size: 20px;
  }

  .gallery,
  .videos,
  .reviews,
  .footer-container {
    flex-direction: column;
  }

  .gallery img,
  .videos video {
    width: 100%;
  }

  .review {
    font-size: 14px;
  }

  .footer-container {
    text-align: center;
    gap: 25px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.welcome-text {
  color: white;
  font-size: 14px;
}

.login,
.add-business {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.login {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.add-business {
  background: white;
  color: black;
  font-weight: bold;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .welcome-text {
    width: 100%;
    text-align: center;
  }

  .login,
  .add-business {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.results {
  margin-top: 20px;
  width: 100%;
  max-width: 700px;
  text-align: left;
}

.result-card {
  background: white;
  color: #111827;
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-button {
  border: none;
  background: #111827;
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
  flex-shrink: 0;
}

.search-box-double {
  max-width: 900px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 24px;
}

.search-box-double input {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.results-page-body {
  background: #f3f4f6;
  min-height: 100vh;
}

.header-solid {
  position: sticky;
  background: #111827;
  padding-top: 18px;
  padding-bottom: 18px;
}

.results-page {
  padding: 40px 20px;
}

.results-container {
  max-width: 1100px;
  margin: 0 auto;
}

.results-container h1 {
  margin: 0 0 24px;
  color: #111827;
}

.search-box-page {
  margin: 0 0 30px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.results-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 20px;
}

.business-result-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #111827;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.business-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.business-result-card img,
.business-details-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.result-image-placeholder {
  width: 100%;
  height: 260px;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.business-result-content {
  padding: 20px;
}

.business-result-content h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.business-result-content p {
  margin: 0 0 10px;
  color: #374151;
}

.business-short-desc {
  line-height: 1.5;
  margin-top: 14px;
}

.business-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #111827;
}

.no-results {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  color: #6b7280;
}

.back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #111827;
  font-weight: bold;
}

.business-details-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.business-details-content {
  padding: 28px;
}

.business-details-content h1 {
  margin-top: 0;
  margin-bottom: 18px;
}

.business-details-content p {
  color: #374151;
  margin-bottom: 12px;
}

.business-full-description p {
  margin-top: 10px;
  line-height: 1.7;
}

.business-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.business-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.business-social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.08);
}

.business-social-link.instagram:hover {
  border-color: rgba(214, 41, 118, 0.35);
}

.business-social-link.facebook:hover {
  border-color: rgba(24, 119, 242, 0.35);
}

.business-social-link .social-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.business-social-link .social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.optional-label {
  color: #6b7280;
  font-size: 0.9em;
  font-weight: 500;
}


@media (max-width: 768px) {
  .search-box-double {
    flex-direction: column;
    align-items: stretch;
  }

  .search-box-double input,
  .search-button {
    width: 100%;
    margin-left: 0;
  }

  .results-list {
    grid-template-columns: 1fr;
  }

  .business-result-card img,
  .business-details-image,
  .result-image-placeholder {
    height: 220px;
  }
}

.services-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.service-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 18px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: #111827;
}

.service-card p {
  margin: 0 0 8px;
  color: #374151;
}


.homepage-business-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #111827;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.homepage-business-card img,
.homepage-image-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.homepage-image-placeholder {
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.homepage-business-content {
  padding: 18px;
}

.homepage-business-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.homepage-business-content p {
  margin: 0 0 8px;
  color: #374151;
}

.homepage-business-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #111827;
}


.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-button {
    background: #16a085;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
}

.homepage-row {
  margin-bottom: 24px;
}

.homepage-businesses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.homepage-businesses::-webkit-scrollbar {
  display: none;
}

.homepage-business-card {
  display: block;
  width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #111827;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.homepage-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.homepage-business-card img,
.homepage-image-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.homepage-image-placeholder {
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.homepage-business-content {
  padding: 18px;
}

.homepage-business-content h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.homepage-business-content p {
  margin: 0 0 8px;
  color: #374151;
}

.homepage-business-link {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #111827;
}

@media (max-width: 992px) {
  .homepage-businesses {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .homepage-row {
    margin-bottom: 18px;
  }

  .homepage-businesses {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 4px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .homepage-businesses::-webkit-scrollbar {
    display: none;
  }

  .homepage-business-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .homepage-business-card img,
  .homepage-image-placeholder {
    height: 200px;
  }

  .homepage-business-content h3 {
    font-size: 18px;
  }
}

.business-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.business-title-row h1 {
  margin: 0;
}

.business-rating-summary,
.reviews-summary-box,
.card-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fdba74;
  font-weight: 700;
}

.business-rating-summary small,
.reviews-summary-box small {
  display: block;
  color: #9a3412;
  font-weight: 500;
}

.business-rating-summary.empty,
.reviews-summary-box.empty,
.card-rating-badge.empty {
  background: #f9fafb;
  color: #6b7280;
  border-color: #e5e7eb;
}

.rating-star {
  font-size: 18px;
  line-height: 1;
}

.business-result-content,
.homepage-business-content {
  position: relative;
}

.card-rating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 12px;
  font-size: 14px;
  z-index: 2;
}

.business-result-content h2,
.homepage-business-content h3 {
  padding-right: 92px;
}

.reviews-section {
  margin-top: 34px;
  padding-top: 6px;
}

.reviews-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.reviews-section-header h2 {
  margin: 0 0 8px;
}

.reviews-section-header p {
  margin: 0;
  color: #6b7280;
}

.review-form {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 22px;
}

.review-form-row {
  display: grid;
  grid-template-columns: 220px;
  gap: 16px;
  margin-bottom: 16px;
}

.review-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-field label {
  font-weight: 700;
  color: #111827;
}

.review-field select,
.review-field textarea {
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
  font-family: Arial, sans-serif;
  background: #fff;
}

.review-field textarea {
  resize: vertical;
  min-height: 120px;
}

.review-submit-button {
  border: none;
  cursor: pointer;
}

.review-login-box,
.review-message,
.reviews-empty {
  padding: 14px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.review-login-box,
.reviews-empty {
  background: #f9fafb;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.review-message.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.review-message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.reviews-list-display {
  display: grid;
  gap: 14px;
}

.review-card-display {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.review-card-top strong {
  color: #111827;
}

.review-rating {
  color: #f59e0b;
  font-weight: 700;
}

.review-card-display p {
  margin: 0 0 10px;
  line-height: 1.6;
  color: #374151;
}

.review-card-display small {
  color: #6b7280;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.reviews-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.reviews-pagination-link,
.reviews-pagination-current {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.reviews-pagination-link {
  color: #374151;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.reviews-pagination-link:hover {
  color: #111827;
  border-color: #111827;
  transform: translateY(-1px);
}

.reviews-pagination-current {
  color: #fff;
  background: #111827;
  border: 1px solid #111827;
}

@media (max-width: 768px) {
  .business-title-row {
    flex-direction: column;
  }

  .card-rating-badge {
    position: static;
    margin-bottom: 12px;
  }

  .business-result-content h2,
  .homepage-business-content h3 {
    padding-right: 0;
  }

  .review-form-row {
    grid-template-columns: 1fr;
  }
}


.login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 999;
}

.login-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 460px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 28px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  display: none;
  z-index: 1000;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
}

.login-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.login-modal-close:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.login-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.login-modal-header h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.05;
  color: #0f172a;
  font-weight: 800;
}

.login-modal-header p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

.login-modal-form {
  display: flex;
  flex-direction: column;
}

.login-modal-form label {
  margin-bottom: 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

.login-modal-form input[type="email"],
.login-modal-form input[type="password"] {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 16px;
  font-size: 17px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 18px;
}

.login-modal-form input[type="email"]:focus,
.login-modal-form input[type="password"]:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}

.login-modal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 2px 0 22px;
  flex-wrap: wrap;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
}

.login-remember input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.login-forgot {
  color: #111827;
  font-weight: 700;
  font-size: 15px;
}

.login-forgot:hover {
  text-decoration: underline;
}

.login-modal-submit {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 16px 20px;
  background: #0f172a;
  color: white;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
}

.login-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28);
}

.login-modal-submit:active {
  transform: scale(0.99);
}

.login-modal-footer {
  margin: 22px 0 0;
  text-align: center;
  color: #6b7280;
  font-size: 16px;
}

.login-modal-footer a {
  color: #111827;
  font-weight: 800;
  text-decoration: none;
}

.login-modal-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .login-modal {
    padding: 28px 18px 22px;
    border-radius: 24px;
  }

  .login-modal-header h2 {
    font-size: 32px;
  }

  .login-modal-header p {
    font-size: 15px;
  }

  .login-modal-form input[type="email"],
  .login-modal-form input[type="password"] {
    font-size: 16px;
    padding: 14px 16px;
  }

  .login-modal-submit {
    font-size: 16px;
    padding: 15px 18px;
  }

  .login-modal-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

.register-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 999;
}

.register-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 460px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 28px;
  padding: 34px 28px 26px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  display: none;
  z-index: 1000;
}

.register-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.register-modal-close:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

.register-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.register-modal-header h2 {
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.05;
  color: #0f172a;
  font-weight: 800;
}

.register-modal-header p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

.register-modal-form {
  display: flex;
  flex-direction: column;
}

.register-modal-form label {
  margin-bottom: 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
}

.register-modal-form input[type="text"],
.register-modal-form input[type="email"],
.register-modal-form input[type="password"] {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #d1d5db;
  border-radius: 16px;
  font-size: 17px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 18px;
}

.register-modal-form input[type="text"]:focus,
.register-modal-form input[type="email"]:focus,
.register-modal-form input[type="password"]:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.08);
}


.register-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: -3px 0 16px;
  color: #6b7280;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.register-modal-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: #0f172a;
}

.register-modal-consent span {
  display: block;
}

.register-modal-consent a {
  color: #111827;
  font-weight: 700;
  text-decoration: underline;
}

.register-modal-consent a:hover {
  color: #000000;
}

.register-modal-submit {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 16px 20px;
  background: #0f172a;
  color: white;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.24);
  margin-top: 4px;
}

.register-modal-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.28);
}

.register-modal-submit:active {
  transform: scale(0.99);
}

.register-modal-footer {
  margin: 22px 0 0;
  text-align: center;
  color: #6b7280;
  font-size: 16px;
}

.register-modal-footer a {
  color: #111827;
  font-weight: 800;
  text-decoration: none;
}

.register-modal-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .register-modal {
    padding: 28px 18px 22px;
    border-radius: 24px;
  }

  .register-modal-header h2 {
    font-size: 32px;
  }

  .register-modal-header p {
    font-size: 15px;
  }

  .register-modal-form input[type="text"],
  .register-modal-form input[type="email"],
  .register-modal-form input[type="password"] {
    font-size: 16px;
    padding: 14px 16px;
  }

  .register-modal-submit {
    font-size: 16px;
    padding: 15px 18px;
  }
}

.autocomplete {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.autocomplete input {
  width: 100%;
}

.suggestions-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  z-index: 999;
  display: none;
  overflow: hidden;
}

.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
  color: #111827;
  background: #fff;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: #f8fafc;
}

.suggestion-main {
  font-weight: 600;
}

.suggestion-sub {
  color: #6b7280;
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .autocomplete {
    width: 100%;
    min-width: 0;
  }
}
/* =========================
   FOR BUSINESS PAGE
========================= */

.for-business-body {
  background: #0b1220;
  color: #111827;
}

.for-business-header {
  position: absolute;
  background: transparent;
}

.for-business-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.14), transparent 24%),
    linear-gradient(135deg, #090f1c 0%, #0f172a 55%, #111827 100%);
  overflow: hidden;
}

.for-business-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(9, 15, 28, 0.18), rgba(9, 15, 28, 0.32));
  pointer-events: none;
}

.for-business-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: center;
}

.for-business-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.for-business-hero-content h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 720px;
}

.for-business-hero-content p {
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
  max-width: 620px;
}

.for-business-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.for-business-primary,
.for-business-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.2s ease;
}

.for-business-primary {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.for-business-primary:hover {
  transform: translateY(-1px);
}

.for-business-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.22);
}

.for-business-secondary:hover {
  background: rgba(255,255,255,0.06);
}

.for-business-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.for-business-hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.for-business-hero-card {
  display: flex;
  justify-content: center;
}

.hero-panel-window {
  width: 100%;
  max-width: 520px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.hero-panel-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.hero-panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d1d5db;
}

.hero-panel-body {
  display: grid;
  grid-template-columns: 74px 1fr;
  min-height: 460px;
}

.hero-panel-sidebar {
  background: #0f172a;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-panel-sidebar-item {
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
}

.hero-panel-sidebar-item.active {
  background: #ffffff;
}

.hero-panel-main {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-panel-toolbar {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-panel-pill {
  height: 38px;
  width: 88px;
  border-radius: 12px;
  background: #e5e7eb;
}

.hero-panel-pill.large {
  width: 156px;
}

.hero-panel-calendar {
  display: grid;
  gap: 14px;
}

.hero-appointment {
  border-radius: 18px;
  padding: 16px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.hero-appointment strong {
  font-size: 18px;
  color: #111827;
}

.hero-appointment span {
  color: #374151;
  line-height: 1.4;
}

.hero-appointment.mint {
  background: #ccfbf1;
}

.hero-appointment.peach {
  background: #ffedd5;
}

.hero-appointment.blue {
  background: #dbeafe;
}

.hero-panel-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.hero-stat-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 16px;
}

.hero-stat-box strong {
  display: block;
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 6px;
}

.hero-stat-box span {
  color: #6b7280;
  font-size: 14px;
}

.for-business-section {
  padding: 92px 20px;
}

.for-business-section-light {
  background: #f8fafc;
}

.for-business-section-dark {
  background: #0f172a;
}

.for-business-section-soft {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  color: #0f172a;
}

.section-heading p {
  margin: 0;
  color: #64748b;
  font-size: 17px;
  line-height: 1.75;
}

.section-heading-dark span {
  color: #93c5fd;
}

.section-heading-dark h2 {
  color: #ffffff;
}

.section-heading-dark p {
  color: #cbd5e1;
}

.for-business-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.for-business-benefit-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.for-business-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  font-size: 24px;
  margin-bottom: 18px;
}

.for-business-benefit-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #0f172a;
}

.for-business-benefit-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.for-business-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.for-business-feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.for-business-feature-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
}

.for-business-feature-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.for-business-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.split-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #2563eb;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.for-business-split-content h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  color: #0f172a;
  line-height: 1.08;
}

.for-business-split-content p {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
  font-size: 17px;
  max-width: 520px;
}

.for-business-steps {
  display: grid;
  gap: 18px;
}

.for-business-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.step-number {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
}

.for-business-step h3 {
  margin: 4px 0 10px;
  font-size: 22px;
  color: #0f172a;
}

.for-business-step p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.for-business-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.for-business-highlight-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.08);
}

.for-business-highlight-card strong {
  display: block;
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 22px;
}

.for-business-highlight-card p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.for-business-cta {
  background: #0b1220;
  padding: 0 20px 92px;
}

.for-business-cta-box {
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.for-business-cta-box span {
  display: inline-block;
  margin-bottom: 12px;
  color: #93c5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.for-business-cta-box h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.for-business-cta-box p {
  margin: 0;
  color: #cbd5e1;
  max-width: 680px;
  line-height: 1.7;
  font-size: 17px;
}

.for-business-cta-actions {
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .for-business-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .for-business-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .for-business-highlight-grid {
    grid-template-columns: 1fr;
  }

  .for-business-hero-grid,
  .for-business-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .for-business-hero {
    padding: 120px 16px 60px;
    min-height: auto;
  }

  .for-business-hero-content h1 {
    font-size: 38px;
  }

  .for-business-hero-content p {
    font-size: 16px;
  }

  .for-business-benefits,
  .for-business-feature-list {
    grid-template-columns: 1fr;
  }

  .for-business-section {
    padding: 64px 16px;
  }

  .hero-panel-body {
    grid-template-columns: 58px 1fr;
    min-height: 380px;
  }

  .hero-panel-main {
    padding: 16px;
  }

  .for-business-step {
    grid-template-columns: 56px 1fr;
    padding: 20px;
  }

  .step-number {
    width: 56px;
    height: 56px;
    font-size: 22px;
    border-radius: 16px;
  }

  .for-business-cta-box {
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .for-business-primary,
  .for-business-secondary {
    width: 100%;
  }
}
/* BUSINESS ACCESS */

.business-access-body {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.12), transparent 24%),
    linear-gradient(135deg, #0b1220 0%, #111827 100%);
  min-height: 100vh;
}

.business-access-section {
  padding: 120px 20px 60px;
}

.business-access-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 180px);
}

.business-access-side {
  color: #fff;
  max-width: 640px;
}

.business-access-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.business-access-side h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.business-access-side p {
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.business-access-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.business-access-point {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
}

.business-access-point strong {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-access-point span {
  color: #e5e7eb;
}

.business-access-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
}

.business-access-header {
  margin-bottom: 22px;
}

.business-access-header h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #0f172a;
}

.business-access-header p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.business-access-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.business-access-form label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.business-access-form input {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
}

.business-access-form input:focus {
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17,24,39,0.06);
}

.business-access-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 2px;
  color: #374151;
  font-size: 14px;
}

.business-access-checkbox input {
  width: auto;
}

.business-access-submit {
  margin-top: 6px;
  border: none;
  border-radius: 16px;
  padding: 16px 18px;
  background: #0f172a;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.business-access-submit:hover {
  opacity: 0.96;
}

.business-access-footer {
  margin-top: 18px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

.business-access-footer a {
  color: #111827;
  font-weight: 700;
}

.business-access-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.business-access-message.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

@media (max-width: 992px) {
  .business-access-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .business-access-side {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .business-access-section {
    padding: 110px 16px 40px;
  }

  .business-access-card {
    padding: 22px;
    border-radius: 22px;
  }

  .business-access-header h2 {
    font-size: 28px;
  }

  .business-access-side h1 {
    font-size: 36px;
  }

  .business-access-side p {
    font-size: 16px;
  }
}

/* Business gallery */
.business-gallery-section {
  padding: 24px 28px 0;
}

.business-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.business-gallery-header h2 {
  margin: 0;
  color: #111827;
}

.business-gallery-header p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.business-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.business-gallery-item {
  border: 0;
  padding: 0;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

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

.gallery-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  z-index: 1000;
}

.gallery-modal {
  display: none;
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 960px);
  height: min(86vh, 720px);
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  z-index: 1001;
  overflow: hidden;
}

.gallery-modal img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.gallery-modal-close,
.gallery-modal-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.gallery-modal-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 1;
}

.gallery-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 56px;
  border-radius: 16px;
  font-size: 42px;
  line-height: 1;
}

.gallery-modal-prev {
  left: 16px;
}

.gallery-modal-next {
  right: 16px;
}

.gallery-modal-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
  font-weight: 700;
}

@media (max-width: 768px) {
  .business-gallery-section {
    padding: 20px 18px 0;
  }

  .business-gallery-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-modal {
    width: 94vw;
    height: 78vh;
    border-radius: 18px;
  }

  .gallery-modal-nav {
    width: 42px;
    height: 50px;
    font-size: 34px;
  }
}

.modal-message {
  display: none;
  margin: -6px 0 18px;
  padding: 13px 15px;
  border-radius: 14px;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  animation: authMessageIn 0.2s ease;
}

.modal-message-success {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

.login-modal-submit:disabled,
.register-modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@keyframes authMessageIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

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


/* =========================
   CONTACT PAGE
========================= */

.contact-page-body {
  background: #0b1220;
  color: #ffffff;
}

.contact-header {
  position: absolute;
  background: transparent;
}

.contact-main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 20px 90px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.15), transparent 26%),
    linear-gradient(135deg, #090f1c 0%, #0f172a 55%, #111827 100%);
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
}

.contact-bg-glow-one {
  width: 240px;
  height: 240px;
  right: -70px;
  top: 150px;
  background: rgba(59, 130, 246, 0.18);
}

.contact-bg-glow-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: 70px;
  background: rgba(16, 185, 129, 0.14);
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-hero-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-content h1 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.contact-content p {
  margin: 0;
  max-width: 620px;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-email-button,
.contact-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  transition: 0.2s ease;
}

.contact-email-button {
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.contact-email-button:hover {
  transform: translateY(-1px);
}

.contact-home-button {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-home-button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.contact-info-panel {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.contact-panel-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
}

.contact-panel-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #d1d5db;
}

.contact-panel-body {
  padding: 38px;
  color: #111827;
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: #0f172a;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
}

.contact-panel-body h2 {
  margin: 0 0 12px;
  font-size: 28px;
  color: #111827;
}

.contact-email {
  display: inline-block;
  color: #0f172a;
  font-size: 24px;
  font-weight: 900;
  word-break: break-word;
}

.contact-email:hover {
  color: #00bcd4;
}

.contact-note {
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .contact-hero-card {
    grid-template-columns: 1fr;
  }

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

  .contact-content p {
    margin: 0 auto;
  }

  .contact-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .contact-main {
    padding: 110px 16px 70px;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-email-button,
  .contact-home-button {
    width: 100%;
  }

  .contact-panel-body {
    padding: 28px 22px;
  }

  .contact-email {
    font-size: 20px;
  }
}
