  /* ============================================= */
        /* SECTION SPACING - BASE STYLES */
        /* ============================================= */
        :root {
            --section-spacing: 4rem;
            --section-spacing-large: 6rem;
            --section-spacing-small: 2.5rem;
          }
  
          section {
            padding: var(--section-spacing) 0;
            position: relative;
          }
  
          .tf-spacing-1 {
            padding: var(--section-spacing-large) 0;
          }
  
          .section-testimonials,
          .section-location,
          .festivals-section,
          .gallery-section {
            padding: var(--section-spacing-large) 0;
          }
  
          /* ============================================= */
          /* RESPONSIVE ADJUSTMENTS */
          /* ============================================= */
          @media (max-width: 1200px) {
            :root {
              --section-spacing: 3.5rem;
              --section-spacing-large: 5.5rem;
            }
          }
  
          @media (max-width: 992px) {
            :root {
              --section-spacing: 3rem;
              --section-spacing-large: 5rem;
            }
          }
  
          @media (max-width: 768px) {
            :root {
              --section-spacing: 2.5rem;
              --section-spacing-large: 4rem;
            }
  
            /* Specific section adjustments for mobile */
            .section-testimonials .tf-grid-layout {
              gap: 2rem;
            }
          }
  
          @media (max-width: 576px) {
            :root {
              --section-spacing: 2rem;
              --section-spacing-large: 3.5rem;
              --section-spacing-small: 1.5rem;
            }
  
            /* Tighten spacing for very small screens */
            .section-testimonials,
            .section-location {
              padding: var(--section-spacing-large) 0;
            }
          }
  
          /* ============================================= */
          /* COMPONENT-SPECIFIC SPACING FIXES */
          /* ============================================= */
  
          /* Photo Section */
          .photo-section {
            margin-bottom: var(--section-spacing);
          }
  
          /* Gallery Section */
          .gallery-container {
            margin: var(--section-spacing) 0;
          }
  
          /* Testimonials Section */
          .section-testimonials.style-1 {
            padding-bottom: calc(var(--section-spacing-large) - 1rem);
          }
  
          /* Location Section */
          .section-location .map-container {
            margin-bottom: 2rem;
          }
  
          /* Festivals Section */
          .festivals-grid {
            margin-top: 2rem;
            gap: 1.5rem;
          }
  
          /* ============================================= */
          /* SPACING UTILITY CLASSES */
          /* ============================================= */
          .mt-20 {
            margin-top: 1.25rem;
          }
  
          .mb-48 {
            margin-bottom: 3rem;
          }
  
          @media (max-width: 768px) {
            .mb-48 {
              margin-bottom: 2rem;
            }
  
            .mt-20 {
              margin-top: 1rem;
            }
          }
  
          /* ============================================= */
          /* REMOVE HARDCODED SPACING ELEMENTS */
          /* ============================================= */
          /* These styles will visually hide <br> tags used for spacing */
          br {
            display: none;
            content: " ";
          }
  
          /* ============================================= */
          /* ANIMATION ADJUSTMENTS FOR SPACING */
          /* ============================================= */
          .wow.animate__fadeInUp {
            margin-bottom: 1.5rem;
          }
  
          /* ============================================= */
          /* BUTTON SPACING */
          /* ============================================= */
          .get-directions-btn {
            margin-top: 2rem;
          }
  
          .view-more-btn {
            margin: 2rem auto 0;
          }
  
          /* ============================================= */
          /* BUILDING-SPECIFIC TAGS */
          /* ============================================= */
          .bg-askhome-b1 {
            background-color: #EF4136 !important;
          }
  
          .bg-askhome-b2 {
            background-color: #FAB49B !important;
            color: #333 !important;
          }
  
          .bg-askhome-b3 {
            background-color: #5E0500 !important;
          }
  
          .flat-tag {
            padding: 6px 16px;
            border-radius: 6px;
            font-size: 1.3rem;
            font-weight: 600;
            line-height: 1.2;
          }
  
          @media (max-width: 768px) {
            .flat-tag {
              padding: 5px 12px;
              font-size: 1.1rem;
            }
          }
  
          /* ============================================= */
          /* PRICE STYLING */
          /* ============================================= */
          .price-month {
            font-size: 12px;
            color: rgb(130, 130, 130);
            position: absolute;
          }
  
          /* FESTIVALS SECTION STYLES */
          .festivals-section {
            padding: 80px 0;
            background-color: #f9f9f9;
          }
  
          .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
          }
  
          .section-header {
            text-align: center;
            margin-bottom: 50px;
          }
  
          .section-title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
            position: relative;
          }
  
          .section-subtitle {
            font-size: 1.2rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
          }
  
          .festivals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
          }
  
          .festival-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
  
          .festival-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
          }
  
          .card-image {
            position: relative;
            padding-top: 100%;
            /* Square aspect ratio */
            overflow: hidden;
          }
  
          .card-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
          }
  
          .festival-card:hover .card-image img {
            transform: scale(1.1);
          }
  
          .card-content {
            padding: 25px;
            text-align: center;
          }
  
          .card-content h3 {
            margin: 0;
            color: #333;
            font-size: 1.5rem;
            font-weight: 600;
          }
  
          /* Responsive Adjustments */
          @media (max-width: 992px) {
            .festivals-grid {
              gap: 20px;
            }
          }
  
          @media (max-width: 768px) {
            .section-title {
              font-size: 2rem;
            }
  
            .section-subtitle {
              font-size: 1.1rem;
            }
  
            .festivals-grid {
              grid-template-columns: repeat(1, 1fr);
              /* 2 columns on tablet */
            }
  
            .card-content h3 {
              font-size: 1.4rem;
            }
          }
  
          @media (max-width: 576px) {
            .festivals-section {
              padding: 60px 0;
            }
  
            .festivals-grid {
              grid-template-columns: repeat(2, 1fr);
              /* 2x2 grid on mobile */
              gap: 15px;
            }
  
            .card-content {
              padding: 15px;
            }
          }
  
          .get-directions-btn {
            display: inline-block;
            background-color: #EF4136;
            color: #fff;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
          }
  
          .get-directions-btn:hover {
            background-color: #d93b2f;
            color: #fff;
            text-decoration: none;
          }
  
          /* Our Location Section */
          .section-location {
            padding: 80px 0;
            background: #f9f9f9;
          }
  
          .map-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 500px;
            margin-bottom: 30px;
          }
  
          .map-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
          }
  
          .google-map {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%) contrast(110%) brightness(95%);
            transition: all 0.5s ease;
          }
  
          .google-map:hover {
            filter: grayscale(0%) contrast(100%) brightness(100%);
          }
  
          .location-card {
            position: absolute;
            bottom: 30px;
            left: 30px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 300px;
            display: flex;
            gap: 15px;
            z-index: 10;
            animation: fadeInUp 0.8s ease;
          }
  
          .card-icon {
            font-size: 24px;
            color: #EF4136;
            margin-top: 5px;
          }
  
          /* Responsive Styles */
          @media (max-width: 992px) {
            .map-container {
              height: 400px;
              margin-bottom: 25px;
            }
  
            .text-center.mt-5 {
              margin-top: 1.5rem !important;
            }
          }
  
          @media (max-width: 768px) {
            .map-container {
              height: 350px;
              margin-bottom: 20px;
            }
  
            .map-wrapper {
              height: 100%;
            }
  
            .text-center.mt-5 {
              margin-top: 1rem !important;
            }
          }
  
          @media (max-width: 576px) {
            .section-location {
              padding: 60px 0;
            }
  
            .map-container {
              height: 300px;
              border-radius: 8px;
              margin-bottom: 15px;
            }
  
            .heading-section.mb-48 {
              margin-bottom: 30px !important;
            }
  
            .text-center.mt-5 {
              margin-top: 0.75rem !important;
            }
          }
  
          /* Animation */
          @keyframes fadeInUp {
            from {
              opacity: 0;
              transform: translateY(20px);
            }
  
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }
  
  
  
          /* FAQ Section Styles */
          .faq-section {
            background: #f9f9f9;
            padding: 80px 0;
          }
  
          .faq-container {
            max-width: 800px;
            margin: 0 auto;
          }
  
          .faq-item {
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            background: white;
            border: 1px solid #eee;
          }
  
          .faq-question {
            padding: 18px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
          }
  
          .faq-question:hover {
            background: #fff9f9;
          }
  
          .faq-question h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            flex: 1;
          }
  
          .toggle-icon {
            font-size: 20px;
            font-weight: bold;
            color: #EF4136;
            margin-left: 15px;
            min-width: 20px;
            text-align: center;
          }
  
          .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
          }
  
          .faq-item.open .faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
          }
  
          .faq-item.open .toggle-icon {
            transform: rotate(0deg);
          }
  
          .faq-item:not(.open) .toggle-icon {
            transform: rotate(0deg);
          }
  
          .faq-answer p {
            margin: 0;
            color: #555;
            line-height: 1.6;
          }
  
          /* Responsive Styles */
          @media (max-width: 768px) {
            .faq-question {
              padding: 15px 20px;
            }
  
            .faq-question h3 {
              font-size: 16px;
            }
  
            .faq-item.open .faq-answer {
              padding: 0 20px 15px;
            }
          }
  
          @media (max-width: 480px) {
            .faq-question {
              padding: 12px 15px;
            }
  
            .faq-question h3 {
              font-size: 15px;
            }
  
            .toggle-icon {
              font-size: 18px;
              margin-left: 10px;
            }
          }
  
          /* WhatsApp Floating Button */
          .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
          }
  
          .whatsapp-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
          }
  
          .whatsapp-link i {
            font-size: 32px;
          }
  
          .whatsapp-link:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
          }
  
          .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: white;
            color: #333;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            white-space: nowrap;
          }
  
          .whatsapp-link:hover .whatsapp-tooltip {
            opacity: 1;
          }
  
          /* Mobile Responsive */
          @media (max-width: 768px) {
            .whatsapp-float {
              bottom: 20px;
              right: 20px;
            }
  
            .whatsapp-link {
              width: 50px;
              height: 50px;
            }
  
            .whatsapp-link i {
              font-size: 28px;
            }
  
            .whatsapp-tooltip {
              font-size: 12px;
              padding: 6px 10px;
              right: 60px;
            }
          }
  
          /* Very small devices */
          @media (max-width: 480px) {
            .whatsapp-float {
              bottom: 25px;
              right: 15px;
            }
  
            .whatsapp-link {
              width: 65px;
              height: 65px;
            }
  
            .whatsapp-link i {
              font-size: 24px;
            }
          }


    /* Video Preview Styles */
    .video-preview {
        position: relative;
        width: 100%;
        padding-top: 56.25%;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
        cursor: pointer;
        background: #000;
      }
  
      .video-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }
  
      .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background-color: rgba(239, 65, 54, 0.9);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
      }
  
      /* Video Modal Styles */
      .video-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 99999;
        align-items: center;
        justify-content: center;
      }
  
      .view-video-btn {
        background: #EF4136;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
        transition: background 0.3s;
      }
  
      .view-video-btn:hover {
        background: #d93b2f;
      }
  
      .modal-content {
        position: relative;
        width: 90%;
        max-width: 800px;
        background: #111;
        border-radius: 8px;
        overflow: hidden;
      }
  
      .close-modal {
        position: absolute;
        top: 10px;
        right: 15px;
        color: white;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        z-index: 2;
      }
  
      .video-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
      }
  
      #roomVideo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
      }
  
      .close-btn {
        display: block;
        width: 100%;
        padding: 12px;
        background: #EF4136;
        color: white;
        border: none;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
      }
  
      /* Price Details */
      .price-details {
        font-size: 14px;
      }
  
      .price-option {
        margin-bottom: 4px;
      }
  
      .price-option strong {
        color: #EF4136;
      }
  
      .price-note small {
        color: #666;
      }
  
      /* Mobile Styles */
      @media (max-width: 768px) {
        .modal-content {
          width: 95%;
        }
        .video-container {
        position: relative;
        width: 100%;
        height: 60vh;
        padding-bottom: 56.25%;
      }
  
  
        #roomVideo {
          object-fit: contain;
        }
      }
  
      .photo-section {
        position: relative;
        width: 100%;
        height: 60vh;
        /* Reduced height */
        overflow: hidden;
      }
  
      .photo-slider {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: opacity 1s ease-in-out;
      }
  
      /* .dark-overlay {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  background: rgba(0, 0, 0, 0.3);
                  z-index: 2;
              } */
  
      .text-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        text-align: center;
      }
  
      .logo {
        max-width: 200px;
        height: auto;
      }
  
      .gallery-container {
        text-align: center;
      }
  
      .gallery {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        max-height: none;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
      }
  
      .gallery-item {
        width: calc(25% - 10px);
        border-radius: 10px;
        overflow: hidden;
      }
  
      .gallery-item img {
        width: 100%;
        display: block;
      }
  
      .hidden-gallery {
        display: none;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
      }
  
      .visible-gallery {
        display: block;
        opacity: 1;
      }
  
      .btn {
        padding: 10px 20px;
        font-size: 16px;
        margin-top: 10px;
        cursor: pointer;
      }
  
  
      @media (max-width: 768px) {
        .gallery-item {
          width: calc(50% - 10px);
        }
      }
  
      @media (max-width: 600px) {
  
        #prop-cat h5 {
          font-size: 14px !important;
          overflow: hidden;
          white-space: nowrap;
        }
      }
  
  
        /* Building-specific tag colors */
        .bg-askhome-b1 {
          background-color: #EF4136 !important;
          /* Red for B1 */
        }
  
        .bg-askhome-b2 {
          background-color: #FAB49B !important;
          /* Peach for B2 */
          color: #333 !important;
          /* Dark text for light background */
        }
  
        .bg-askhome-b3 {
          background-color: #5E0500 !important;
          /* Dark red for B3 */
        }
  
        /* Price styling */
        .price-month {
          font-size: 12px;
          color: rgb(130, 130, 130);
          position: absolute;
        }
  
        /* Tag styling */
        .flat-tag {
          padding: 4px 12px;
          border-radius: 4px;
          display: inline-block;
          font-size: 0.85rem;
        }
  
        /* Card hover effect */
        .box-house:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          transition: all 0.3s ease;
        }
  
        /* Responsive adjustments */
        @media (max-width: 768px) {
          .flat-tag {
            font-size: 0.75rem;
            padding: 3px 8px;
          }
        }
  
        /* Building tags with increased size */
        .flat-tag {
          padding: 6px 16px;
          border-radius: 6px;
          font-size: 1.3rem;
          font-weight: 600;
          line-height: 1.2;
        }
  
        /* Your existing color classes */
        .bg-askhome-b1 {
          background-color: #EF4136 !important;
        }
  
        .bg-askhome-b2 {
          background-color: #FAB49B !important;
          color: #333 !important;
        }
  
        .bg-askhome-b3 {
          background-color: #5E0500 !important;
        }
  
        /* Mobile adjustment */
        @media (max-width: 768px) {
          .flat-tag {
            padding: 5px 12px;
            font-size: 1.1rem;
          }
        }