* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, Roboto, Helvetica, sans-serif;
  background: #FFF;
  margin: 0;
  padding: 0;
}

/* Hide loaders */
#preLoader, .request-loader, .mfp-preloader, .loader {
  display: none !important;
}

/* ===== NAVIGATION ===== */
.figma-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 113px;
  background: #FCF8F2;
  box-shadow: 0 4px 31.3px 0 rgba(0, 0, 0, 0.25);
  z-index: 1000;
  overflow: visible;
}

.figma-nav-container {
  width: 100%;
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: relative;
}

.figma-logo {
  width: 159px;
  height: 53px;
  object-fit: contain;
}

.figma-nav-menu-wrapper {
  display: inline-flex;
  height: 68px;
  padding: 10.643px 19.643px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8.187px;
  border-radius: 27470748px;
  background: rgba(255, 199, 0, 0.61);
}

.figma-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6.55px;
}

.figma-nav-item {
  display: flex;
  height: 46.665px;
  padding: 3.275px 8.187px 6.55px 8.187px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.275px;
  border-radius: 13.099px;
  background: #FCF8F1;
  color: #370643;
  font-family: Poppins, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14.28px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

.figma-nav-item:hover,
.figma-nav-item.active {
  background: #FFC700;
}

/* Resources Dropdown */
.figma-resources-wrapper {
  position: relative;
  display: inline-flex;
}
.figma-resources-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  padding: 12px 10px;
  border-radius: 4px;
  border: 1px solid #FFC74B;
  background: #370643;
  z-index: 1001;
  flex-direction: column;
  gap: 4px;
}
.figma-resources-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -10px;
  width: calc(100% + 20px);
  height: 20px;
}
.figma-resources-wrapper:hover .figma-resources-dropdown,
.figma-resources-dropdown.show {
  display: flex;
}
.figma-resources-dropdown a {
  display: flex;
  height: 17px;
  flex-direction: column;
  justify-content: center;
  color: #FFC700;
  font-family: 'DM Sans', -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 2px 0;
}
.figma-resources-dropdown a:hover {
  color: #FFD740;
}

/* Mobile Resources Dropdown */
@media (max-width: 768px) {
  .figma-resources-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .figma-resources-dropdown {
    position: static;
    width: 100%;
    min-width: unset;
    border-radius: 8px;
    margin-top: 4px;
    padding: 8px 12px;
    box-sizing: border-box;
  }

  .figma-resources-dropdown::before {
    display: none;
  }

  .figma-resources-wrapper:hover .figma-resources-dropdown {
    display: none;
  }

  .figma-resources-dropdown.show {
    display: flex !important;
  }

  .figma-resources-dropdown a {
    height: auto;
    padding: 8px 4px;
    font-size: 15px;
    line-height: 20px;
  }
}

.figma-user-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.figma-user-btn {
  display: flex;
  width: 101px;
  height: 57px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  font-family: Poppins, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

.figma-user-btn.customer {
  background: #370643;
  border: 1px solid #370643;
  color: #FFF;
}

.figma-user-btn.vendor {
  background: transparent;
  border: 1px solid #370643;
  color: #370643;
}

.figma-user-btn:hover {
  opacity: 0.9;
}

/* Hamburger Menu Button */
.figma-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1001;
}

.figma-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #370643;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.figma-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.figma-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.figma-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.figma-mobile-overlay.active {
    display: block;
}

/* Desktop: hide mobile user toggle, show desktop one */
#mobileUserToggle {
    display: none;
}

.figma-desktop-user-toggle {
    display: inline-flex;
}

/* ===== SEARCH BAR ===== */
.figma-search-bar {
  display: flex;
  width: 1201px;
  max-width: calc(100% - 80px);
  padding: 8px;
  align-items: center;
  border-radius: 9999px;
  border: 1px solid rgba(55, 6, 67, 0.10);
  background: #FFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
  margin: 24px auto 12px;
  box-sizing: border-box;
  overflow: hidden;
  height: 62px;
}

.figma-search-bar form {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}

.figma-search-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-width: 0;
}

.figma-search-wrapper svg {
  flex-shrink: 0;
}

.figma-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #5A3E2B;
  background: transparent;
  min-width: 0;
}

.figma-search-input::placeholder {
  color: rgba(90, 62, 43, 0.5);
}

.figma-category-dropdown {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: rgba(255, 199, 0, 0.50);
  border: none;
  cursor: pointer;
  color: #5A3E2B;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  flex-shrink: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%235A3E2B' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

/* ===== CUSTOM CATEGORY DROPDOWN (replaces native select) ===== */
.figma-category-dropdown-wrapper {
  position: relative;
  flex-shrink: 0;
}

.figma-category-dropdown-btn {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: rgba(255, 199, 0, 0.50);
  border: none;
  cursor: pointer;
  color: #5A3E2B;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.figma-category-dropdown-btn:hover {
  background: rgba(255, 199, 0, 0.70);
}

.figma-category-dropdown-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.figma-category-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  max-height: 320px;
  overflow-y: auto;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border: 1px solid rgba(55, 6, 67, 0.1);
}

.figma-category-dropdown-menu.show {
  display: block;
}

.figma-category-dropdown-item {
  padding: 12px 16px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #370643;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(55, 6, 67, 0.05);
}

.figma-category-dropdown-item:last-child {
  border-bottom: none;
}

.figma-category-dropdown-item:hover {
  background: rgba(255, 199, 0, 0.15);
}

.figma-category-dropdown-item.selected {
  background: rgba(255, 199, 0, 0.25);
  font-weight: 500;
}

.figma-location-btn {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background: rgba(255, 199, 0, 0.50);
  border: none;
  cursor: pointer;
  color: #5A3E2B;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.figma-location-btn svg {
  flex-shrink: 0;
}

.figma-search-btn {
  width: 95px;
  height: 40px;
  border-radius: 9999px;
  background: #370643;
  border: none;
  color: #FFC700;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  text-align: center;
}

/* ===== MAIN CONTENT ===== */
.figma-listing-page {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 113px;
  background: #FFF;
}

/* ===== MAIN CONTENT CONTAINER ===== */
.figma-main {
  display: flex;
  width: 100%;
  max-width: 1244px;
  padding: 16px 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  background: #FFF;
  margin: 0 auto;
}

/* ===== HEADER SECTION WITH BORDER ===== */
.figma-header-section {
  display: flex;
  padding-bottom: 32px;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
  border-bottom: 1px solid #E2E8F0;
  width: 100%;
}

/* Left side - Listing Info */
.figma-listing-info {
  flex: 1;
  min-width: 0;
  max-width: 900px;
  position: relative;
}

/* Category + Rating + Price Row */
.figma-meta-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.figma-category-badge {
  display: flex;
  padding: 4px 12px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 4px;
  background: rgba(19, 236, 128, 0.10);
}

.figma-category-badge span {
  color: #2A7E52;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Stars Container */
.figma-rating-container {
  display: flex;
  align-items: center;
}

.figma-stars {
  display: flex;
  align-items: center;
  padding: 3px 0;
}

.figma-stars svg {
  width: 14px;
  height: 14px;
}

.figma-rating-text {
  color: #64748B;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-left: 8px;
}

.figma-price-range {
  color: #64748B;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  margin-left: 8px;
}

/* Title */
.figma-title-wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 12px;
}

.figma-title {
  color: #0F172A;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

/* Location Row */
.figma-location-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.figma-location-row svg {
  width: 14px;
  height: 14px;
  padding: 3px 0;
}

.figma-location-text {
  color: #64748B;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.figma-open-status {
  color: #05713B;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-left: 4px;
}

.figma-closed-status {
  color: #EF4444;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-left: 4px;
}

/* Action Buttons */
.figma-action-buttons {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.figma-action-btn {
  display: flex;
  padding: 10px 24px;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.figma-action-btn:hover {
  border-color: #370643;
  background: #370643;
}

.figma-action-btn:hover svg path {
  fill: #FFC700 !important;
}

.figma-action-btn:hover span {
  color: #FFF;
}

.figma-action-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.figma-action-btn span {
  color: #1E293B;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

/* ===== CONTENT WRAPPER ===== */
.figma-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
}

/* ===== LEFT CONTENT ===== */
.figma-left-content {
  display: flex;
  width: 780px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}

/* ===== GALLERY SECTION - FIGMA EXACT ===== */
.figma-gallery {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.figma-main-image-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  aspect-ratio: 243 / 143;
  border-radius: 12px;
  background: #E2E8F0;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
  overflow: hidden;
  position: relative;
}

.figma-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gallery Navigation Arrows */
.figma-gallery-nav {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.figma-gallery-arrow {
  display: flex;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.2s ease;
  border: none;
}

.figma-gallery-arrow:hover {
  background: #FFF;
}

/* Thumbnails */
.figma-thumbnails {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.figma-thumbnail {
  flex: 1;
  min-width: 0;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  background: #F1F5F9;
}

.figma-thumbnail:hover,
.figma-thumbnail.active {
  opacity: 1;
  box-shadow: 0 0 0 2px #13EC80;
}

.figma-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figma-thumbnail-more {
  display: flex;
  flex: 1;
  min-width: 0;
  padding: 19.5px 0 20.5px 0;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  background: #F1F5F9;
  cursor: pointer;
}

.figma-thumbnail-more span {
  color: #64748B;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

/* ===== NAV TABS - FIGMA EXACT ===== */
.figma-nav-tabs {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  border-bottom: 1px solid #E2E8F0;
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

/* ===== TAB PANELS ===== */
.figma-tab-panel {
  display: none;
}
.figma-tab-panel.active {
  display: block;
}

.figma-nav-tab {
  display: flex;
  padding: 16px 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.figma-nav-tab.active {
  border-bottom: 2px solid #370643;
}

.figma-nav-tab span {
  color: #64748B;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.figma-nav-tab.active span {
  color: #370643;
  font-weight: 600;
}

.figma-nav-tab:hover span {
  color: #370643;
}

/* ===== DESCRIPTION SECTION ===== */
.figma-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.figma-section-title {
  align-self: stretch;
  color: #0F172A;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin: 0;
}

.figma-section-subtitle {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
}

.figma-description-text {
  align-self: stretch;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 29.25px;
  color: #475569;
}

.figma-description-text p {
  color: #475569;
  margin-bottom: 16px;
}

.figma-description-text p:last-child {
  margin-bottom: 0;
}

.figma-description-text span {
  color: #475569;
}

.figma-description-text strong {
  color: #0F172A;
  font-weight: 600;
}

/* ===== VIDEO SECTION ===== */
.figma-video-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
}

.figma-video-title {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.figma-video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.figma-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ===== SPECIALTIES SECTION - CREAM GRADIENT BOX ===== */
.figma-specialties-box {
  display: flex;
  padding: 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid #F1F5F9;
  background: linear-gradient(180deg, #FDFCF7 0%, #F5F1E6 100%);
}

.figma-specialties-title {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin: 0;
}

.figma-specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  width: 100%;
}

.figma-specialty-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.figma-specialty-icon {
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.figma-specialty-icon svg {
  width: 24px;
  height: 24px;
}

.figma-specialty-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

.figma-specialty-name {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.figma-specialty-desc {
  color: #475569;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

/* ===== WHY CHOOSE US - 3 CARDS ===== */
.figma-why-choose {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

.figma-why-title {
  align-self: stretch;
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  margin: 0;
}

.figma-why-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.figma-why-card {
  flex: 1;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #E0F2FE;
  background: #F0F9FF;
  padding: 25px;
  position: relative;
}

.figma-why-number {
  display: flex;
  width: 40px;
  height: 40px;
  padding: 7.5px 0 8.5px 0;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #370643;
  color: #FFF;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 16px;
}

.figma-why-card-title {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 8px 0;
}

.figma-why-card-text {
  color: #475569;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

/* ===== AMENITIES SECTION ===== */
.figma-amenities-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
}

.figma-amenities-title {
  align-self: stretch;
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0;
}

.figma-amenities-list {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  flex-wrap: wrap;
}

.figma-amenity-item {
  display: inline-flex;
  height: 46px;
  padding: 10px 14px;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  background: #FFF;
  white-space: nowrap;
}

.figma-amenity-item svg {
  width: 24px;
  height: 24px;
}

.figma-amenity-item span {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

/* ===== REVIEWS SECTION ===== */
.figma-reviews-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
}

.figma-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.figma-reviews-title {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}

.figma-reviews-count {
  color: #64748B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.figma-review-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background: #FFF;
}

.figma-review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.figma-review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.figma-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #370643;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.figma-review-name {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.figma-review-date {
  color: #94A3B8;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.figma-review-stars {
  display: flex;
  gap: 2px;
}

.figma-review-stars i {
  color: #FFC700;
  font-size: 16px;
}

.figma-review-stars i.empty {
  color: #E2E8F0;
}

.figma-review-text {
  color: #475569;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
}

.figma-no-reviews {
  color: #94A3B8;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
  padding: 40px 20px;
}

/* ===== FAQ SECTION ===== */
.figma-faq-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
}

.figma-faq-title {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 32px;
  margin: 0;
}

.figma-faq-item {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  background: #FFF;
}

.figma-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.2s;
  gap: 12px;
}

.figma-faq-question:hover {
  background: #F8FAFC;
}

.figma-faq-question h4 {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  margin: 0;
  flex: 1;
}

.figma-faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.figma-faq-item.active .figma-faq-icon {
  transform: rotate(180deg);
}

.figma-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.figma-faq-item.active .figma-faq-answer {
  max-height: 500px;
}

.figma-faq-answer p {
  color: #475569;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin: 0;
  padding: 0 20px 16px;
}

.figma-no-faq {
  color: #94A3B8;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-align: center;
  padding: 40px 20px;
}

/* ===== MISSION BOX - GREEN BORDER ===== */
.figma-mission-box {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(19, 236, 128, 0.10);
  background: rgba(19, 236, 128, 0.05);
}

.figma-mission-header {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
}

.figma-mission-header svg {
  width: 24px;
  height: 24px;
}

.figma-mission-title {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.figma-mission-text {
  color: #475569;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

/* ===== LATEST BLOGS SECTION - FIGMA EXACT ===== */
.figma-latest-blogs-section {
  display: flex;
  width: 100%;
  max-width: 1203px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin: 60px auto;
  padding: 0 41px;
}

.figma-latest-blogs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.figma-latest-blogs-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.figma-latest-blogs-accent {
  width: 7px;
  height: 52px;
  border-radius: 8px;
  background: linear-gradient(178deg, #FFC700 51.09%, #31013F 180.54%);
  flex-shrink: 0;
  margin-top: 17px;
}

.figma-latest-blogs-title {
  color: #31013F;
  font-family: 'Poppins', sans-serif;
  font-size: 58px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.figma-latest-blogs-more-btn {
  display: flex;
  width: 218px;
  height: 84px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background: #FFC700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.figma-latest-blogs-more-btn:hover {
  background: #e6b300;
  transform: translateY(-2px);
}

.figma-latest-blogs-more-btn span {
  color: #370643;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
}

.figma-latest-blogs-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

/* Latest Blog Card - EXACT 40px border-radius */
.figma-latest-blog-card {
  display: flex;
  width: 379px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 40px;
  border: 1px solid #F1E7F3;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.figma-latest-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.figma-latest-blog-card-img-wrap {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.figma-latest-blog-card-img {
  width: 100%;
  height: 282.48px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Card badges - EXACT colors from Figma */
.figma-latest-blog-badge {
  display: flex;
  padding: 4px 12px;
  align-items: center;
  position: absolute;
  left: 16px;
  top: 18px;
  border-radius: 9999px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.figma-latest-blog-badge.teal {
  background: #40E0D0;
}

.figma-latest-blog-badge.teal span {
  color: #FFF;
}

.figma-latest-blog-badge.yellow {
  background: #FFC700;
}

.figma-latest-blog-badge.yellow span {
  color: #360642;
}

.figma-latest-blog-badge.coral {
  background: #FF7F50;
}

.figma-latest-blog-badge.coral span {
  color: #FFF;
}

.figma-latest-blog-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.figma-latest-blog-card-content {
  display: flex;
  width: 100%;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.figma-latest-blog-card-title-wrap {
  display: flex;
  padding-bottom: 12px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.figma-latest-blog-card-title {
  align-self: stretch;
  color: #180E1B;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
}

.figma-latest-blog-card-excerpt {
  display: flex;
  padding-bottom: 16px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  height: 45.52px;
  overflow: hidden;
}

.figma-latest-blog-card-excerpt p {
  color: #4B5563;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.75px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.figma-latest-blog-card-footer {
  display: flex;
  padding-top: 16px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid #F3F4F6;
}

.figma-latest-blog-card-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.figma-latest-blog-card-date span {
  color: #9CA3AF;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
}

.figma-latest-blog-card-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.figma-latest-blog-card-link span {
  color: #360642;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

/* Responsive for Latest Blogs Section */
@media (max-width: 1200px) {
  .figma-latest-blogs-title {
    font-size: 44px;
  }
  
  .figma-latest-blogs-more-btn {
    width: 160px;
    height: 60px;
  }
  
  .figma-latest-blogs-more-btn span {
    font-size: 26px;
  }
}

@media (max-width: 992px) {
  .figma-latest-blogs-section {
    padding: 0 24px;
  }
  
  .figma-latest-blogs-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .figma-latest-blogs-title {
    font-size: 34px;
  }
  
  .figma-latest-blogs-accent {
    height: 40px;
    margin-top: 10px;
  }
  
  .figma-latest-blogs-more-btn {
    width: 140px;
    height: 50px;
    border-radius: 12px;
  }
  
  .figma-latest-blogs-more-btn span {
    font-size: 22px;
  }
  
  .figma-latest-blogs-cards {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .figma-latest-blog-card {
    width: calc(50% - 16px);
    max-width: 379px;
  }
}

@media (max-width: 768px) {
  .figma-latest-blogs-title {
    font-size: 28px;
  }
  
  .figma-latest-blog-card {
    width: 100%;
    max-width: 379px;
  }
  
  .figma-latest-blogs-cards {
    gap: 24px;
  }
}

/* ===== SIDEBAR ===== */
.figma-sidebar {
  display: flex;
  width: 384px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  align-self: stretch;
}

/* ===== CONTACT FORM CARD ===== */
.figma-contact-card {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid #F1F5F9;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.figma-contact-title {
  width: 100%;
  color: #1E293B;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.figma-contact-subtitle {
  width: 100%;
  color: #64748B;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
}

.figma-contact-form {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}

.figma-form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  align-self: stretch;
}

.figma-form-label {
  width: 100%;
  color: #64748B;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.figma-form-input {
  height: 44px;
  align-self: stretch;
  border-radius: 12px;
  background: #F8FAFC;
  border: none;
  padding: 0 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
}

.figma-form-input:focus {
  outline: 2px solid #370643;
}

.figma-form-textarea {
  height: 104px;
  align-self: stretch;
  border-radius: 12px;
  background: #F8FAFC;
  border: none;
  padding: 12px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  resize: none;
}

.figma-form-textarea:focus {
  outline: 2px solid #370643;
}

.figma-submit-btn {
  display: flex;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 12px;
  background: #370643;
  box-shadow: 0 4px 6px -4px rgba(19, 236, 128, 0.20);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.figma-submit-btn:hover {
  background: #4a0d5c;
}

.figma-submit-btn span {
  color: #FFC700;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.figma-submit-btn svg {
  width: 14px;
  height: 14px;
}

/* ===== LOCATION CARD ===== */
.figma-location-card {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid #F1F5F9;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.figma-location-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.figma-location-title {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.figma-map-container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 16px;
  background: #F1F5F9;
  overflow: hidden;
  position: relative;
}

.figma-map-image {
  width: 100%;
  height: 179px;
  object-fit: cover;
  display: block;
}

.figma-map-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19, 236, 128, 0.20);
  z-index: 2;
  border-radius: 16px;
}

.figma-map-pin {
  position: absolute;
  left: 50%;
  top: calc(50% + 20px);
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.figma-map-pin svg {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.figma-view-map-btn {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 4;
  overflow: hidden;
}

.figma-view-map-btn:hover {
  transform: scale(1.05);
}

.figma-view-map-btn span {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.figma-contact-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.figma-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.figma-contact-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.figma-contact-item span {
  color: #475569;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

/* ===== BUSINESS HOURS CARD ===== */
.figma-hours-card {
  display: flex;
  padding: 32px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid #F1F5F9;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.figma-hours-header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.figma-hours-title {
  color: #1E293B;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.figma-hours-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.figma-hours-item {
  display: flex;
  padding: 8px 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-bottom: 1px solid #F8FAFC;
}

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

.figma-hours-day {
  color: #64748B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.figma-hours-time {
  color: #1E293B;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.figma-hours-item.today .figma-hours-day,
.figma-hours-item.today .figma-hours-time {
  color: #05733C;
  font-weight: 600;
}

.figma-hours-item.closed .figma-hours-day,
.figma-hours-item.closed .figma-hours-time {
  color: #EF4444;
  font-weight: 500;
}

/* ===== PARTNER PROMO CARD ===== */
.figma-promo-card {
  display: flex;
  padding: 32px 28px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, #0B1120 0%, #0F172A 40%, #112240 100%);
  overflow: hidden;
  align-self: stretch;
  min-height: 200px;
}

.figma-promo-blur {
  width: 200px;
  height: 200px;
  position: absolute;
  right: -60px;
  bottom: -60px;
  border-radius: 9999px;
  background: rgba(14, 165, 233, 0.15);
  filter: blur(40px);
}

.figma-promo-card::after {
  content: '';
  width: 120px;
  height: 120px;
  position: absolute;
  right: 20px;
  top: -30px;
  border-radius: 9999px;
  background: rgba(14, 165, 233, 0.10);
  filter: blur(30px);
}

.figma-promo-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  position: relative;
  z-index: 1;
}

.figma-promo-label {
  align-self: stretch;
  color: #0EA5E9;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.figma-promo-title {
  align-self: stretch;
  color: #FFF;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
  padding-bottom: 12px;
}

.figma-promo-btn {
  display: flex;
  padding: 10px 28px;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
  background: #FFF;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.figma-promo-btn:hover {
  background: #FFC700;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 199, 0, 0.3);
}

.figma-promo-btn span {
  color: #0F172A;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

/* ===== BLOG SECTION ===== */
.figma-blog-section {
  display: flex;
  width: 100%;
  max-width: 1203px;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  margin: 48px auto;
  padding: 0 40px;
}

.figma-blog-header {
  display: flex;
  align-items: center;
  gap: 369px;
  align-self: stretch;
  justify-content: space-between;
}

.figma-blog-title-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.figma-blog-accent {
  width: 5px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(178deg, #FFC700 51.09%, #31013F 180.54%);
}

.figma-blog-title {
  color: #31013F;
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.figma-blog-more-btn {
  display: flex;
  width: 140px;
  height: 56px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #FFC700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.figma-blog-more-btn:hover {
  background: #FFD633;
  transform: scale(1.02);
}

.figma-blog-more-btn span {
  color: #370643;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
}

.figma-blog-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
}

.figma-blog-card {
  display: flex;
  width: 379px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 40px;
  border: 1px solid #F1E7F3;
  background: #FFF;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.figma-blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.figma-blog-image-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.figma-blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.figma-blog-badge {
  display: flex;
  padding: 4px 12px;
  align-items: center;
  position: absolute;
  left: 16px;
  top: 18px;
  border-radius: 9999px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.figma-blog-badge.turquoise {
  background: #40E0D0;
}

.figma-blog-badge.yellow {
  background: #FFC700;
}

.figma-blog-badge.orange {
  background: #FF7F50;
}

.figma-blog-badge span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.figma-blog-badge.turquoise span,
.figma-blog-badge.orange span {
  color: #FFF;
}

.figma-blog-badge.yellow span {
  color: #360642;
}

.figma-blog-content {
  display: flex;
  width: 100%;
  padding: 24px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.figma-blog-card-title {
  align-self: stretch;
  color: #180E1B;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 25px;
  margin: 0 0 12px 0;
}

.figma-blog-excerpt {
  display: flex;
  width: 322px;
  flex-direction: column;
  justify-content: center;
  color: #4B5563;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.75px;
  margin: 0 0 16px 0;
}

.figma-blog-footer {
  display: flex;
  padding: 16px 0 0 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-top: 1px solid #F3F4F6;
}

.figma-blog-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.figma-blog-date svg {
  width: 16px;
  height: 20px;
}

.figma-blog-date span {
  color: #9CA3AF;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
}

.figma-blog-read-more {
  display: flex;
  align-items: center;
  gap: 4px;
}

.figma-blog-read-more span {
  color: #360642;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.figma-blog-read-more svg {
  width: 16px;
  height: 20px;
}

/* Footer - Figma Pixel Perfect */
.figma-footer {
    width: 100%;
    background: rgba(6, 77, 133, 0.04);
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
}

.figma-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 83px;
}

.figma-footer-grid {
    display: flex;
    justify-content: space-between;
    padding-top: 66px;
    padding-bottom: 64px;
    gap: 60px;
}

.figma-footer-brand {
    width: 205px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.figma-footer-logo {
    max-width: 69px;
    height: auto;
}

.figma-footer-tagline {
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    margin: 0;
}

.figma-footer-slogan {
    color: #181B1D;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    text-transform: capitalize;
    margin: 0;
}

.figma-footer-social-label {
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 0;
    margin: 0;
}

.figma-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.figma-social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFC700;
    border-radius: 12px;
    color: #370643;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.figma-social-icon:hover {
    background: #370643;
    color: #FFC700;
}

.figma-footer-links-section {
    width: 130px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.figma-footer-title {
    color: #181B1D;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 21px;
    text-transform: capitalize;
    margin: 0;
}

.figma-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.figma-footer-links li {
    margin: 0;
}

.figma-footer-links a {
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.figma-footer-links a:hover {
    color: #064D85;
}

.figma-footer-contact-section {
    width: 196px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.figma-footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.figma-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    margin: 0;
}

.figma-footer-contact svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.figma-footer-contact a,
.figma-footer-contact span {
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.figma-footer-contact a:hover {
    color: #064D85;
}

.figma-footer-subscribe {
    width: 204px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.figma-footer-subscribe-text {
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 11px;
    margin: 0 0 8px 0;
}

.figma-subscribe-form {
    margin: 0;
}

.figma-subscribe-input-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 0 13.31px 0 rgba(76, 87, 125, 0.10);
    background: rgba(255, 255, 255, 0.00);
}

.figma-newsletter-input {
    height: 35px;
    padding: 12px;
    border: 0.666px solid rgba(255, 255, 255, 0.10);
    background: #FFF;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    color: #757575;
    outline: none;
    border-radius: 0;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.figma-newsletter-input::placeholder {
    color: #757575;
}

.figma-newsletter-btn {
    height: 35px;
    padding: 8px 17px;
    background: #31013F;
    border: 0.666px solid #064D85;
    border-radius: 0 3px 3px 0;
    color: #FFC700;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.47px;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 9.317px 23.293px 0 rgba(6, 77, 133, 0.12);
    margin-top: 0;
    align-self: stretch;
    width: auto;
    white-space: nowrap;
}

.figma-newsletter-btn:hover {
    background: #4a0d5c;
}

.figma-footer-bottom {
    border-top: 0.666px solid #EAEAEA;
    padding: 20px 0 30px;
    text-align: center;
}

.figma-footer-bottom p {
    color: #757575;
    font-family: Arial, -apple-system, Roboto, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 19px;
    margin: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .figma-search-bar {
    width: calc(100% - 50px);
    max-width: 900px;
  }
  
  .figma-content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .figma-left-content {
    width: 100%;
    max-width: 780px;
  }
  
  .figma-sidebar {
    width: 100%;
    max-width: 780px;
  }
  
  .figma-blog-header {
    flex-direction: column;
    gap: 24px;
  }
  
  .figma-blog-title {
    font-size: 38px;
  }
  
  .figma-blog-more-btn {
    width: 150px;
    height: 60px;
  }
  
  .figma-blog-more-btn span {
    font-size: 22px;
  }
  
  .figma-blog-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .figma-blog-card {
    width: 100%;
    max-width: 400px;
  }
  
  .figma-footer-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  /* Mobile Nav - Hamburger */
  .figma-hamburger {
      display: flex;
  }

  .figma-desktop-user-toggle {
      display: none !important;
  }

  #mobileUserToggle {
      display: none;
      width: 100%;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
      padding: 12px 10px 0 10px;
      border-top: 1px solid rgba(55, 6, 67, 0.1);
      box-sizing: border-box;
      max-width: 100%;
  }

  .figma-nav-menu-wrapper.mobile-open #mobileUserToggle {
      display: flex;
  }

  .figma-nav {
    height: 70px;
    padding: 0;
  }

  .figma-nav-container {
      flex-wrap: nowrap;
      gap: 0;
      padding: 0 15px;
  }

  .figma-logo {
      width: 120px;
      height: 40px;
  }

  .figma-nav-menu-wrapper {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      width: 100%;
      height: auto;
      max-height: calc(100vh - 70px);
      overflow-y: auto;
      overflow-x: hidden;
      background: #FCF8F2;
      border-radius: 0;
      padding: 20px 20px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      z-index: 999;
      flex-direction: column;
      box-sizing: border-box;
  }

  .figma-nav-menu-wrapper.mobile-open {
      display: flex;
  }

  .figma-nav-menu {
      flex-direction: column;
      gap: 8px;
      width: 100%;
  }

  .figma-nav-item {
      width: 100%;
      height: 48px;
      font-size: 17px;
      border-radius: 10px;
      justify-content: center;
  }

  .figma-user-btn {
      flex: 1;
      width: auto !important;
      min-width: 0;
      max-width: calc(50% - 10px);
      height: 48px;
      font-size: 16px;
      box-sizing: border-box;
      padding: 10px 8px;
      margin: 0;
  }
  
  .figma-search-bar {
    width: calc(100% - 32px) !important;
    max-width: 100% !important;
    border-radius: 16px;
    padding: 12px;
    height: auto;
    overflow: visible;
    margin: 12px auto;
    box-sizing: border-box;
    border: 1px solid rgba(55, 6, 67, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .figma-search-bar form {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
  }
  
  .figma-search-wrapper {
    width: 100% !important;
    order: 1;
    padding: 0;
    background: #f8f5f0;
    border-radius: 10px;
    padding: 8px 12px;
    box-sizing: border-box;
  }

  .figma-search-wrapper svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .figma-search-input {
    font-size: 14px;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .figma-category-dropdown {
    display: none !important;
  }

  .figma-category-dropdown-wrapper {
    display: none !important;
  }

  .figma-category-dropdown-btn {
    width: 100%;
    font-size: 14px;
    padding: 10px 14px;
    background: rgba(255, 199, 0, 0.25);
    border-radius: 10px;
    border: 1px solid rgba(55, 6, 67, 0.06);
    box-sizing: border-box;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
  }

  .figma-category-dropdown-btn span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .figma-category-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    min-width: 100%;
    max-height: 250px;
    border-radius: 10px;
    font-size: 14px;
  }

  .figma-category-dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
  }

  .figma-location-btn {
    display: none;
  }
  
  .figma-search-btn {
    order: 3;
    width: 100% !important;
    min-width: unset;
    height: 42px;
    font-size: 15px;
    font-weight: 500;
    box-sizing: border-box;
    border-radius: 10px;
    letter-spacing: 0.3px;
  }
  
  .figma-listing-page {
    padding-top: 80px;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  
  .figma-main {
    padding: 20px 16px;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .figma-header-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
  }

  .figma-meta-row {
    gap: 8px;
  }

  .figma-category-badge {
    font-size: 12px;
    padding: 4px 10px;
  }

  .figma-category-badge span {
    font-size: 12px;
  }

  .figma-rating-text {
    font-size: 13px;
  }

  .figma-price-range {
    font-size: 13px;
  }
  
  .figma-listing-info,
  .figma-meta-row,
  .figma-title-wrap,
  .figma-location-row {
    width: 100%;
  }
  
  .figma-title {
    font-size: 20px;
    line-height: 26px;
    margin-top: 8px;
  }

  .figma-location-row {
    gap: 6px;
    margin-top: 4px;
  }

  .figma-action-buttons {
    gap: 10px;
    margin-top: 4px;
  }

  .figma-action-btn {
    padding: 8px 16px;
    border-radius: 10px;
    gap: 6px;
  }

  .figma-action-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .figma-specialties-box {
    padding: 20px;
    border-radius: 12px;
  }
  
  .figma-specialties-grid {
    grid-template-columns: 1fr;
  }
  
  .figma-why-cards {
    flex-direction: column;
  }
  
  .figma-amenities-list {
    justify-content: center;
  }
  
  .figma-nav-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .figma-nav-tab {
    padding: 12px 16px;
    white-space: nowrap;
  }
  
  .figma-blog-section {
    padding: 0 16px;
  }
  
  .figma-blog-title {
    font-size: 24px;
  }
  
  .figma-footer-container {
    padding: 0 16px;
  }

  .figma-footer-grid {
    flex-direction: column;
    gap: 20px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .figma-footer-brand,
  .figma-footer-links-section,
  .figma-footer-contact-section,
  .figma-footer-subscribe {
    width: 100%;
    max-width: 100%;
  }

  /* --- Global mobile containment --- */
  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }

  .figma-listing-page {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .figma-main {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .figma-content-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .figma-left-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .figma-sidebar {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* --- Title fix: allow wrapping --- */
  .figma-title {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    overflow: visible !important;
  }

  /* --- Text sizing for mobile readability --- */
  .figma-section-title {
    font-size: 22px !important;
    line-height: 28px !important;
  }

  .figma-section-subtitle {
    font-size: 20px !important;
    line-height: 26px !important;
  }

  .figma-description-text,
  .figma-description-text p,
  .figma-description-text span {
    font-size: 16px !important;
    line-height: 24px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .figma-specialties-title,
  .figma-why-title {
    font-size: 22px !important;
    line-height: 28px !important;
  }

  .figma-location-text,
  .figma-open-status,
  .figma-closed-status {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .figma-action-buttons {
    width: 100% !important;
    flex-wrap: wrap !important;
  }

  .figma-action-btn span {
    font-size: 14px !important;
  }

  /* --- Gallery containment --- */
  .figma-gallery {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border-radius: 12px;
  }

  .figma-main-image-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  .figma-thumbnails {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  /* --- Section containment --- */
  .figma-section,
  .figma-specialties-box,
  .figma-why-choose,
  .figma-amenities-section,
  .figma-reviews-section,
  .figma-faq-section,
  .figma-mission-box {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  /* --- Sidebar cards containment --- */
  .figma-contact-card,
  .figma-location-card,
  .figma-hours-card,
  .figma-promo-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .figma-contact-card {
    padding: 20px !important;
  }

  .figma-location-card,
  .figma-hours-card {
    padding: 20px !important;
  }

  /* --- Blog section containment --- */
  .figma-blog-section,
  .figma-latest-blogs-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 16px !important;
  }

  .figma-blog-header,
  .figma-latest-blogs-header {
    flex-direction: column !important;
    gap: 16px !important;
  }

  .figma-blog-cards,
  .figma-latest-blogs-cards {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .figma-blog-card,
  .figma-latest-blog-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  .figma-blog-excerpt {
    width: 100% !important;
  }

  .figma-latest-blogs-title {
    font-size: 28px !important;
  }

  .figma-latest-blogs-more-btn {
    width: 120px !important;
    height: 48px !important;
    border-radius: 12px !important;
  }

  .figma-latest-blogs-more-btn span {
    font-size: 20px !important;
  }

  /* --- Footer containment --- */
  .figma-footer {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .figma-footer-container {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* --- Search input containment --- */
  .figma-search-wrapper {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .figma-search-input {
    min-width: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  /* --- All images max-width --- */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  .figma-main-image {
    height: 100% !important;
  }

  /* --- Nav containment --- */
  .figma-nav {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    overflow-y: visible !important;
  }

  /* --- Header section containment --- */
  .figma-header-section {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .figma-listing-info {
    max-width: 100% !important;
  }

  .figma-meta-row {
    flex-wrap: wrap !important;
  }
}

/* ===== Floating WhatsApp Button ===== */
.figma-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.figma-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.figma-whatsapp-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 480px) {
  .figma-whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .figma-whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .figma-listing-page {
    padding-top: 70px !important;
  }

  .figma-search-bar {
    width: calc(100% - 24px) !important;
    padding: 10px !important;
    margin: 8px auto !important;
    border-radius: 12px;
  }

  .figma-search-wrapper {
    padding: 6px 10px !important;
  }

  .figma-search-input {
    font-size: 13px !important;
  }

  .figma-category-dropdown {
    display: none !important;
  }

  .figma-category-dropdown-btn {
    font-size: 13px !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
  }

  .figma-category-dropdown-item {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }

  .figma-search-btn {
    height: 38px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }

  .figma-main {
    padding: 16px 12px !important;
  }

  .figma-header-section {
    gap: 12px !important;
    padding-bottom: 16px !important;
  }

  .figma-title {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .figma-section-title {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .figma-specialties-title,
  .figma-why-title,
  .figma-amenities-title,
  .figma-reviews-title,
  .figma-faq-title {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .figma-description-text,
  .figma-description-text p,
  .figma-description-text span {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .figma-specialties-box {
    padding: 16px !important;
  }

  .figma-specialty-name {
    font-size: 15px !important;
  }

  .figma-specialty-desc {
    font-size: 13px !important;
  }

  .figma-contact-card,
  .figma-location-card,
  .figma-hours-card {
    padding: 14px !important;
    border-radius: 10px !important;
  }

  .figma-contact-title,
  .figma-location-title,
  .figma-hours-title {
    font-size: 17px !important;
  }

  .figma-mission-box {
    padding: 16px !important;
  }

  .figma-mission-title {
    font-size: 17px !important;
  }

  .figma-mission-text {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .figma-promo-card {
    padding: 16px !important;
    border-radius: 10px !important;
  }

  .figma-promo-title {
    font-size: 18px !important;
  }

  .figma-action-btn {
    padding: 6px 12px !important;
    font-size: 13px !important;
  }

  .figma-action-btn span {
    font-size: 13px !important;
  }

  .figma-blog-section,
  .figma-latest-blogs-section {
    padding: 0 12px !important;
  }

  .figma-blog-title,
  .figma-latest-blogs-title {
    font-size: 20px !important;
  }

  .figma-footer-container {
    padding: 0 12px !important;
  }

  .figma-gallery {
    border-radius: 10px !important;
  }

  .figma-location-text,
  .figma-open-status,
  .figma-closed-status {
    font-size: 13px !important;
  }

  .figma-rating-text {
    font-size: 12px !important;
  }

  .figma-price-range {
    font-size: 12px !important;
  }
}
