/* Reset default browser styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --main-color: #b8860b;
      --black: #000;
      --white: #fff;
      --gray: #666;
      --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
      --font-family: 'Inter', sans-serif;
      --gold: #D4AF37;
      --gold-light: #F4E5A1;
      --gold-dark: #B8941F;
      --black: #1A1A1A;
      --white: #FFFFFF;
      --gray-light: #F8F8F8;
      --gray-dark: #333333;
    --header-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    }

    html {
      margin: 0;
      padding: 0;
      scroll-behavior: smooth;
    }

    main {
      overflow: hidden;
    }

    body {
      margin: 0;
      padding: 0;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    a:hover {
      color: #b8860b;
    }

    /* Breadcrumb Styles */
.breadcrumb-section {
  padding: 40px 20px 20px;
  border-top: 1px solid #ddd;
  margin: 0 10px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.breadcrumb-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--body-font);
  font-size: 1.1em;
  color: var(--gray-dark);
  line-height: 1.8;
  gap: 5px;
  letter-spacing: 0.5px;
}

.breadcrumb-link {
  text-decoration: none;
  color: var(--gray-dark);
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: var(--gold);
}

.breadcrumb-divider {
  margin: 0 8px;
  color: #aaa;
}

.breadcrumb-current {
  font-weight: 600;
  color: var(--black);
}

.breadcrumb-title-wrap {
  animation: fadeInUp 0.6s ease-out forwards;
}

.breadcrumb-title {
  font-family: var(--header-font);
  font-size: 4rem;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  text-align: right;
  letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    /* Carousel Section - ENHANCED FOR RESPONSIVENESS */
    .carousel-section {
      position: relative;
      width: 100%;
      height: 80vh;
      min-height: 400px;
      overflow: hidden;
    }

    .background-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    .carousel-container {
      position: absolute;
      bottom: 60px; 
      height: 200px; 
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      z-index: 2;
      
      gap: 20px;
    }

    .thumbnails {
      display: flex;
      align-items: center;
      gap: 24px;
      overflow-x: auto;
      overflow-y: hidden;
      width: 100%;
      justify-content: center;
      padding: 10px 20px;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none; /* IE and Edge */
      margin: 0 10px;
    }

    .thumbnails::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }

    .thumbnails img {
      flex: 0 0 auto;
      width: 180px;    
      height: 120px;
      border-radius: 20px;
      border: 5px solid white;
      object-fit: cover;
      transition: transform 0.3s, opacity 0.3s;
      opacity: 0.6;
      cursor: pointer;
    }

    .thumbnails img:hover {
      transform: scale(1.05);
      opacity: 0.9;
    }

    .thumbnails img.active {
      width: 300px;       
      height: 200px;
      opacity: 1;
      transform: scale(1.1);
      z-index: 3;
    }

    .scroll-btn {
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      transition: background-color 0.3s ease;
      flex-shrink: 0;
      margin: 0 5px;
    }

    .scroll-btn:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }

    .left,
    .right {
      z-index: 3;
    }

    /* Property Description Section */
    .property-description-section {
      padding: 60px 20px;
      background-color: #f8f8f8;
    }

    .property-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .description-box,
    .address-box,
    .details-box,
    .amenities-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .description-box h2,
    .address-box h2,
    .details-box h2,
    .amenities-box h2 {
      font-size: 1.8rem;
      color: #b8860b;
      margin-bottom: 20px;
    }

    .description-box p {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .address-details,
    .details,
    .amenities-details {
      list-style: none;
      font-size: 16px;
      color: #333;
      line-height: 1.8;
    }

    .address-details li,
    .details li,
    .amenities-details li {
      margin-bottom: 10px;
    }

    .address-details strong,
    .details strong {
      font-weight: 600;
      color: #222;
    }

    /* Amenities Grid Layout - ENHANCED FOR RESPONSIVENESS */
.amenities-details {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.amenities-details li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-weight: 500;
}

.amenities-details li i {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

    /* Map Section */
    .map-section {
      margin: 0;
      padding: 0 20px;
    }

    .map-section h2 {
      text-align: center;
      font-size: 2em;
      margin: 40px 0 20px;
    }

    .map-container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .map-container iframe {
      width: 100%;
      height: 450px;
      border: 0;
      border-radius: 16px;
      display: block;
    }

    .map-container p {
      text-align: center;
      padding: 20px;
      font-size: 16px;
      color: #555;
      background-color: #f9f9f9;
      border-bottom-left-radius: 16px;
      border-bottom-right-radius: 16px;
      margin: 0;
    }

    /* Video Box */
    .video-box {
      padding: 40px 20px;
      text-align: center;
    }

    .video-box h2 {
      font-size: 2rem;
      color: #b8860b;
      margin-bottom: 20px;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      justify-content: center;
    }

    /* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #A1773D 0%, #F5E6A3 50%, #A1773D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(161, 119, 61, 0.4);
  border: 2px solid transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
      border-color: #ffffff;
    }

    .back-to-top::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: linear-gradient(135deg, #f4d03f, #d4af37);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .back-to-top:hover::before {
      opacity: 1;
    }

    .back-to-top-icon {
      font-size: 1.5em;
      color: #1a1a1a;
      font-weight: bold;
      position: relative;
      z-index: 2;
      transition: color 0.3s ease;
    }

    .back-to-top:hover .back-to-top-icon {
      color: #000;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    /* RESPONSIVE DESIGN - MOBILE FIRST APPROACH */
    
    /* Mobile Phones (up to 480px) */
    @media (max-width: 480px) {
      .breadcrumb-section {
        padding: 20px 15px 15px;
        margin: 0 5px;
      }

      .breadcrumb-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }

      .breadcrumb-title {
        font-size: 1.8rem;
        text-align: left;
      }

      .breadcrumb-links {
        font-size: 14px;
      }

      /* Carousel Responsive */
      .carousel-section {
        height: 50vh;
        min-height: 300px;
      }

      .carousel-container {
        bottom: 20px;
        height: 100px;
        width: 95%;
        gap: 15px;
      }

      .thumbnails {
        gap: 10px;
        padding: 5px 15px;
        margin: 0 5px;
      }

      .thumbnails img {
        width: 80px;
        height: 60px;
        border-radius: 10px;
        border: 3px solid white;
      }

      .thumbnails img.active {
        width: 120px;
        height: 80px;
        transform: scale(1.05);
      }

      .scroll-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
      }

      /* Property Description */
      .property-description-section {
        padding: 30px 15px;
      }

      .property-container {
        gap: 25px;
      }

      .description-box,
      .address-box,
      .details-box,
      .amenities-box {
        padding: 20px;
      }

      .description-box h2,
      .address-box h2,
      .details-box h2,
      .amenities-box h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
      }

      .amenities-details {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      /* Map Section */
      .map-section {
        padding: 0 15px;
      }

      .map-section h2 {
        font-size: 1.5rem;
        margin: 30px 0 15px;
      }

      .map-container {
        border-radius: 10px;
      }

      .map-container iframe {
        height: 250px;
        border-radius: 10px;
      }

      .map-container p {
        font-size: 14px;
        padding: 15px;
      }

      /* Video Box */
      .video-box {
        padding: 30px 15px;
      }

      .video-box h2 {
        font-size: 1.5rem;
      }

      /* Back to Top */
      .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
      }

      .back-to-top-icon {
        font-size: 1.2em;
      }
    }

    /* Tablets (481px to 768px) */
    @media (min-width: 481px) and (max-width: 768px) {
      .breadcrumb-title {
        font-size: 2.2rem;
      }

      /* Carousel Responsive */
      .carousel-section {
        height: 60vh;
        min-height: 350px;
      }

      .carousel-container {
        bottom: 40px;
        height: 150px;
        width: 90%;
        gap: 18px;
      }

      .thumbnails {
        gap: 16px;
        padding: 8px 18px;
        margin: 0 8px;
      }

      .thumbnails img {
        width: 120px;
        height: 80px;
        border-radius: 15px;
      }

      .thumbnails img.active {
        width: 180px;
        height: 120px;
        transform: scale(1.08);
      }

      .scroll-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
      }

      .property-description-section {
        padding: 40px 20px;
      }

      .property-container {
        gap: 30px;
      }

      .description-box,
      .address-box,
      .details-box,
      .amenities-box {
        padding: 25px;
      }

      .amenities-details {
        grid-template-columns: repeat(2, 1fr);
      }

      .map-container iframe {
        height: 350px;
      }

      .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
      }
    }

    /* Large Tablets/Small Desktop (769px to 1024px) */
    @media (min-width: 769px) and (max-width: 1024px) {
      .breadcrumb-section {
        padding: 35px 25px 20px;
        margin: 0 15px;
      }

      .breadcrumb-title {
        font-size: 2.8rem;
      }

      .carousel-container {
        bottom: 50px;
        height: 180px;
        gap: 20px;
      }

      .thumbnails {
        gap: 20px;
        padding: 10px 20px;
        margin: 0 10px;
      }

      .thumbnails img {
        width: 140px;
        height: 100px;
      }

      .thumbnails img.active {
        width: 220px;
        height: 150px;
      }

      .amenities-details {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Desktop (1025px and up) */
    @media (min-width: 1025px) {
      .breadcrumb-section {
        padding: 40px 32px 20px;
        margin: 0 20px;
      }

      .breadcrumb-wrapper {
        flex-wrap: nowrap;
        gap: 0;
      }

      .breadcrumb-links {
        font-size: 20px;
      }

      .breadcrumb-title {
        font-size: 3.5rem;
        text-align: right;
      }

      .amenities-details {
        grid-template-columns: repeat(4, 1fr);
      }
    }

          /* Hide scroll buttons on touch devices */
    @media (hover: none) and (pointer: coarse) {
      .scroll-btn {
        display: none;
      }
      
      .carousel-container {
        padding: 0;
        gap: 0;
      }
      
      .thumbnails {
        width: 100%;
        justify-content: center;
        margin: 0;
        padding: 10px 15px;
      }
    }
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: black;
  overflow: hidden;
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#propertyVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#playButton:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
/* Video controls */
.video-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 0 10px;
}
.seek-bar {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #d4af37 0%, #d4af37 0%, #e0e0e0 0%, #e0e0e0 100%);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.seek-bar:hover {
  background: linear-gradient(to right, #d4af37 0%, #d4af37 0%, #f4e5a1 0%, #f4e5a1 100%);
}
.seek-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #d4af37;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.seek-bar:hover::-webkit-slider-thumb {
  transform: scale(1.2);
}
.seek-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #d4af37;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}
.seek-bar:hover::-moz-range-thumb {
  transform: scale(1.2);
}
.seek-bar::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 4px;
}
.seek-bar::-moz-range-track {
  height: 8px;
  border-radius: 4px;
}
.video-time {
  font-size: 14px;
  color: #333;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}    