/* TBI Landing Page - Home Specific Styles */

/* Hero Section */
.hero-section {
  padding: 120px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-image-placeholder {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
  border: 1px solid #cce3f6;
  border-radius: 12px !important;
}

/* Decorative Blobs for Fun Vibe */
.shape-blob {
  width: 400px;
  height: 400px;
  background: var(--accent-light);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  top: -100px;
  right: -100px;
  z-index: 0;
  animation: blob-bounce 10s infinite alternate;
}

.shape-blob.shape-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: -50px;
  left: -50px;
  top: auto;
  right: auto;
  animation: blob-bounce 15s infinite alternate-reverse;
}

@keyframes blob-bounce {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.1) translate(20px, -20px);
  }
}

.z-index-1 {
  z-index: 1;
}

/* Strength Cards */
.strength-card {
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  border-radius: 12px !important;
}
.strength-card .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Removed micro-animations (like transform: translateY(-5px)) as requested */
.strength-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}

/* Services Cards */
.service-card {
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem !important;
}
.service-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
}
.service-list {
  font-size: 0.95rem;
}

/* Form Section */
.form-section {
  background-image: linear-gradient(
    135deg,
    var(--primary-brand) 0%,
    var(--primary-secondary) 100%
  );
  position: relative;
}

.form-control {
  border-radius: 8px;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(242, 101, 34, 0.25);
  border-color: var(--accent);
  background-color: #fff !important;
}

/* Locations */
.location-card {
  border-top: 4px solid var(--primary-brand);
  border-radius: 12px !important;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.location-list-item {
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-left 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent;
}
.location-list-item:hover {
  transform: translateX(10px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
  border-left: 4px solid var(--accent);
}

/* Global soft hover for cards */
.strength-card:hover,
.service-card:hover,
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

/* Process Section */
.process-step {
  z-index: 1;
}
.process-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #dee2e6;
  left: 30px; /* half of 60px circle */
  top: 30px;
  z-index: 0;
}
.process-step:last-child .process-line {
  display: none;
}

/* Testimonial */
.testimonial-card {
  transition: transform 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15) !important;
}

/* FAQ Accordion */
.custom-accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--accent) !important;
  box-shadow: none;
}
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Client Marquee */
.client-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.client-marquee {
  width: fit-content;
  animation: scroll-left 25s linear infinite;
}

.client-marquee:hover {
  animation-play-state: paused;
}

.client-logo {
  height: 145px;
  object-fit: contain;
  margin: 0 60px; 
  transition: all 0.3s;
}

.client-logo:hover {
  opacity: 1; 
}

@media (max-width: 768px) {
  .client-logo {
    height: 95px;
    margin: 0 30px;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  } /* Scrolls exactly half of the total width since we duplicated the items */
}

/* Why Us Section */
.why-us-section {
  background-color: #ffffff;
  position: relative;
}

/* Hapus garis tepi kiri dan padding */
.why-us-image-wrapper {
  height: 100%;
}

.why-us-image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.why-us-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.why-us-icon-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 20px;
}

.why-us-text {
  flex-grow: 1;
}

.why-us-text h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.why-us-text p {
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.why-us-text ul {
  padding-left: 1.2rem;
  margin-top: 5px;
  margin-bottom: 0;
}

.why-us-text ul li {
  font-size: 0.9rem;
  color: #555555;
  margin-bottom: 3px;
}

/* Dedicated Free Test Form Section above Footer */
.free-test-section {
  background: linear-gradient(135deg, var(--primary-brand) 0%, var(--primary-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.free-test-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.free-test-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  pointer-events: none;
}

/* Sub-headings for Location Groups */
.location-group-title {
  color: var(--blue-dark);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 25px;
  font-size: 1.4rem;
  display: inline-block;
}

.location-group-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.location-group-title-center {
  text-align: center;
  display: block;
}

.location-group-title-center::after {
  left: 55%;
  transform: translateX(-50%);
}

/* Dedicated Promo Banner Carousel Section */
.promo-carousel-wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-carousel-wrapper img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-carousel-wrapper:hover img {
  transform: scale(1.015);
}

/* Dua Metode Section */
.methods-section {
  background-color: #ffffff;
}

.methods-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.methods-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.methods-card.card-psikotes {
  border-top: 5px solid var(--primary-brand);
}

.methods-card.card-fingerprint {
  border-top: 5px solid var(--accent);
}

.methods-badge {
  font-size: 0.8rem;
  font-weight: 700;
  text-uppercase: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
}

.methods-badge.badge-psikotes {
  background-color: rgba(246, 118, 39, 0.08);
  color: var(--primary-brand);
}

.methods-badge.badge-fingerprint {
  background-color: rgba(33, 134, 224, 0.08);
  color: var(--accent);
}

/* B2B Section */
.b2b-section {
  background-color: #f8f9fa;
}

.b2b-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b2b-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.b2b-card.card-school {
  border: 1px solid rgba(246, 118, 39, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
}

.b2b-card.card-corporate {
  border: 1px solid rgba(255, 138, 0, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #fffdf0 100%);
}

.b2b-icon-header {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.b2b-card.card-school .b2b-icon-header {
  color: var(--primary-brand);
}

.b2b-card.card-corporate .b2b-icon-header {
  color: var(--primary-secondary);
}

.b2b-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.b2b-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.5;
}

.b2b-list li i {
  margin-right: 12px;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.b2b-list.list-school li i {
  color: var(--primary-brand);
}

.b2b-list.list-corporate li i {
  color: var(--primary-secondary);
}

/* Company & Founder Section on Home Page */
.company-founder-section {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.achievement-mini-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.achievement-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.achievement-mini-img-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.achievement-mini-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.achievement-mini-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 0;
  line-height: 1.4;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.branch-mini-card {
  background-color: #f8f9fa;
  border-left: 3px solid var(--primary-brand);
  padding: 12px 15px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.branch-mini-icon {
  color: var(--primary-brand);
  font-size: 1.15rem;
}

.branch-mini-city {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 1px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.branch-mini-year {
  font-size: 0.75rem;
  color: var(--secondary);
  margin-bottom: 0;
}

/* Instagram Profile Mockup Card */
.instagram-mockup-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  max-width: 320px;
  margin: 0 auto;
  transition: transform 0.2s;
  text-align: left;
}

.instagram-mockup-card:hover {
  transform: translateY(-2px);
  border-color: #d1d1d1;
}

.instagram-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.instagram-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #ff3040;
  object-fit: cover;
}

.instagram-username {
  font-weight: 700;
  font-size: 0.95rem;
  color: #262626;
  margin-bottom: 2px;
}

.instagram-fullname {
  font-size: 0.8rem;
  color: #8e8e8e;
  margin-bottom: 0;
}

.instagram-stats {
  display: flex;
  gap: 15px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  padding: 10px 0;
  margin-bottom: 15px;
}

.instagram-stat-item {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #262626;
}

.instagram-stat-num {
  font-weight: 700;
  display: block;
  font-size: 0.9rem;
}

.instagram-bio {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #262626;
  margin-bottom: 15px;
}

.instagram-bio a {
  color: #00376b;
  text-decoration: none;
}

.instagram-follow-btn {
  background-color: var(--primary-brand);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 6px;
  text-align: center;
  display: block;
  width: 100%;
  text-decoration: none;
  transition: background-color 0.2s;
}

.instagram-follow-btn:hover {
  background-color: var(--primary-secondary);
}

.founder-roles-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.founder-mini-role-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
  border-left: 4px solid var(--primary-brand);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
}

.founder-mini-role-card:nth-child(even) {
  border-left-color: var(--primary-secondary);
}

.founder-mini-role-card:hover {
  transform: translateX(4px);
}

.founder-mini-role-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: rgba(246, 118, 39, 0.05);
  color: var(--primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.founder-mini-role-card:nth-child(even) .founder-mini-role-icon {
  background-color: rgba(255, 138, 0, 0.05);
  color: var(--primary-secondary);
}

.founder-mini-role-title {
  font-weight: 700;
  color: var(--dark-brand);
  margin-bottom: 1px;
  font-size: 0.95rem;
}

.founder-mini-role-desc {
  font-size: 0.8rem;
  color: var(--secondary);
  margin-bottom: 0;
}

/* Client Tabs and Cards Section */
.client-tabs-nav {
  gap: 10px;
  border: none;
}

.client-tabs-nav .nav-link {
  background-color: #f8f9fa;
  color: var(--dark-brand);
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.client-tabs-nav .nav-link:hover {
  background-color: #e9ecef;
  color: var(--primary-brand);
}

.client-tabs-nav .nav-link.active {
  background-color: var(--primary-brand) !important;
  color: #ffffff !important;
  border-color: var(--primary-brand);
  box-shadow: 0 4px 12px rgba(246, 118, 39, 0.25);
}

.client-logo-grid-wrapper {
  margin-top: 35px;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 95px;
  padding: 10px;
  transition: transform 0.2s ease;
}

.client-logo-card:hover {
  transform: translateY(-2px) scale(1.05);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo-card img.client-logo-square {
  max-height: 72px;
  max-width: 85%;
}

.client-logo-card img.client-logo-landscape {
  max-height: 65px;
  max-width: 100%;
}

/* Products & Services Tab Section */
.products-tab-nav {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  border: none !important;
}

.products-tab-nav .nav-link {
  background: #f1f3f5;
  color: #4a5568;
  border: 1.5px solid transparent;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.products-tab-nav .nav-link:hover {
  background: #ffe8d6;
  color: var(--primary-brand);
  border-color: var(--primary-brand);
}

.products-tab-nav .nav-link.active {
  background: var(--primary-brand);
  color: #ffffff;
  border-color: var(--primary-brand);
  box-shadow: 0 4px 15px rgba(246, 118, 39, 0.3);
}

.products-tab-content-wrapper {
  background: #fff8f3;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(246, 118, 39, 0.1);
  margin-top: 10px;
}

.product-segment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-brand);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-chips-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--dark-brand);
  border: 1.5px solid var(--primary-brand);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.product-chip:hover {
  background: var(--primary-brand);
  color: white;
}

.product-chip i {
  color: var(--primary-brand);
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.product-chip:hover i {
  color: white;
}

.products-divider {
  border: none;
  border-top: 1px solid rgba(246, 118, 39, 0.15);
  margin: 25px 0;
}

.benefit-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.product-benefit-card {
  background: white;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(246, 118, 39, 0.1);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: #fff0e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon i {
  color: var(--primary-brand);
  font-size: 1rem;
}

.benefit-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.4;
  margin: 0;
}

.products-cta-wrapper {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(246, 118, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.products-cta-text {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

@media (max-width: 768px) {
  .products-tab-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .products-tab-nav::-webkit-scrollbar {
    display: none;
  }
  .products-tab-content-wrapper {
    padding: 25px 20px;
  }
  .benefit-cards-grid {
    grid-template-columns: 1fr;
  }
  .products-cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.vip-testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 245px 25px 25px; /* Reserve right space for absolute image */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  min-height: 330px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.vip-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.vip-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.vip-image-wrapper img {
  height: 100%; /* Force image to stretch taller than the card */
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom right;
}

.vip-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5px;
}

.vip-rating {
  color: #ffb800;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.vip-name {
  color: var(--primary-brand);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 2px;
}

.vip-role {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vip-quote {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 0;
}

.vip-quote strong {
  color: var(--dark-brand);
  font-weight: 700;
}

/* Tier 2: General Clients Reviews container */
.client-reviews-container {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.client-review-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.client-review-item {
  display: flex;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f1f3f5;
}

.client-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.client-review-avatar {
  width: 75px;
  height: 75px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 2px solid #ffffff;
}

.client-review-content {
  flex-grow: 1;
}

.client-review-name {
  font-weight: 700;
  color: var(--primary-brand);
  font-size: 1.1rem;
  margin-bottom: 1px;
}

.client-review-meta {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.client-review-text {
  font-size: 0.85rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .vip-testimonial-card {
    padding: 25px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .vip-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    top: auto;
    right: auto;
    bottom: auto;
  }
  .vip-image-wrapper img {
    height: 100%;
    object-position: center bottom;
  }
  .client-review-avatar {
    width: 60px;
    height: 60px;
  }
}

/* Global Expansion Section Styles */
.expansion-section {
  background-color: #fafafa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.brand-callout-card {
  background: #ffffff;
  border-left: 4px solid var(--primary-brand);
  padding: 20px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  margin-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-callout-title {
  font-weight: 800;
  color: var(--primary-brand);
  font-size: 1.15rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-callout-text {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

.map-image-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.map-image-wrapper:hover {
  transform: scale(1.015) translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.map-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}


