* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-bg: #333;
  --card-bg: #444;
  --text-light: #fff;
  --text-muted: #aaa;
  --accent-gold: #d4af37;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  --dark-bg: #333;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* Hero Section */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f8f9fa" width="1200" height="800"/><rect fill="%23e9ecef" x="0" y="0" width="400" height="800"/><rect fill="%23ffc107" x="100" y="150" width="200" height="500" opacity="0.8"/><rect fill="%23ffffff" x="450" y="0" width="750" height="800"/></svg>');
  background-size: cover; /* ← Changed from 100% 100% */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  height: 60px;
  margin-right: 10px;
}

.navbar-brand .brand-text {
  font-size: 32px;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 35px;
    margin-right: 6px;
  }

  .navbar-brand .brand-text {
    font-size: 16px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: top 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
  background: #000;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: cover;

  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo:hover {
  transform: translateY(-2px);
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
}

.btn-contact {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: white;
  color: #333;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 30px;
  margin-right: 15px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

/* Search Bar Wrapper */
.search-box {
  max-width: 700px;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50px;
  padding: 5px 10px; /* reduced padding for less height */
  backdrop-filter: blur(6px);
  align-items: center;
  transition: all 0.3s ease;
  height: 65px; /* fixed smaller height */
}

/* Align everything vertically */
.search-box .input-group-text,
.search-box .form-control,
.search-box .btn {
  height: 100%;
  display: flex;
  align-items: center; /* center vertically */
  font-size: 1.2rem; /* match text size */
  line-height: 1;
}

/* Input field */
.search-box .form-control {
  flex: 1;
  padding: 8px 8px 4px; /* more padding-top, less padding-bottom */
  line-height: 1.6;
  font-size: 1.1rem; /* slightly smaller font */
  color: #fff;
  background: transparent;
  border: none;
}

.search-box .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-primary-custom {
  background: #ffc107;
  border: none;
  color: #333;
}

.btn-primary-custom:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-custom:hover {
  background: white;
  color: #333;
}

/* Company Logos */
.trusted-companies {
  background-color: #000;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
}

.company-logos img:hover {
  opacity: 1;
}

/* Properties Section */
.properties-section {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

@media (max-width: 768px) {
  .properties-section {
    padding-top: 120px !important;
    margin-top: 20px !important;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .navbar-brand .brand-text {
    display: none;
  }
  
  .navbar-brand img {
    margin-right: 0;
  }
  
  .hero-bg-desktop {
    display: none !important;
  }
  
  .hero-bg-mobile {
    display: block !important;
  }
}

@media (min-width: 769px) {
  .hero-bg-mobile {
    display: none !important;
  }
  
  .hero-bg-desktop {
    display: block !important;
  }
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: white;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.filter-buttons {
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #444;
  color: #ccc;
  padding: 8px 20px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ffc107;
  color: #333;
  border-color: #ffc107;
}

/* Custom CSS for the properties section */
.properties-section {
  background-color: #121212;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 10px;
}

.card {
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.bg-black {
  background-color: #1e1e1e !important;
}

.property-card {
  background: #2c2c2c;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

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

.property-image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

.property-info {
  padding: 20px;
}

.property-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.property-meta {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 14px;
}

.property-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.property-meta i {
  margin-right: 5px;
}

/* Prime Locations Section */
.locations-section {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.location-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.location-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.location-text p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-learn-more {
  background: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background: #ffc107;
  color: #333;
}

.location-image {
  flex: 1;
  height: 300px;
  background: linear-gradient(45deg, #666, #999);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}

/* Experience Section */
.experience-section {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.experience-image {
  flex: 1;
  height: 300px;
  background: linear-gradient(45deg, #333, #666);
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}

.experience-text {
  flex: 1;
}

.experience-label {
  color: #ffc107;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.experience-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.experience-text p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Features Section */
.features-section {
  background: #1a1a1a;
  padding: 80px 0;
  color: white;
}

.features-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: white;
}

.feature-card {
  background: #2c2c2c;
  padding: 40px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: #333;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 24px;
  color: #333;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: white;
}

.feature-description {
  color: #ccc;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23f8f9fa" width="1200" height="600"/><rect fill="%23ffffff" x="800" y="0" width="400" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: white;
  position: relative;
}

.cta-form {
  background: rgba(0, 0, 0, 0.8);
  padding: 50px;
  border-radius: 20px;
  max-width: 500px;
}

.cta-form h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-form p {
  color: #ccc;
  margin-bottom: 30px;
}

.form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffc107;
  color: white;
  box-shadow: none;
}

.form-control::placeholder {
  color: #ccc;
}

.btn-submit {
  background: #ffc107;
  border: none;
  color: #333;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1a1a1a;
  padding: 60px 0 30px;
  color: white;
}

.footer-brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-description {
  color: #ccc;
  margin-bottom: 30px;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ffc107;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  color: #666;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Content */
.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 75%; /* fits better on mobile */
  max-width: 300px;
  height: 100%;
  background: #111; /* dark background */
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.3s ease-in-out;
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

/* Mobile Menu Links */
.mobile-menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-nav ul li {
  margin-bottom: 25px;
}

.mobile-menu-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}

.mobile-menu-nav ul li a:hover {
  color: #ffc107;
  padding-left: 10px;
}

/* Dropdown submenu */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 15px;
}

.mobile-submenu.active {
  max-height: 500px; /* enough to show all items */
}

.mobile-submenu li {
  margin-bottom: 15px;
}

.mobile-submenu li a {
  font-size: 18px;
}

/* Mobile header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-menu-brand {
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
}

/* Footer */
.mobile-menu-footer h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 15px;
}

.mobile-menu-social {
  display: flex; /* make icons horizontal */
  flex-direction: row; /* ensure row layout */
  justify-content: flex-start; /* optional: align left */
  gap: 15px; /* space between icons */
  flex-wrap: wrap; /* wrap to next line on very small screens */
}

.mobile-menu-social a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.mobile-menu-social a:hover {
  background: #ffc107;
  color: #111;
}

/* Enhanced Footer Styling */
.footer {
  background: #404040;
  padding: 60px 0 30px;
  color: white;
}

.footer-contact-info {
  margin-bottom: 40px;
}

.footer-phone {
  color: #ffc107;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.footer-email {
  color: #ffc107;
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}

.footer-address {
  color: #ccc;
  line-height: 1.6;
}

.footer-section h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
  font-size: 16px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: white;
  padding-left: 5px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  width: 100%;
}

.newsletter-input::placeholder {
  color: #ccc;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffc107;
  background: rgba(255, 255, 255, 0.15);
}

.social-icons-footer {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons-footer a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons-footer a:hover {
  background: #ffc107;
  color: #333;
}

.contact-info {
  color: var(--text-light);
  background-color: var(--card-bg);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.private-section {
  padding: 80px 0;
  background: #333;
}

.office-images {
  margin-bottom: 30px;
}

.main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.secondary-images {
  display: flex;
  gap: 10px;
}

.secondary-images img {
  flex: 1;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

.office-details h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.price {
  color: var(--accent-gold);
  font-size: 1.5rem;
  font-weight: bold;
}

.location-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.description {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 30px 0;
}

.book-btn {
  background-color: var(--text-light);
  color: var(--dark-bg);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  background-color: var(--accent-gold);
}

.services-grid {
  margin: 60px 0;
}

.service-card {
  background: #000; /* Pure black background */
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
  color: var(--text-light); /* Ensure text is light for contrast */
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #111; /* Slightly lighter black on hover */
}

.service-icon {
  color: var(--accent-gold);
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--text-light); /* Ensure title text is light */
}

.amenities-section {
  margin: 80px 0;
}

.amenities-title {
  font-size: 2rem;
  margin-bottom: 40px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-muted);
}

.amenity-icon {
  color: var(--accent-gold);
  width: 20px;
}

#private .map-container {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

#private .map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#private .map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-gold);
  color: white;
  padding: 10px 15px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  z-index: 1;
}

#private .map-marker::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent-gold);
}

/* similar */
.similar-locations {
  padding: 20px 0;
  background-color: #000 !important;
}
.similar-locations h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
.location-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #333;
  position: relative;
}
.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
  z-index: 2;
}
.card-body {
  padding: 15px;
}
.card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card-address {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #aaa;
}
.card-features i {
  color: #ffc107;
  margin-right: 5px;
}
.more-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-size: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#show-more-btn {
  border-color: #666;
  color: #fff;
  padding: 10px 20px;
  transition: all 0.3s;
}
#show-more-btn:hover {
  background-color: #333;
  border-color: #999;
}

/* pricing */
.pricing-section {
  padding: 60px 0;
  background-color: #000 !important;
}
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}
.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing-header p {
  color: #aaa;
  font-size: 1.1rem;
}
.pricing-card {
  background-color: #1e1e1e;
  border-radius: 10px;
  padding: 30px 20px;
  margin-bottom: 30px;
  border: 1px solid #333;
}
.pricing-card.popular {
  border: 2px solid #ffc107;
  position: relative;
}
.pricing-card.popular::before {
  content: "Popular";
  position: absolute;
  top: -10px;
  right: 20px;
  background-color: #ffc107;
  color: #000;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: bold;
}
.price {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0;
}
.price-period {
  font-size: 1rem;
  color: #aaa;
}
.price-description {
  color: #aaa;
  margin-bottom: 20px;
}
.btn-purchase {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
}
.btn-purchase:hover {
  background-color: #555;
}
.btn-chat {
  background-color: transparent;
  color: #fff;
  border: 1px solid #555;
  padding: 12px 20px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 30px;
}
.btn-chat:hover {
  background-color: #555;
}
.features {
  list-style: none;
  padding: 0;
}
.features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.more-btn {
  text-align: center;
  margin-top: 40px;
}
.more-btn a {
  color: #ffc107;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid #ffc107;
  padding-bottom: 2px;
}

/* about Section */
.about-section {
  padding: 4rem 0;
  text-align: center;
  background-color: #000;
}

.about-badge {
  display: inline-block;
  color: var(--accent-color);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Team Grid */
.team-section {
  padding: 4rem 0 6rem 0;
}

.team-card {
  background-color: var(--card-bg);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .navbar-collapse {
    background-color: var(--secondary-bg);
    border-radius: 10px;
    margin-top: 1rem;
    padding: 1rem;
  }

  .team-image {
    height: 200px;
  }

  .team-info {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .phone-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .team-card {
    margin-bottom: 1.5rem;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-primary);
}

/* FAQ Section */
.faq-section {
  background-color: var(--primary-bg);
  padding: 4rem 0;
}

.faq-left {
  padding-right: 2rem;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.faq-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.talk-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.talk-btn:hover {
  background-color: var(--text-secondary);
  color: white;
  border-radius: 2px;
  border: 1px solid;
  transform: translateY(-2px);
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: #555;
  --bs-accordion-btn-bg: var(--card-bg);
  --bs-accordion-btn-color: var(--text-primary);
  --bs-accordion-active-bg: var(--card-bg);
  --bs-accordion-active-color: var(--text-primary);
}

.accordion-item {
  background-color: transparent;
  border: 1px solid #555;
  margin-bottom: 0.5rem;
  border-radius: 8px !important;
}

.accordion-button {
  background-color: var(--card-bg) !important;
  color: var(--accent-gold) !important;
  font-weight: 500;
  border-radius: 8px !important;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--card-bg) !important;
  color: var(--accent-gold) !important;
}

/* Arrow when collapsed */
.accordion-button::after {
  content: "\f107"; /* Font Awesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* needed for solid icons */
  font-size: 1rem;
  color: #d4af37; /* gold */
}

/* Arrow when expanded */
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  background-color: var(--card-bg);
  color: var(--text-light);
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
}

.accordion-collapse {
  border-radius: 0 0 8px 8px;
}

/* conttact section with full viewport background */
.contact-section {
  width: 100%;
  height: 100vh; /* full viewport height */
  background-image: url("/images/contact.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card styling */
.contact-card {
  background-color: rgba(0, 0, 0, 0.8); /* semi-transparent dark overlay */
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%; /* responsive width */
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Form fields */
.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Textarea */
.contact-form textarea.form-control {
  height: 120px;
  resize: vertical;
}

/* Submit button */
.submit-btn {
  background-color: white;
  color: black;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #f0f0f0;
}

/* contacts */
.contacts-section {
  background-color: #1a1a1a;
  text-align: center;
  padding: 90px 50px;
}

.contacts-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 50px;
}

.contacts-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contacts-card {
  background-color: #3d3c3c;
  border-radius: 10px;
  padding: 30px 20px;
  width: 280px;
  text-align: left;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contacts-card-icon {
  color: #d4af37;
  font-size: 2rem;
  margin-bottom: 20px;
}

.contacts-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contacts-card p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.contacts-card a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .contacts-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* Find Office Section */
.find-office {
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
}

.search-section {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 30px;
}

.search-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.search-input {
  flex: 1 1 250px;
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  background-color: #333;
  color: #fff;
}

.search-btn {
  padding: 12px 25px;
  border-radius: 5px;
  border: none;
  background-color: #d4af37;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.search-btn:hover {
  background-color: #bfa235;
}

.filters {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #444;
  background-color: #333;
  color: #fff;
  width: 150px;
}

/* Move the last filter (Sort by) to the right */
.filters .filter-select.sort-by {
  margin-left: auto;
}

.results-header {
  margin-bottom: 20px;
  font-weight: 600;
  color: #d4af37;
}

.offices-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Left column: 2 cards per row */
.offices-list {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 15px;
}

.office-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.office-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.price-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #d4af37;
  color: #000;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.office-info {
  padding: 15px;
}

.office-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.office-info p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.office-features {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #ccc;
  flex-wrap: wrap;
}

/* Right column: map */
.map-container {
  flex: 3;
  background-color: #eee;
  border-radius: 10px;
  height: 500px; /* will adjust automatically based on cards */
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #ddd;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-marker {
  position: absolute;
  color: #d4af37;
  font-size: 2rem;
}

@media (max-width: 1024px) {
  .offices-container {
    flex-direction: column;
  }

  .map-container {
    height: 400px;
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .offices-container {
    flex-direction: column;
  }

  .offices-list {
    grid-template-columns: 1fr; /* 1 card per row on smaller screens */
  }

  .map-container {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
  }

  .filters {
    flex-direction: column;
  }

  .offices-list {
    grid-template-columns: 1fr; /* 1 card per row on mobile */
  }
}

/* booking */
.booking-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 15px;
  background-color: #000;
}

.booking-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
}

.booking-details {
  background-color: #121212;
  border-radius: 10px;
  padding: 15px;
}

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

.booking-back-arrow {
  color: #fff;
  font-size: 1.3rem;
  margin-right: 10px;
  cursor: pointer;
}

.booking-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.booking-office-info p {
  color: #aaa;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.booking-office-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.booking-office-description {
  margin-bottom: 20px;
  color: #ccc;
  line-height: 1.4;
  font-size: 0.9rem;
}

.booking-map-container {
  background-color: #222;
  border-radius: 10px;
  height: 180px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.booking-map-address {
  font-size: 0.8rem;
}

.booking-amenities-section {
  margin-top: 20px;
}

.booking-amenities-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

.booking-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.booking-amenity-item {
  display: flex;
  align-items: center;
  color: #ccc;
  font-size: 0.85rem;
}

.booking-amenity-item i {
  margin-right: 6px;
  color: #d4af37;
}

.booking-purchase-form {
  background-color: #121212;
  border-radius: 10px;
  padding: 15px;
  height: fit-content;
}

.booking-purchase-title {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.booking-form-group {
  margin-bottom: 10px;
}

.booking-form-label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.85rem;
  color: #aaa;
}

.booking-form-select,
.booking-form-input {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #222;
  color: #fff;
  font-size: 0.9rem;
}

.booking-add-ons {
  margin: 15px 0;
}

.booking-add-on-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.booking-add-on-toggle {
  width: 40px;
  height: 20px;
}

.booking-add-on-toggle::after {
  width: 16px;
  height: 16px;
  top: 2px;
  left: 2px;
}

.booking-add-on-toggle.active::after {
  left: 22px;
}

.booking-pricing-details {
  margin: 15px 0;
}

.booking-pricing-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.9rem;
}

.booking-pricing-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.booking-btn {
  width: 100%;
  padding: 10px;
  font-size: 0.95rem;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
  }
}

/* checkout */
.checkout-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 15px;
  background-color: #1a1a1a;
}

.checkout-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.checkout-section {
  background-color: #121212;
  border-radius: 10px;
  padding: 30px;
}

.checkout-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.back-arrow {
  color: #fff;
  font-size: 1.5rem;
  margin-right: 15px;
  cursor: pointer;
}

.checkout-title {
  font-size: 1.8rem;
  font-weight: 600;
}

.form-section {
  margin-bottom: 30px;
}

.form-section-title {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-input {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #222;
  color: #fff;
}

.form-input::placeholder {
  color: #aaa;
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-method {
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #333;
  background-color: #222;
  color: #fff;
  cursor: pointer;
}

.payment-method.active {
  border-color: #d4af37;
  background-color: #d4af37;
  color: #000;
}

.booking-summary {
  background-color: #121212;
  border-radius: 10px;
  padding: 25px;
  height: fit-content;
}

.office-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.summary-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.summary-subtitle {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.summary-details {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.terms-checkbox {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.terms-checkbox input {
  margin-right: 10px;
}

.pay-btn {
  width: 100%;
  padding: 15px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.pay-btn:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .checkout-container {
    grid-template-columns: 1fr;
  }
}

/* booking confirmation */
.confirmation-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
}

@media (max-width: 500px) {
  .office-image-map {
    grid-template-columns: 1fr;
  }

  .office-image,
  .map-container {
    height: 100px;
  }
}

/* terms */

.terms-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 15px;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  min-height: 100vh;
  font-family: "Segoe UI", sans-serif;
}

/* Footer */
.footer {
  background-color: var(--card-bg);
  padding: 3rem 0 2rem 0;
  border-top: 1px solid #555;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-primary);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-contact {
  color: var(--accent-color);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-contact:hover {
  color: var(--text-primary);
}

.footer-address {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-heading {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-primary);
}

.newsletter-section {
  margin-bottom: 2rem;
}

.newsletter-input {
  background-color: var(--primary-bg);
  border: 1px solid #555;
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 1rem;
}

.newsletter-input::placeholder {
  color: var(--text-secondary);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.social-icons {
  margin-top: 1.5rem;
}

.social-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: var(--primary-bg);
  color: var(--text-secondary);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--accent-color);
  color: var(--primary-bg);
  transform: translateY(-2px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--text-secondary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-primary);
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
  .faq-left {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .faq-title {
    font-size: 2rem;
  }

  .accordion-button {
    font-size: 0.9rem;
    padding: 1rem;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .office-details h1 {
    font-size: 2rem;
  }
  .location-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .secondary-images {
    flex-direction: column;
  }
  .secondary-images img {
    height: 100px;
  }
  .map-container {
    height: 300px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .location-content,
  .experience-content {
    flex-direction: column;
    gap: 30px;
  }

  .cta-form {
    padding: 30px;
  }

  .navbar-nav {
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    margin: 10px auto;
    width: 200px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .location-text h2,
  .experience-text h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .col-xl-20 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column; /* Stack input + button vertically */
  }

  .search-input,
  .search-btn {
    width: 100%; /* Full width on mobile */
    flex: unset; /* Remove desktop flex-grow */
  }

  .search-btn {
    margin-top: 10px; /* Space between input and button */
  }

  .filters {
    flex-direction: column; /* Stack filters vertically */
    gap: 10px; /* Reduce spacing on mobile */
  }

  .filter-select {
    width: 100%; /* Full width for each select */
    margin-left: 0 !important; /* Remove auto margin from sort-by */
  }
}

@media (max-width: 768px) {
  .form-control::placeholder {
    color: transparent; /* Hide placeholder on mobile */
  }
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 991px) {
  .navbar-toggler {
    display: flex !important;
    border-color: rgba(255,255,255,0.6);
    padding: 6px 10px;
  }
  .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
}

@media (max-width: 768px) {
  /* Hero */
  #hero, .hero-section {
    min-height: 100vh;
    padding-top: 80px !important;
    align-items: flex-start !important;
  }
  #hero h1, .hero-content h1 { font-size: 1.8rem !important; line-height: 1.3; }
  .search-box {
    height: auto !important;
    border-radius: 12px !important;
    padding: 10px !important;
    flex-direction: column !important;
  }
  .search-box .form-control { width: 100% !important; border-radius: 8px !important; }
  .search-box .btn { width: 100% !important; border-radius: 8px !important; margin-top: 6px; }

  /* Properties */
  .properties-section { padding: 60px 0 40px !important; }
  .section-title { font-size: 1.8rem !important; }

  /* Locations & Experience */
  .location-content, .experience-content { flex-direction: column !important; gap: 20px !important; }
  .location-image, .experience-image { height: 200px !important; width: 100% !important; flex: none !important; }

  /* CTA */
  .cta-section { padding: 50px 0 !important; }
  .cta-form { padding: 25px 20px !important; max-width: 100% !important; margin: 0 15px !important; }

  /* Contact */
  .contact-section { height: auto !important; min-height: 100vh; padding: 80px 15px 40px !important; }
  .contact-card { padding: 25px 20px !important; width: 100% !important; }

  /* Footer */
  .footer { text-align: center !important; }
  .footer img { margin: 0 auto 15px !important; display: block !important; }
  .social-icons-footer, .footer .d-flex { justify-content: center !important; }

  /* Find office */
  .find-office { padding: 40px 15px !important; }
  .offices-list { grid-template-columns: 1fr !important; }
  .offices-container { flex-direction: column !important; }
  .map-container { min-height: 300px !important; height: 300px !important; }

  /* Private */
  .private-section { padding: 40px 0 !important; }
  .office-details h1 { font-size: 1.6rem !important; }

  /* Pricing */
  .pricing-section { padding: 40px 0 !important; }
  .pricing-header h2 { font-size: 1.8rem !important; }

  /* About */
  .about-title { font-size: 2rem !important; }
  .about-subtitle { font-size: 1rem !important; padding: 0 10px; }

  /* Contacts cards */
  .contacts-section { padding: 50px 20px !important; }
  .contacts-title { font-size: 1.8rem !important; }
  .contacts-cards { flex-direction: column !important; align-items: center !important; }
  .contacts-card { width: 100% !important; max-width: 400px; }

  /* Checkout / Booking */
  .checkout-container, .booking-container { grid-template-columns: 1fr !important; }

  /* General */
  .form-row { grid-template-columns: 1fr !important; }
}

/* =====================================================================
   GLOBAL OVERFLOW & RESPONSIVE HARDENING  (added to fix left white
   stripe / horizontal scroll and improve responsiveness on all devices)
   ===================================================================== */

/* 1. Never allow the page to scroll sideways (kills the white stripe) */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 2. Media and embeds can never be wider than their container */
img, svg, video, iframe, embed, object, canvas {
  max-width: 100%;
}

/* 3. Neutralise Bootstrap row negative margins that overflow when a
      .row is not inside a padded .container (a common cause of the
      1-column-wide stripe on the edge). Gutters are restored on cols. */
.row {
  margin-right: 0;
  margin-left: 0;
}
.row > [class*="col"] {
  padding-right: 12px;
  padding-left: 12px;
}

/* 4. Long unbroken strings (emails, phone numbers, URLs) must wrap */
body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* 5. Google Maps / video embeds fill their box responsively */
.map-container iframe,
#private .map-container iframe,
.map-container video {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

/* 6. Extra small phones (<=480px): tighten spacing so nothing spills */
@media (max-width: 480px) {
  .container,
  .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero-content h1,
  #hero h1 {
    font-size: 1.6rem !important;
  }
  .contacts-section {
    padding: 40px 14px !important;
  }
  .find-office,
  .private-section,
  .pricing-section,
  .properties-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .cta-form,
  .contact-card {
    padding: 20px 16px !important;
  }
  /* Stack any 2-column grids on tiny screens */
  .booking-amenities-grid,
  .offices-list {
    grid-template-columns: 1fr !important;
  }
}

/* 7. Tablets (<=991px): ensure flex two-column layouts stack cleanly */
@media (max-width: 991px) {
  .location-content,
  .experience-content,
  .offices-container,
  .contacts-cards {
    flex-direction: column !important;
  }
  .location-image,
  .experience-image {
    width: 100% !important;
    flex: none !important;
  }
}

/* 8. NAVBAR overflow fix — the navbar is position:fixed, so body
      overflow-x:hidden cannot clip it. Constrain its contents so they
      never spill past the right edge (this removes the right white
      stripe and stops the nav labels crowding/overlapping). */
.navbar {
  overflow-x: clip;          /* clip any accidental spill, keeps dropdowns usable */
}
.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 100%;
  gap: 10px;
}
.navbar .desktop-nav {
  min-width: 0;              /* allow the nav block to shrink instead of overflow */
  flex-wrap: wrap;
  justify-content: flex-end;
}
.navbar .navbar-nav.flex-row {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.navbar-brand {
  flex-shrink: 0;
}
.btn-contact {
  white-space: nowrap;
}

/* Give the links less horizontal margin on smaller desktops/laptops
   so all six fit without overlapping or pushing the phone button out. */
@media (max-width: 1300px) {
  .navbar-nav .nav-link { margin: 0 8px; }
  .navbar-brand .brand-text { font-size: 20px; }
  .btn-contact { padding: 8px 14px; font-size: 0.8rem; }
}
@media (max-width: 1100px) {
  .navbar-nav .nav-link { margin: 0 5px; font-size: 0.9rem; }
}

/* 9. OFF-CANVAS MOBILE MENU overflow fix — the sliding panel is parked
      at right:-100% (one screen-width off to the right). Because the
      overlay is position:fixed, body overflow-x:hidden cannot clip it,
      so that off-screen panel widens the page and creates the right
      white stripe. Clipping overflow on the overlay removes it; the
      panel still slides in normally because when active it sits at
      right:0, inside the overlay's bounds.
      The decisive fix: when the menu is CLOSED, remove it from layout
      entirely with display:none, so its off-screen panel can no longer
      widen the page (visibility:hidden/overflow:hidden alone still leave
      the geometry in place because the overlay is position:fixed). */
.mobile-menu-overlay {
  overflow: hidden;
}
.mobile-menu-overlay:not(.active) {
  display: none !important;
}

/* 10. RIGHT-EDGE WHITE STRIPE = the custom scrollbar track. The CSS
       colours the scrollbar with variables that were never defined
       (--primary-bg, --text-secondary, etc.), so the track falls back
       to the browser default (white) and shows as a fixed white stripe
       on the right. Defining the missing variables + a dark track fixes
       it. (This is NOT horizontal overflow — 0 elements overflow.) */
:root {
  --primary-bg: #1a1a1a;
  --secondary-bg: #222222;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --accent-color: #d4af37;
}

body {
  background-color: #1a1a1a;   /* avoid any white showing through */
}

/* Force a dark scrollbar so the track is never white */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: #555555;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #777777;
}
/* Firefox */
html {
  scrollbar-color: #555555 #1a1a1a;
}
