.header1 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 180px 20px 120px;
  position: relative;
  overflow: hidden;
}
.header2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #000;
  padding: 180px 20px 120px;
  position: relative;
  overflow: hidden;
}
.header1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600")
    center/cover;
  opacity: 0.15;
  z-index: 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 14px;
  background-color: transparent;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

.property-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.property-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.property-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.meta-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

/* Gallery Section */
.gallery-section {
  margin-top: -60px;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-image {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.main-image:hover img {
  transform: scale(1.05);
}

.gallery-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid #fff;
}

.gallery-dot.active {
  background: #fff;
  width: 40px;
  border-radius: 6px;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 15px;
  background: #f8f9fa;
}

.thumbnail {
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Section */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}

.main-content {
  background: #fff;
}

.section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  border-radius: 2px;
}

.section-text {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: start;
  gap: 15px;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Amenities */
.amenities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s;
}

.amenity-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}
/* Modal Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal Container */
.modal {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 1000px;
  width: 100%;
  display: flex;
  overflow: hidden;
  animation: slideUp 0.4s ease;
  position: relative;
  height: 720px;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 24px;
  z-index: 1001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #000;
}

/* Form Section */
.modal-form {
  flex: 1;
  padding: 50px 40px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.modal-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}

/* Form Fields */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row.full {
  grid-template-columns: 1fr;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  /* width: 100%; */
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}

/* Submit Button */
.form-submit {
  margin-top: 30px;
}

.submit-btn {
  width: 100%;
  padding: 14px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Image Section */
.modal-image {
  flex: 0 0 400px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.getint {
  padding: 40px;
  background-color: #d2e1e859;
}
.ddre {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: center;
  justify-content: unset;
  color: #000;
}

.ddre:hover {
  color: #19174f;
  text-decoration: none;
}
.ddre img[src$=".svg"] {
  width: 48px;
  margin-right: 20px;
}
.wths {
  font-size: 19px;
  font-weight: 400;
  color: #000000;
}
.wrthnu {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}
.pp {
  font-size: 22px;
}

.tit {
  font-family: "Roboto", Sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: #282a39;
  line-height: 1;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 10%);
}

/* Trigger Button */
.trigger-btn {
  padding: 14px 40px;
  background: #19174f;
  color: white;
  border: none;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
}

.trigger-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .modal {
    flex-direction: column;
  }

  .modal-form {
    padding: 30px 20px;
    min-height: auto;
  }

  .modal-title {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-image {
    display: flex;
    height: 250px;
    flex: none;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }
}

/* Success Message */
.success-message {
  display: none;
  padding: 15px;
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  color: #2e7d32;
  border-radius: 4px;
  margin-bottom: 20px;
}

.success-message.show {
  display: block;
  animation: slideUp 0.3s ease;
}
.amenity-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Location Section */
.location-map {
  width: 100%;
  height: 400px;
  background: #e9ecef;
  border-radius: 15px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.location-map::before {
  content: "🗺️";
  font-size: 100px;
  opacity: 0.3;
}

.nearby-places {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.place-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
}

.place-name {
  font-weight: 600;
  color: #1a1a2e;
}

.place-distance {
  color: #3498db;
  font-weight: 600;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.inquiry-form {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 35px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #19174f;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
  margin-bottom: 16px;
  width: 100%;
  height: 54%;
}
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #19174f;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #19174f;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #19174f;
  font-size: 14px;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #19174f;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #19174f;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.price-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.price-detail {
  font-size: 13px;
  color: #999;
}

/* Payment Plan */
.payment-plan {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.payment-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.payment-item:last-child {
  border-bottom: none;
}

.payment-label {
  color: #666;
}

.payment-value {
  font-weight: 600;
  color: #1a1a2e;
}

/* Footer */
.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 40px 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 968px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .property-title {
    font-size: 32px;
  }

  .features-grid,
  .amenities-list,
  .nearby-places {
    grid-template-columns: 1fr;
  }

  .thumbnail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-image {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .property-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 24px;
  }

  .thumbnail-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.animated {
  opacity: 0;
}

.animated.show {
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.animate-left {
  opacity: 0;
}

.animate-left.show {
  animation: fadeInLeft 0.8s ease-in-out forwards;
}

.animate-right {
  opacity: 0;
}

.animate-right.show {
  animation: fadeInRight 0.8s ease-in-out forwards;
}

.animate-scale {
  opacity: 0;
}

.animate-scale.show {
  animation: scaleIn 0.8s ease-in-out forwards;
}

.header-content {
  animation: slideDown 1s ease-in-out;
}

.meta-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-in-out forwards;
}

.meta-item:nth-child(1) {
  animation-delay: 0.2s;
}
.meta-item:nth-child(2) {
  animation-delay: 0.4s;
}
.meta-item:nth-child(3) {
  animation-delay: 0.6s;
}
.meta-item:nth-child(4) {
  animation-delay: 0.8s;
}

.gallery-container {
  animation: scaleIn 1s ease-out 0.3s backwards;
}

.thumbnail {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.thumbnail:nth-child(1) {
  animation-delay: 0.1s;
}
.thumbnail:nth-child(2) {
  animation-delay: 0.2s;
}
.thumbnail:nth-child(3) {
  animation-delay: 0.3s;
}
.thumbnail:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card {
  opacity: 0;
}

.feature-card.show {
  animation: fadeInUp 0.6s ease-out forwards;
}

.amenity-item {
  opacity: 0;
}

.amenity-item.show {
  animation: fadeInLeft 0.5s ease-out forwards;
}

.place-item {
  opacity: 0;
}

.place-item.show {
  animation: fadeInRight 0.5s ease-out forwards;
}

.inquiry-form {
  animation: fadeInRight 1s ease-out 0.5s backwards;
}

.price-box {
  animation: fadeInRight 1s ease-out 0.7s backwards;
}

.payment-plan {
  animation: fadeInRight 1s ease-out 0.9s backwards;
}

.section-title::after {
  width: 0;
  transition: width 0.8s ease-out;
}

.section.show .section-title::after {
  width: 60px;
}

/* Hover animations */
.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  animation: pulse 0.6s ease-in-out;
}

.amenity-icon {
  transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
  animation: float 0.6s ease-in-out;
}

/* Loading shimmer effect */
.main-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
  pointer-events: none;
}

.main-image:hover::after {
  display: none;
}
/*# sourceMappingURL=styles.css.map */
.page-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 50px;
}
.header2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/bann-scaled.jpg) center / cover;
  opacity: 0.15;
  z-index: 1;
}

.header3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/bannerr.jpg) center / cover;
  opacity: 0.15;
  z-index: 1;
}
.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Filter Section */
.filter-section {
  background: white;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1;
  position: relative;
}

.filter-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group input,
.filter-group select {
  padding: 12px;
  border: 1px solid #19174f;
  border-radius: 9px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;

  margin-bottom: 18px;
}

.filter-group input:focus,
.filter-group select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.btn-search,
.btn-reset {
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-search {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-reset {
  background: #f0f0f0;
  color: #333;
}

.btn-reset:hover {
  background: #e0e0e0;
}

/* Projects Grid */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.projects-count {
  font-size: 16px;
  color: #666;
  font-weight: 600;
}
.hep {
  color: #fff;
  font-size: 55px;
  text-align: center;
  font-weight: 700;
}
.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-wrapper label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sort-wrapper select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

.project-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content {
  padding: 25px;
}

.project-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.project-location {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.detail-value {
  font-size: 16px;
  font-weight: 700;
  color: #667eea;
}

.project-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.project-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
}

.empty-state-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.empty-state-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.empty-state-text {
  color: #666;
  font-size: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination button {
  padding: 10px 15px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination button.active {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-color: transparent;
}

.pagination button:hover:not(.active) {
  border-color: #667eea;
  color: #667eea;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }
  .getint {
    padding: 40px 12px;
    background-color: #d2e1e859;
  }
  .tit {
    font-size: 28px;

    text-align: center;
    margin-bottom: 28px;
  }
  .pp {
    font-size: 20px;
    text-align: center;
  }
  .ddre {
    justify-content: center;
    color: #000;
    margin-bottom: 24px;
  }

  .ddre img[src$=".svg"] {
    width: 48px;
    margin-right: 7px;
  }
  .ddre div {
    text-align: center;
  }
  .filters-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-direction: column;
  }
  .hep {
    color: #fff;
    font-size: 35px;
    text-align: center;
    font-weight: 700;
  }
  .btn-search,
  .btn-reset {
    width: 100%;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-wrapper {
    width: 100%;
  }

  .sort-wrapper select {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: fadeIn 0.5s ease;
}
.contact-section {
  max-width: 1400px;
  margin: -20px auto 0;
  padding: 0 20px 80px;
  position: relative;
  z-index: 10;
}

.contact-container {
  background: white;
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 50px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: start;
}

/* Form Section */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e74c3c;
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid #19174f;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #19174f;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

.phone-input {
  display: flex;
  gap: 10px;
}

.country-code {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #f8f9fa;
  min-width: 90px;
}

.flag {
  width: 24px;
  height: 16px;
  border-radius: 2px;
}

.phone-input input {
  flex: 1;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  padding: 16px 40px;
  background: linear-gradient(135deg, #19174f 0%, #19174f 100%);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

/* Image Section */
.contact-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 500px;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Success Message */
.success-message {
  display: none;
  padding: 16px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 6px;
  color: #155724;
  margin-bottom: 20px;
}

.success-message.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 400px;
    order: -1;
  }

  .contact-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 200px;
  }

  .contact-section {
    margin-top: -60px;
    padding-bottom: 60px;
  }

  .contact-container {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-image {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 150px;
  }

  .contact-section {
    margin-top: -40px;
    padding: 0 15px 40px;
  }

  .contact-container {
    padding: 25px 15px;
  }

  .contact-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .phone-input {
    flex-direction: column;
    gap: 10px;
  }

  .country-code {
    width: 100%;
  }

  .submit-button {
    width: 100%;
    padding: 14px 20px;
  }

  .contact-image {
    min-height: 250px;
  }
}
.blog-listing {
  display: block;
}

.blog-listing.hidden {
  display: none;
}

/* Main Featured Post */
.featured-post {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

.featured-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-post:hover .featured-image img {
  transform: scale(1.05);
}

.featured-content {
  padding: 40px;
}

.featured-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.featured-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-date {
  font-size: 13px;
  color: #999;
}

/* Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-top: 50px;
}

.sidebar {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.sidebar-widget {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #667eea;
}

.sidebar-post {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-post:hover {
  padding-left: 10px;
}

.sidebar-post:last-child {
  border-bottom: none;
}

.sidebar-post-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.sidebar-post-date {
  font-size: 12px;
  color: #999;
}

/* Single Post View */
.single-post {
  display: none;
}

.single-post.active {
  display: block;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: white;
  border: 2px solid #667eea;
  color: #667eea;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.back-button:hover {
  background: #667eea;
  color: white;
}

.single-post-container {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.single-post-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.single-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-content {
  padding: 50px;
}

.single-post-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.single-post-meta {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
}

.single-post-body {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

.single-post-body p {
  margin-bottom: 20px;
}

.single-post-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 20px;
}

.single-post-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 30px 0 15px;
}

.single-post-body ul {
  margin: 20px 0;
  padding-left: 30px;
}

.single-post-body li {
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 300px;
  }

  .featured-content {
    padding: 25px;
  }

  .featured-title {
    font-size: 24px;
  }

  .single-post-content {
    padding: 30px 20px;
  }

  .single-post-title {
    font-size: 28px;
  }

  .single-post-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }

  .featured-title {
    font-size: 20px;
  }

  .blog-title {
    font-size: 18px;
  }

  .single-post-title {
    font-size: 24px;
  }

  .single-post-body {
    font-size: 15px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card,
.featured-post {
  animation: fadeIn 0.5s ease;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.area-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
}

.area-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #19174f, #212529);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: white;
}

.area-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.area-card:hover .area-image img {
  transform: scale(1.05);
}

.area-content {
  padding: 25px;
}

.area-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.area-properties {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  color: #666;
}

.property-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.property-icon {
  font-size: 16px;
}

.area-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.area-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: #19174f;
}

.stat-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.area-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #19174f, #212529);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.area-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 32px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .area-properties {
    flex-direction: column;
    gap: 8px;
  }

  .area-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.area-card {
  animation: fadeIn 0.5s ease;
}
