  /* ======================================================
    VIDEO TESTIMONIALS
  ====================================================== */

  .testimonial-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
     grid-auto-flow: row; 
  }

  .testimonial-video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
  }

  .testimonial-video-section {
    position: relative;
    background: linear-gradient(180deg,
        #ffffff 0%,
        #fff5f5 35%,
        #ffe4e6 100%);
    overflow: hidden;
  }

  .testimonial-video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 40% at 20% 20%,
        rgba(239, 68, 68, 0.18),
        transparent 70%),
      radial-gradient(40% 30% at 85% 70%,
        rgba(251, 113, 133, 0.14),
        transparent 70%);
    pointer-events: none;
  }

  /* ======================================================
    DESTINATION SECTION
  ====================================================== */
  /* ======================================================
    SINGLE GALLERY BANNER (RESPONSIVE IMAGES)
  ====================================================== */

  .gallery-banner-card {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    text-decoration: none;

    aspect-ratio: 16 / 9;
    background: #e5e7eb;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);

    transition:
      transform 0.45s cubic-bezier(.22, 1, .36, 1),
      box-shadow 0.45s ease;
  }

  .gallery-banner-card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.25);
  }

  /* Images */

  .gallery-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .gallery-banner-card:hover .gallery-banner-img {
    transform: scale(1.04);
  }

  /* Default visibility */

  .desktop-banner {
    display: block;
  }

  .mobile-banner {
    display: none;
  }

  /* Liquid glass overlay */

  .gallery-banner-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: transparent;
    /* IMPORTANT – no dark gradient */
  }

  .gallery-banner-content {
    padding: 26px 38px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.18);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.45),
      inset 0 -1px 0 rgba(255, 255, 255, 0.15);

    /* NO backdrop blur */
  }



  /* Text */

  .gallery-banner-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    color: #ffffff;

    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.6),
      0 6px 12px rgba(0, 0, 0, 0.5),
      0 12px 28px rgba(0, 0, 0, 0.45);
  }


  .gallery-banner-content span {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);

    font-size: 14px;
    font-weight: 600;
    color: #ffffff;

    background: rgba(0, 0, 0, 0.22);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .gallery-banner-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0.35),
        rgba(255, 255, 255, 0.05),
        transparent);

    opacity: 0.6;
    pointer-events: none;
  }


  /* ======================================================
    MOBILE (4:3 + IMAGE SWITCH)
  ====================================================== */
  @media (max-width: 768px) {

    .gallery-banner-card {
      aspect-ratio: 4 / 3;
      border-radius: 22px;
    }

    /* IMPORTANT FIX */
    .gallery-banner-img {
      object-fit: contain;
      /* instead of cover */
      background: #0f172a;
      /* optional subtle bg for empty space */
    }

    .desktop-banner {
      display: none;
    }

    .mobile-banner {
      display: block;
    }

    .gallery-banner-content {
      padding: 16px 18px;
    }

    .gallery-banner-content h3 {
      font-size: 19px;
      text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 6px 12px rgba(0, 0, 0, 0.5),
        0 12px 28px rgba(0, 0, 0, 0.45);
    }
  }




  /* ======================================================
    TESTIMONIAL CTA
  ====================================================== */

  .testimonial-cta {
    position: relative;
    background: linear-gradient(180deg,
        #fff7ed 0%,
        #fff1c1 45%,
        #fde68a 100%);
    overflow: hidden;
  }

  .testimonial-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 40% at 20% 20%,
        rgba(255, 255, 255, 0.65),
        transparent 70%),
      radial-gradient(40% 30% at 85% 60%,
        rgba(251, 191, 36, 0.25),
        transparent 70%);
    pointer-events: none;
  }

  .testimonial-cta-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(18px) saturate(140%);
    border-radius: 28px;
    padding: 48px;
    box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.15),
      inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  }

  /* CTA Image */

  .testimonial-cta-image {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    max-height: 500px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
  }

  .testimonial-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* CTA Form */

  .testimonial-cta-form h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
  }

  .testimonial-cta-form p {
    margin-top: 8px;
    font-size: 1.05rem;
    color: #374151;
  }

  .testimonial-cta-form form {
    margin-top: 28px;
    display: grid;
    gap: 18px;
  }

  .testimonial-cta-form input {
    height: 56px;
    padding: 0 18px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    font-size: 0.95rem;
    background: #ffffff;
  }

  .testimonial-cta-form input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.25);
  }

  /* ================================
    CTA BUTTON – WRITE A REVIEW
  ================================ */

  .cta-button {
    height: 56px;
    padding: 0 36px;
    border-radius: 999px;

    background: linear-gradient(135deg,
        #facc15,
        #f59e0b);

    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;

    border: none;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;

    box-shadow:
      0 12px 24px rgba(245, 158, 11, 0.35);
  }

  /* Hover */
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
      0 18px 36px rgba(245, 158, 11, 0.45);
  }

  /* Active */
  .cta-button:active {
    transform: translateY(0);
    box-shadow:
      0 10px 18px rgba(245, 158, 11, 0.3);
  }

  /* Focus (accessibility) */
  .cta-button:focus-visible {
    outline: none;
    box-shadow:
      0 0 0 4px rgba(245, 158, 11, 0.4),
      0 12px 24px rgba(245, 158, 11, 0.35);
  }

  /* Disabled (future-safe) */
  .cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
  }

  /* ======================================================
    RESPONSIVE
  ====================================================== */

  @media (max-width: 768px) {
    .testimonial-cta-wrapper {
      grid-template-columns: 1fr;
      padding: 28px;
    }

    .testimonial-cta-image {
      min-height: 220px;
      max-height: 260px;
    }
  }

  /* ======================================================
    GALLERY MODAL – APPLE STYLE
  ====================================================== */

  .gallery-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
  }

  .gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Background blur */
  .gallery-backdrop {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.45);
  }

  /* Glass card */
  .glass-card {
    position: relative;
    width: min(1100px, 92%);
    max-height: 90vh;
    padding: 28px;
    border-radius: 26px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);

    box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.35),
      inset 0 0 0 1px rgba(255, 255, 255, 0.6);

    animation: galleryIn 0.4s ease;
    overflow-y: auto;
  }

  @keyframes galleryIn {
    from {
      opacity: 0;
      transform: translateY(20px) scale(0.97);
    }

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

  /* Header */
  .gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
  }

  .gallery-header h3 {
    font-size: 22px;
    font-weight: 800;
  }

  .gallery-header span {
    font-size: 14px;
    opacity: 0.7;
  }

  /* Close */
  .gallery-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
  }

  /* ======================================================
    GALLERY GRID
  ====================================================== */

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
  }

  .gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;

    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }

  .gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  /* ======================================================
    FULLSCREEN IMAGE VIEWER
  ====================================================== */

  .image-viewer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
  }

  .image-viewer.active {
    display: flex;
  }

  .image-viewer img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
  }

  .viewer-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }

  /* ======================================================
    RESPONSIVE
  ====================================================== */

  @media (max-width: 640px) {
    .glass-card {
      padding: 18px;
      border-radius: 20px;
    }

    .gallery-header h3 {
      font-size: 18px;
    }
  }

  /* =========================================
   TESTIMONIAL SLIDER STYLING (CITY PAGE STYLE)
========================================= */

  /* Swiper safety (REQUIRED) */
  .swiper-wrapper {
    display: flex;
    align-items: center;
  }

  .swiper {
    overflow: hidden;
  }

  .swiper-slide {
    display: flex;
    height: auto;
    justify-content: center;
    box-sizing: border-box;
  }

  /* Card container */
  .testimonial-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 0 0 auto;

    margin: 10px 15px 20px;
    padding: 34px 26px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);

    border: 1px solid rgba(255, 255, 255, 0.45);

    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.08),
      inset 0 0 0 1px rgba(255, 255, 255, 0.35);

    transition: transform 0.35s ease, box-shadow 0.35s ease;
    min-height: 360px;
  }

  /* Hover (single clean rule) */
  .testimonial-wrapper:hover {
    transform: translateY(-6px);
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.12),
      inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  }

  /* Content */
  .testimonial-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Review text */
  .testimonial-desc {
    padding-left: 0 !important;
    font-size: 15.5px;
    line-height: 1.65;
    color: #334155;
    font-style: italic;

    max-height: 120px;
    overflow: hidden;
    position: relative;
  }

  /* Apple fade */
  .testimonial-desc:not(.expanded)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 42px;
    background: linear-gradient(to top,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.6),
        transparent);
  }

  .testimonial-desc.expanded {
    max-height: none;
  }

  /* Read more */
  .read-more-btn {
    margin-top: auto;
    align-self: flex-start;

    padding: 8px 14px;
    border-radius: 999px;

    font-size: 13px;
    font-weight: 600;
    color: #0b73de;

    background: rgba(11, 115, 222, 0.08);
    backdrop-filter: blur(6px);

    cursor: pointer;
    transition: all 0.25s ease;
  }

  .read-more-btn:hover {
    background: rgba(11, 115, 222, 0.15);
    transform: translateY(-1px);
  }

  /* Avatar */
  .testimonial-avatar,
  .d-flex.align-items-center.gap-15 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0b73de;
  }

  /* Name */
  .avatar-meta-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1c2539;
  }

  .avatar-meta p {
    font-size: 14px;
    margin: 0;
    color: #666;
  }

  /* Swiper spacing for pagination */
  .swiper.testimonial-active-two {
    padding-bottom: 55px;
  }

  /* Pagination */
  .bd-pagination {
    margin-top: 15px;
    position: relative;
  }

  .bd-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
  }

  .bd-pagination .swiper-pagination-bullet-active {
    background-color: #0b73de;
    width: 25px;
    border-radius: 5px;
  }

  /* Active slide emphasis */
  .swiper-slide-active .testimonial-wrapper {
    transform: scale(1.02);
  }

  .swiper-slide:not(.swiper-slide-active) .testimonial-wrapper {
    opacity: 0.85;
    transform: scale(0.98);
  }

  /* =========================================
   GREEN GLASS BACKGROUND – TESTIMONIALS
========================================= */

  .testimonial-glass-green {
    position: relative;
    background: linear-gradient(180deg,
        #f6fff9 0%,
        #ecfdf3 40%,
        #e7fbe9 100%);
    overflow: hidden;
  }

  .testimonial-glass-green::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(55% 35% at 20% 20%,
        rgba(34, 197, 94, 0.18),
        transparent 70%),
      radial-gradient(45% 30% at 80% 70%,
        rgba(22, 163, 74, 0.14),
        transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
  }

  .testimonial-glass-green>* {
    position: relative;
    z-index: 1;
  }

  /* ===============================
   MOBILE FIX – TESTIMONIAL SLIDER
=============================== */

  @media (max-width: 768px) {

    .swiper.testimonial-active-two {
      padding-left: 0;
      padding-right: 0;
    }

    .swiper-slide {
      justify-content: center;
    }

    .testimonial-wrapper {
      width: 100%;
      max-width: 100%;
      margin: 10px 0 20px;
      margin-left: 0;
      margin-right: 0;
    }

    .bd-pagination {
      display: flex;
      justify-content: center;
    }
  }