/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Navigation */
.navbar {
 
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
}

.nav-logo i {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #2c5aa0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2c5aa0;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.favorites-btn,
.cart-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  color: #333;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.favorites-btn:hover,
.cart-btn:hover {
  background: #f0f4ff;
  color: #2c5aa0;
}

.favorites-count,
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}


/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #e55a2b ;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Hero Section */
.hero {
  background: linear-gradient(135deg, #8999a1 0%, #12171f 100%);
  color: white;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("New-images/modern interior 2.jpg") center / cover;
  opacity: 0.1;
  z-index: 20;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem auto 0;
  max-width: 1000px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.search-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.filter-group select {
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.filter-group select:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.search-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.advanced-search-link {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.advanced-search-link:hover {
  background: #f0f4ff;
  border-radius: 10px;
}

/* Enhanced Property Types Section */
.property-types {
  padding: 5rem 0;
  background: white;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.type-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.type-card img{
    width: 40px;
}
.type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.1), transparent);
  transition: left 0.5s ease;
}

.type-card:hover::before {
  left: 100%;
}

.type-card:hover {
  transform: translateY(-10px);
  border-color: #2c5aa0;
  box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
}

.type-card i {
  font-size: 3rem;
  color: #2c5aa0;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.type-card:hover i {
  transform: scale(1.1);
}

.type-card span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

/* Enhanced Property Cards */
.properties-grid,
.properties-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-badge.featured {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
}

.property-badge.new {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.property-badge.verified {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
}

.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.favorite-btn:hover {
  background: white;
  transform: scale(1.1);
}

.favorite-btn.active {
  color: #ff6b35;
}

.property-info {
  padding: 1.5rem;
}

.property-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #666;
}

.property-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
  line-height: 1.3;
}

.property-location {
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
}

.property-actions {
  display: flex;
  gap: 0.5rem;
}

.add-to-cart-btn,
.view-details-btn {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.view-details-btn {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e1e5e9;
}

.view-details-btn:hover {
  background: #2c5aa0;
  color: white;
  border-color: #2c5aa0;
}

/* Enhanced Property Detail Page */
.property-detail-section {
  padding: 8rem 0 3rem;
  background: #fafafa;
}

.breadcrumb {
  padding: 1rem 0;
  color: #666;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #2c5aa0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #1e3d6f;
}

.property-detail-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.property-detail-main {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.property-gallery {
  position: relative;
}

.main-image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.image-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.image-nav.prev {
  left: 20px;
}

.image-nav.next {
  right: 20px;
}

.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.5rem;
  padding: 1rem;
  background: #f8f9fa;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border-color: #2c5aa0;
  transform: scale(1.05);
}

.property-info-main {
  padding: 2rem;
}

.property-header {
  margin-bottom: 2rem;
}

.property-badge-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.property-type {
  background: #f0f4ff;
  color: #2c5aa0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.property-info-main h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.property-location {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.property-price-main {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 2rem;
}

.property-quick-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.stat-item i {
  color: #2c5aa0;
  font-size: 1.2rem;
}

.property-description {
  margin-bottom: 2rem;
}

.property-description h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.property-description p {
  line-height: 1.8;
  color: #666;
  font-size: 1.1rem;
}

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

.detail-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
}

.detail-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.detail-label {
  font-weight: 600;
  color: #666;
}

.detail-value {
  color: #333;
  font-weight: 500;
}

.amenities-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background: #f0f4ff;
  transform: translateX(5px);
}

.amenity-item i {
  color: #28a745;
  font-size: 1.1rem;
}

/* Enhanced Sidebar */
.property-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.price-section {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.current-price {
  font-size: 2.5rem;
  color: #2c5aa0;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.info-item {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c5aa0;
  margin-bottom: 0.5rem;
}

.info-label {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.primary-btn,
.secondary-btn,
.tertiary-btn {
  padding: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.primary-btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.secondary-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.tertiary-btn {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e1e5e9;
}

.tertiary-btn:hover {
  background: #2c5aa0;
  color: white;
  border-color: #2c5aa0;
}

.agent-info {
  margin-top: 2rem;
}

.agent-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.agent-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #333;
}

.agent-details p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.agent-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.agent-phone,
.agent-email {
  color: #2c5aa0;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.agent-phone:hover,
.agent-email:hover {
  color: #1e3d6f;
}

/* Enhanced Sections */
.most-viewed,
.top-offers,
.added-today {
  padding: 5rem 0;
}

.most-viewed {
  background: white;
}

.top-offers {
  background: #f8f9fa;
}

.added-today {
  background: white;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  background: #f0f0f0;
  padding: 0.5rem;
  border-radius: 25px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  color: #666;
}

.tab-btn.active,
.tab-btn:hover {
  background: #2c5aa0;
  color: white;
}

.view-all {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.view-all:hover {
  color: #1e3d6f;
  transform: translateX(5px);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.05), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.service-icon img{
    width: 60px;
}
.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: left 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .try-now-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-search {
    margin: 2rem 1rem 0;
    padding: 1.5rem;
  }

  .search-filters {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Mobile Property Types - 2 columns */
  .types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .type-card {
    padding: 1.5rem 1rem;
  }

  .type-card i {
    font-size: 2rem;
  }

  .type-card span {
    font-size: 0.9rem;
  }

  /* Mobile Properties Grid - 2 properties per row */
  .properties-grid,
  .properties-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }

  .property-card {
    border-radius: 15px;
    max-width: 100%;
  }

  .property-image-container {
    height: 180px;
  }

  .property-info {
    padding: 1rem;
  }

  .property-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .property-price {
    font-size: 1.2rem;
  }

  .property-details {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .property-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .add-to-cart-btn,
  .view-details-btn {
    font-size: 0.8rem;
    padding: 0.6rem;
  }

  .property-detail-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .property-info-main h1 {
    font-size: 2rem;
  }

  .property-price-main {
    font-size: 2rem;
  }

  .property-quick-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    grid-template-columns: repeat(2, 2fr);
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .filter-tabs {
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .view-all {
    order: 3;
    align-self: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .listing-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .property-list-item {
    flex-direction: column;
  }

  .property-list-image {
    width: 100%;
    height: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }

  .hero {
    padding: 5rem 0 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-search {
    margin: 1.5rem 0.5rem 0;
    padding: 1rem;
  }

  /* Mobile Properties Grid - 2 properties per row even on very small screens */
  .properties-grid,
  .properties-slider {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .property-image-container {
    height: 160px;
  }

  .property-info {
    padding: 0.75rem;
  }

  .property-title {
    font-size: 1rem;
  }

  .property-price {
    font-size: 1.1rem;
  }

  .property-details {
    font-size: 0.75rem;
  }

  .add-to-cart-btn,
  .view-details-btn {
    font-size: 0.75rem;
    padding: 0.5rem;
  }

  .types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .type-card {
    padding: 1rem 0.75rem;
  }

  .type-card i {
    font-size: 1.8rem;
  }

  .type-card span {
    font-size: 0.85rem;
  }

  .main-image-container {
    height: 300px;
  }

  .thumbnail-gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .property-info-main {
    padding: 1.5rem;
  }

  .property-info-main h1 {
    font-size: 1.8rem;
  }

  .current-price {
    font-size: 2rem;
  }

  .sidebar-sticky {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 2rem 1.5rem;
  }
}

/* Enhanced Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  margin: 2rem;
  padding: 2rem;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #333;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 1002;
  transition: right 0.3s ease;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 2rem;
  border-bottom: 2px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  font-size: 1.5rem;
  color: #333;
}

.close-cart {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: #333;
}

.cart-items {
  flex: 1;
  padding: 1rem 2rem;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
  font-size: 0.9rem;
}

.cart-item-price {
  color: #2c5aa0;
  font-weight: 600;
  font-size: 0.9rem;
}

.remove-item {
  background: #ff4757;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.remove-item:hover {
  background: #ff3742;
  transform: translateY(-1px);
}

.cart-footer {
  padding: 2rem;
  border-top: 2px solid #f0f0f0;
  background: #f8f9fa;
}

.cart-total {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.checkout-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #8d99ab 0%, #0f192a 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=400&width=1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Properties Page Styles */
.filters-section {
  background: white;
  padding: 3rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filters-container {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.filter-group select {
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.filter-group select:focus {
  outline: none;
  border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.reset-filters {
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: end;
}

.reset-filters:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.properties-listing {
  padding: 3rem 0;
  background: #fafafa;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-count {
  font-size: 1.2rem;
  color: #666;
  font-weight: 600;
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
  background: #f0f0f0;
  padding: 0.5rem;
  border-radius: 10px;
}

.view-btn {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #666;
}

.view-btn.active,
.view-btn:hover {
  background: #2c5aa0;
  color: white;
}

.properties-container {
  margin-bottom: 3rem;
}

.properties-container.grid-view {
  display: grid;
   grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.properties-container.grid-view img{
    height: 200px;
}
.properties-container.list-view {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.property-list-item {
  display: flex;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.property-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-list-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}

.property-list-info {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination button {
  background: white;
  border: 2px solid #e1e5e9;
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination button:hover,
.pagination button.active {
  background: #2c5aa0;
  color: white;
  border-color: #2c5aa0;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #8399ba 0%, #121f34 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=400&width=1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 5rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 700;
}

.about-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #2c5aa0;
  font-weight: 600;
}

.about-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #666;
  font-size: 1.1rem;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.stats-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=400&width=1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #fff, #f0f4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 500;
}

.team-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.team-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.05), transparent);
  transition: left 0.5s ease;
}

.team-member:hover::before {
  left: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid #f0f4ff;
  transition: all 0.3s ease;
}

.team-member:hover img {
  border-color: #2c5aa0;
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.team-member p {
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.values-section {
  padding: 5rem 0;
  background: white;
}

.values-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f8f9fa;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.05), transparent);
  transition: left 0.5s ease;
}

.value-item:hover::before {
  left: 100%;
}

.value-item:hover {
  transform: translateY(-10px);
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-item i {
  font-size: 3.5rem;
  color: #2c5aa0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.value-item:hover i {
  transform: scale(1.1);
}

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.value-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Contact Page Styles */
.contact-hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=400&width=1200") center / cover;
  opacity: 0.1;
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  padding: 5rem 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 700;
}

.contact-info > p {
  margin-bottom: 3rem;
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #f0f4ff;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.8rem;
  color: #2c5aa0;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.contact-item p {
  color: #666;
  line-height: 1.5;
  font-size: 1.05rem;
}

.social-media h3 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-form-container {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-bottom: 2rem;
  color: #333;
  font-size: 2rem;
  font-weight: 700;
}

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

.map-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  font-size: 2.5rem;
  font-weight: 700;
}

.map-container {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #e1e5e9 0%, #f8f9fa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #2c5aa0;
}

.map-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-placeholder small {
  font-size: 1rem;
  opacity: 0.8;
}

.faq-section {
  padding: 5rem 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.05), transparent);
  transition: left 0.5s ease;
}

.faq-item:hover::before {
  left: 100%;
}

.faq-item:hover {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .listing-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .property-list-item {
    flex-direction: column;
  }


.properties-container.grid-view {
  display: grid;
   grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

  .property-list-image {
    width: 100%;
    height: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 2rem 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    padding: 2rem 1.5rem;
  }
}

/* Interior Design Section */
.interior-design-section {
  padding: 5rem 0;
  background: white;
}

.interior-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

.about-tag {
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.interior-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.interior-left > p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #2c5aa0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.learn-more-btn {
  background: #333;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #2c5aa0;
  transform: translateY(-2px);
}

.interior-right {
  position: relative;
}

.interior-images {
  position: relative;
}

.main-interior-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-interior-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.small-interior-images {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.small-interior-images img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Our Services Section */
.our-services {
  margin-top: 3rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-tag {
  background: #ffd700;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-header p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-item {
  background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-item.dark {
  background: #2c3e50;
  color: white;
}

.service-card-item.dark::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: #ff6b35;
  border-radius: 50%;
  transform: translate(50%, 50%);
}

.service-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: #f0f4ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.service-card-item.dark .service-icon-large {
  background: rgba(255, 255, 255, 0.1);
}

.service-icon-large i {
  font-size: 2.5rem;
  color: #2c5aa0;
}

.service-card-item.dark .service-icon-large i {
  color: white;
}

.service-card-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  z-index: 2;
}

.service-card-item.dark h3 {
  color: white;
}

.service-card-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card-item.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.read-more {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card-item.dark .read-more {
  color: white;
}

.read-more:hover {
  color: #ff6b35;
}

/* Mobile Responsiveness for Interior Section */
@media (max-width: 768px) {
  .interior-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .interior-left {
    padding-right: 0;
    order: 2;
  }

  .interior-right {
    order: 1;
  }

  .interior-left h2 {
    font-size: 2rem;
  }

  .features-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .small-interior-images {
    justify-content: center;
  }

  .small-interior-images img {
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .interior-left h2 {
    font-size: 1.8rem;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .service-card-item {
    padding: 2rem 1.5rem;
  }

  .small-interior-images {
    flex-direction: column;
    align-items: center;
  }

  .small-interior-images img {
    width: 200px;
    height: 120px;
  }
}

/* Booking Modal Styles */
.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-container h2 {
  color: #2c5aa0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
}

.booking-subtitle {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-info {
  background: #f0f4ff;
  border: 1px solid #e1e8ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.booking-info .info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #2c5aa0;
  font-size: 0.95rem;
}

.booking-info .info-item:last-child {
  margin-bottom: 0;
}

.booking-info .info-item i {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
}

/* Secondary button for booking */
.book-viewing-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.book-viewing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Mobile responsive for booking form */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form-container {
    padding: 0 1rem;
  }

  .booking-form-container h2 {
    font-size: 1.5rem;
  }
}

/* Interior Design Section */
.interior-design-section {
  padding: 5rem 0;
  background: white;
}

.interior-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

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

.about-tag {
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.interior-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.interior-left > p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.features-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #2c5aa0;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.learn-more-btn {
  background: #333;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background: #2c5aa0;
  transform: translateY(-2px);
}

.interior-right {
  position: relative;
}

.interior-images {
  position: relative;
}

.main-interior-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-interior-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.small-interior-images {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.small-interior-images img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Our Services Section */
.our-services {
  margin-top: 3rem;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-tag {
  background: #ffd700;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.services-header p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card-item {
  background: white;
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card-item.dark {
  background: #2c3e50;
  color: white;
}

.service-card-item.dark::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: #ff6b35;
  border-radius: 50%;
  transform: translate(50%, 50%);
}

.service-card-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: #f0f4ff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
}

.service-card-item.dark .service-icon-large {
  background: rgba(255, 255, 255, 0.1);
}

.service-icon-large i {
  font-size: 2.5rem;
  color: #2c5aa0;
}

.service-card-item.dark .service-icon-large i {
  color: white;
}

.service-card-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  z-index: 2;
}

.service-card-item.dark h3 {
  color: white;
}

.service-card-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-card-item.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.read-more {
  color: #2c5aa0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-card-item.dark .read-more {
  color: white;
}

.read-more:hover {
  color: #ff6b35;
}

/* Mobile Responsiveness for Interior Section */
@media (max-width: 768px) {
  .interior-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .interior-left {
    padding-right: 0;
    order: 2;
  }

  .interior-right {
    order: 1;
  }

  .interior-left h2 {
    font-size: 2rem;
  }

  .features-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .small-interior-images {
    justify-content: center;
  }

  .small-interior-images img {
    width: 140px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .interior-left h2 {
    font-size: 1.8rem;
  }

  .services-header h2 {
    font-size: 1.8rem;
  }

  .service-card-item {
    padding: 2rem 1.5rem;
  }

  .small-interior-images {
    flex-direction: column;
    align-items: center;
  }

  .small-interior-images img {
    width: 200px;
    height: 120px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #55647c 0%, #09101a 100%);
  color: white;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("New-images/3Bedroom house.jpg") center / cover;
  opacity: 0.05;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-logo i {
  font-size: 2rem;
  color: #ff6b35;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
}

.footer-links a:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.05rem;
}

.contact-info .contact-item i {
  color: #ff6b35;
  font-size: 1.2rem;
  width: 20px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-bottom-links a:hover {
  color: #ff6b35;
}

/* Detailed Services Section */
.detailed-services {
  padding: 5rem 0;
  background: #fafafa;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.services-intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.services-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.7;
}

.service-detail {
  margin-bottom: 6rem;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}

.service-detail-content.reverse {
  direction: rtl;
}

.service-detail-content.reverse > * {
  direction: ltr;
}

.service-detail-text {
  padding: 4rem;
}

.service-tag {
  background: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.service-detail h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-detail-text > p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.service-features {
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.feature-item i {
  font-size: 2rem;
  color: #2c5aa0;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: #666;
  line-height: 1.6;
}

.service-process h4,
.service-specialties h4,
.service-benefits h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: #666;
  line-height: 1.5;
}

.specialties-list {
  list-style: none;
  padding: 0;
}

.specialties-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: #666;
  line-height: 1.6;
}

.specialties-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
  font-size: 1.2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.benefit-item i {
  font-size: 1.5rem;
  color: #2c5aa0;
}

.benefit-item span {
  font-weight: 600;
  color: #333;
}

.service-detail-image {
  height: 100%;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-detail:hover .service-detail-image img {
  transform: scale(1.05);
}

/* Mobile Responsiveness for Footer and Services */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .service-detail-content {
    grid-template-columns: 1fr;
  }

  .service-detail-content.reverse {
    direction: ltr;
  }

  .service-detail-text {
    padding: 2rem;
  }

  .service-detail h3 {
    font-size: 1.8rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .service-detail-text {
    padding: 1.5rem;
  }

  .service-detail h3 {
    font-size: 1.6rem;
  }

  .services-intro h2 {
    font-size: 2rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.p-1 {
  padding: 0.5rem;
}
.p-2 {
  padding: 1rem;
}
.p-3 {
  padding: 1.5rem;
}
.p-4 {
  padding: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* Smooth Animations */
* {
  scroll-behavior: smooth;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #2c5aa0;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid #2c5aa0;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .cart-sidebar,
  .modal,
  .floating-elements {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .property-card,
  .service-card,
  .team-member {
    break-inside: avoid;
  }
}
