:root {
  --primary-color: #00a99d;
  --primary-dark: #008c82;
  --primary-light: #e6f7f6;
  --secondary-color: #1e3a8a;
  --accent-blue: #2563eb;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-gray: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --font-family: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.custom-navbar {
  padding: 0.5rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brand-icon {
  color: #00a99d;
  font-size: 1.8rem;
  margin-right: 0.5rem;
  transform: rotate(-45deg);
  display: inline-block;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2937;
}

.brand-suffix {
  color: #00a99d;
}

.brand-tagline {
  font-size: 0.55rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-left: 0.6rem;
  font-weight: 500;
}

/* Book a Demo Button */
.btn-demo {
  background-color: #00a99d;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.55rem 1.5rem;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background-color: #008c82;
  color: #fff;
  transform: translateY(-1px);
}

/* Sign up Button */
.btn-signup {
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.3rem;
  border-radius: 8px;
  border: none;
  margin-left: 0.5rem;
}

.btn-signup:hover {
  color: #fff;
  background-color: #1d4ed8;
}

/* Right Nav Links */
.navbar-nav .nav-link {
  color: #1f2937 !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem !important;
  display: flex;
  align-items: center;
}

.navbar-nav .nav-link:hover {
  color: #00a99d !important;
}

.navbar-nav .nav-link i {
  font-size: 1rem;
  margin-right: 0.3rem;
}

/* Submenu Bar */
.submenu-bar {
  background: linear-gradient(90deg, #00a99d 0%, #00c7b7 100%);
  padding: 0.75rem 0;
  color: white;
  font-size: 0.9rem;
}

.submenu-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  flex-wrap: wrap;
}

.submenu-list li a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.submenu-list li a:hover {
  opacity: 0.8;
}

.btn-learn-more {
  background-color: white;
  color: #00a99d;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-left: 1rem;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #f0fdfa;
  color: #008c82;
  transform: translateY(-1px);
}

/* === NEW: RENTAL LISTINGS SECTION === */
.rental-listings-section {
  padding: 80px 0;
  background: white;
}

.rental-listings-container {
  max-width: 1200px;
  margin: 0 auto;
}

.rental-listings-header {
  text-align: center;
  margin-bottom: 60px;
}

.rental-listings-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.rental-listings-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

.rental-listings-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rental-listings-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.rental-listings-features {
  margin-bottom: 40px;
}

.rental-listings-features h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.rental-listings-features p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.feature-icon-circle {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.feature-text p {
  color: #666;
  margin: 0;
  font-size: 1rem;
}

.btn-find-out-more {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-find-out-more:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: white;
}

.rental-listings-visual {
  text-align: center;
}

.rental-visual-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Design for Rental Listings */
@media (max-width: 992px) {
  .rental-listings-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .rental-listings-title {
    font-size: 2rem;
  }
  
  .rental-listings-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .rental-listings-section {
    padding: 60px 0;
  }
  
  .rental-listings-title {
    font-size: 1.8rem;
  }
  
  .rental-listings-subtitle {
    font-size: 1.1rem;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .submenu-bar {
    display: none !important;
  }
  
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  
  .btn-demo, .btn-signup {
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .brand-tagline {
    display: none;
  }
  
  .brand-text {
    font-size: 1.2rem;
  }
}

/* Hero Section with Video */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    color: white;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 114, 0.47) 25%, rgb(0 140 131 / 0%) 100%);
    z-index: 1;
}

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Remove old overlay styles */
.hero-overlay {
    display: none;
}

/* Search Container */
.search-container {
  max-width: 900px;
  margin: 0 auto;
}

.search-box {
  background: white;
  border-radius: 12px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.search-input {
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  flex: 1;
  font-family: var(--font-family);
}

.search-input:focus {
  outline: none;
  box-shadow: none;
}

.btn-search {
  background-color: var(--accent-blue);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-search:hover {
  background-color: #1d4ed8;
  transform: translateY(-1px);
}

/* Quick Search */
.quick-search {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}

.quick-search-label {
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-search-label i {
  color: var(--primary-color);
}

.btn-quick-option {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-quick-option:hover {
  background: var(--primary-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-quick-option i {
  font-size: 1rem;
}

/* Section Styles */
.popular-section,
.recently-added-section {
  padding: 4rem 0;
  background-color: var(--bg-white);
}

.recently-added-section {
  background-color: var(--bg-light);
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.navigation-arrows {
  display: flex;
  gap: 0.5rem;
}

.btn-nav {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.btn-nav:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Property Card */
.property-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  height: 100%;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.property-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 3rem;
}

.btn-favorite {
  position: absolute;
  top: 12px;
  right: 12px;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-favorite:hover {
  transform: scale(1.1);
  color: #ef4444;
}

.badge-favorite {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--text-dark);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.property-details {
  padding: 1.25rem;
}

.property-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.property-rating i {
  color: #fbbf24;
  font-size: 0.875rem;
}

.property-location {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.property-specs {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.property-price {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0;
}

.property-price strong {
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #f8f8f8 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(0, 0, 0, 0.9);
}

.btn-cta {
  background-color: var(--text-dark);
  color: white;
  padding: 0.875rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  padding: 3rem 0 1.5rem;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.footer h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-gray);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--text-gray);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .brand-tagline {
    display: none;
  }
}

@media (max-width: 992px) {
  .navbar-nav {
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  
  .navbar-nav .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .quick-search {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-background-video {
        object-position: center;
    }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .search-box {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .search-input {
    width: 100%;
  }
  
  .btn-search {
    width: 100%;
  }
  
  .quick-search {
    padding: 1rem;
  }
  
  .btn-quick-option {
    font-size: 0.8125rem;
    padding: 0.4rem 0.75rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }
  
  .navigation-arrows {
    align-self: flex-end;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .property-card {
    margin-bottom: 1rem;
  }
  
  .quick-search-label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .btn-quick-option {
    flex: 1 1 calc(50% - 0.375rem);
    justify-content: center;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ==== Manage Property Section (Exactly like uploaded image) ==== */
.manage-property-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.manage-property-section .display-5 {
    line-height: 1.2;
}

.manage-property-section .lead {
    font-size: 1.1rem;
}

.icon-circle {
    background-color: var(--primary-color) !important;
}

/* Image Layout - Overlapping */
.manage-img-top {
    width: 70%;
    height: 320px;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

.manage-img-bottom {
    width: 65%;
    height: 280px;
    position: absolute;
    bottom: -40px;
    left: 0;
    z-index: 1;
    border: 8px solid white;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .manage-img-top {
        width: 80%;
        height: 280px;
    }
    .manage-img-bottom {
        width: 75%;
        height: 240px;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .manage-property-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .manage-property-section .row {
        flex-direction: column-reverse;
    }
    
    .manage-img-top,
    .manage-img-bottom {
        width: 90%;
        margin: 0 auto;
    }
    
    .manage-img-bottom {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -60px;
        margin-bottom: 40px;
    }
    
    .row.g-4 > .col-md-6 {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .manage-img-top {
        height: 220px;
    }
    .manage-img-bottom {
        height: 200px;
        margin-top: -50px;
    }
}

/* Mobile App Section - Exactly like uploaded image */
.mobile-app-section {
    background: linear-gradient(135deg, #60a5fa00 100%),
                url('mobile-section-bg.jpg') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    position: relative;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #00a99de3;
    z-index: 1;
}

.mobile-app-section > .container {
    position: relative;
    z-index: 2;
}

.phone-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.phone-img {
    width: 100%;
    max-width: 450px;
    border-radius: 40px;
    /* border: 8px solid rgba(255, 255, 255, 0.2); */
    backdrop-filter: blur(10px);
}

.phone-1 {
    position: relative;
    z-index: 2;
    transform: rotate(-20deg) translateX(20px);
}


.text-gradient {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-app-section {
        padding: 100px 0;
    }
    
    .phone-1 {
        transform: rotate(-12deg) translateX(10px);
    }
    
    .phone-2 {
        top: 40px;
        transform: translateX(-40%) rotate(8deg);
    }
}

@media (max-width: 768px) {
    .mobile-app-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .phone-wrapper {
        margin-bottom: 40px;
    }
    
    .phone-1 {
        transform: rotate(-10deg);
    }
    
    .phone-2 {
        top: 30px;
        left: 55%;
        transform: translateX(-50%) rotate(12deg);
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .display-4 {
        font-size: 2.2rem;
    }
    
    .phone-img {
        max-width: 240px;
    }
    
    .phone-2 {
        top: 20px;
    }
    
    .app-badge img {
        max-width: 150px !important;
    }
}

.google-play-btn,
.app-store-btn {
    background: transparent;
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 205px;
    height: 68px;
    overflow: hidden;
    border: 2px solid rgb(255, 255, 255);
}


.google-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
}

.app-store-btn:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4) !important;
    border: 2px solid #000;
  }
  .google-play-btn:hover {
    background: #111;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4) !important;
    border: 2px solid #000;
}

.gp-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
}

.gp-text, .as-text {
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

/* Responsive adjustment for buttons */
@media (max-width: 576px) {
    .google-play-btn,
    .app-store-btn {
        width: 170px;
        height: 62px;
        padding: 12px 16px;
    }
    
    .gp-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .gp-text div,
    .as-text div {
        font-size: 0.7rem !important;
    }
    .gp-icon {
    width: 24px;
    height: 45px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
}
}
/* Sitemap Links Section - Exactly Like Image */
.sitemap-links-section {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.sitemap-links-section h6 {
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: #00a99d !important;
}

.sitemap-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.sitemap-list li a {
    color: #4b5563;
    font-size: 0.8rem;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.sitemap-list li a:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .sitemap-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links-section .row > div {
        margin-bottom: 2rem;
    }
    
    .sitemap-links-section h6 {
        font-size: 1rem;
    }
}

#languageModal .nav-tabs .nav-link {
  border: none;
  color: #6b7280;
  font-size: 0.8rem;
}

#languageModal .nav-tabs .nav-link.active {
  color: #00a99d;
  border-bottom: 3px solid #00a99d;
  font-weight: 600;
}

#languageModal .btn-outline-secondary {
  border: 1.5px solid #e5e7eb;
  color: #374151;
  font-weight: 500;
  font-size: 0.8rem;
}

#languageModal .btn-outline-secondary:hover {
  background-color: #f3f4f6;
  border-color: #00a99d;
  color: #00a99d;
}

#languageModal .btn-primary {
  background-color: #00a99d;
  border: none;
  font-weight: 600;
}

#languageModal .btn-primary:hover {
  background-color: #008c82;
}

/* Currency Grid Buttons - بالکل آپ کی تصویر جیسا */
.currency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 8px;
}

.currency-btn {
  background: #ffffff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 14px 12px;
  text-align: left;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  cursor: pointer;
}

.currency-btn:hover {
  border-color: #00a99d;
  background-color: #f0fdfa;
}

.currency-btn.active {
  border: 2px solid #00a99d !important;
  background-color: #f0fdfa;
  font-weight: 600;
}

.currency-name {
  color: #374151;
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.8rem;
}

.currency-code {
  color: #00a99d;
  font-weight: 600;
  font-size: 0.8rem;
}

/* Custom scrollbar for currency list */
.currency-grid::-webkit-scrollbar {
  width: 6px;
}

.currency-grid::-webkit-scrollbar-track {
  background: transparent;
}

.currency-grid::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.currency-grid::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
/* ========== ADDITIONAL RESPONSIVE STYLES FOR GUESTHOUSES PAGE ========== */

/* Property Grid Container for Guesthouses Page */
.property-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding-bottom: 2rem;
}

/* Card Content Wrapper */
.card-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-info {
    flex: 1;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-text {
    font-size: 0.85rem;
    color: #717171;
    white-space: nowrap;
}

/* Responsive Design for Guesthouses Page */
@media (max-width: 1400px) {
    .property-card {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .header-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .property-img {
        height: 240px;
    }
}

@media (max-width: 992px) {
    .header-section {
        padding: 1.5rem 0;
    }
    
    .header-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin: 2rem 0 1rem;
    }
    
    .property-img {
        height: 220px;
    }
    
    .property-location {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header-section {
        text-align: center;
        padding: 1rem 0;
    }
    
    .header-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .property-img {
        height: 200px;
    }
    
    .property-grid-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .property-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-title {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin: 1.5rem 0 0.75rem;
    }
    
    .property-img {
        height: 180px;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .property-location {
        font-size: 0.95rem;
    }
    
    .property-details {
        font-size: 0.85rem;
    }
    
    .price {
        font-size: 1rem;
    }
    
    .rating-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 400px) {
    .property-img {
        height: 160px;
    }
    
    .property-location {
        font-size: 0.9rem;
    }
    
    .property-details {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 0.95rem;
    }
}