/* CSS Variables & Reset */
:root {
    --primary-color: #0a192f;
    --secondary-color: #112240;
    --accent-color: #f37646;
    --accent-hover: #f58f67;
    --text-dark: #333333;
    --text-light: #8892b0;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e6e6e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    /* --font-main: 'Outfit', sans-serif; */
    --font-main: 'Open Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
[dir="ltr"] {
  text-align: left;
}

[dir="rtl"] body{
  font-family: 'Cairo', sans-serif;
  text-align: right;
}
[dir="rtl"] h1, h2, h3, h4, h5, h6{
  font-family: 'Cairo', sans-serif;
}
[dir="rtl"] .about-content p{
  font-size: 15px;
  text-align: right;
}
[dir="rtl"] .hero h1{
  font-size: 3.5rem;
  letter-spacing: 2px;
}
[dir="rtl"] .footer-col{
  text-align: right;
}
[dir="rtl"] .top-bar-item{
  text-align: right;
}
@media (max-width:768px){
  [dir="rtl"] .hero h1{
    font-size: 3rem;
  }
  [dir="rtl"] .nav-menu{
    text-align: right;
    padding-right: 10px;
  }
}

h1, h2, h3, h4, h5, h6{
  font-family: sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 1rem;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    background: #21333e;
}
.bg{
  background: transparent!;
}
.bg-light {
    background-color: var(--light-bg);
}

.highlight {
    /* color: var(--accent-color); */
    color: #b08747;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    /* background: linear-gradient(135deg, #c5a059 0%, #e0b050 50%, #c5a059 100%); */
    background: #b08747;
    background-size: 200% auto;
    color: var(--white);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: all 0.4s ease;
}

.btn-primary:hover {
    background: #f58f67;
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
}

.btn-premium-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.btn-premium-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    font-weight: 600;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.btn-light {
  background: #f37646;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
.btn-light:hover{
  background: transparent;
  color: #111;
  border: 2px solid #f37646;  
}
.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 600;
    /* color: var(--primary-color); */
    color: #fff;
    margin-bottom: 10px;
}

.section-header p {
    /* color: var(--text-light); */
    color: #bbb;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    /* background-color: var(--primary-color); */
    background: #21333e;
    color: var(--white);
    padding: 8px 0;
    font-size: 0.95rem;
    letter-spacing: 1.1px;
    z-index: 1001;
}
.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.top-bar-info {
    display: flex;
    gap: 20px;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.top-bar-item i {
    /* color: var(--accent-color); */
    color: #b08747;
}
.top-bar-item span a:hover{
    color: #b08747;
}
.top-bar-item.social-icons-small {
    gap: 15px;
}
.top-bar-item.social-icons-small a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}
.top-bar-item.social-icons-small a:hover {
    opacity: 1;
    color: var(--accent-color);
}
/* .top-bar-item a{
    background: #c5a059;
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
} */
.side-button {
  background: #b08747;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  text-orientation: mixed;
  padding: 4px 8px;
}
@keyframes pulse{
   0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.side-button a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 1px;
}
.side-button:hover{
  background: #ff8555;
  animation: pulse 2s infinite;
}

.modal-header{
	background: #c5a059;
}

@media(max-width: 1024px){
	.side-button{
		top: 50%;
	}
}

@media (max-width: 768px) {
  .side-button {
    top: 40%;
    writing-mode: sideways-lr;
    text-orientation: mixed;
    border-radius: 10px 0 0 10px;
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .side-button span {
    font-size: 14px;
  }
} 

/* SIDEBAR CONTACT MENU */
.sidebar-contact-info{
  display: none;
}
@media (max-width:768px){
  .sidebar-contact-info{
    display: block;
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    height: 100vh;
    /* text-align: center; */
    gap: 30px;
    transition: 0.3s;
    padding-top: 100px;
    overflow-y: auto;
  }
}

/* Navbar */
.navbar {
    background-color: var(--white);
    /* box-shadow: var(--shadow); */
    position: sticky;
    top: 0;
    z-index: 1000;
    /* height: 80px; */
    height: 110px;
    display: flex;
    align-items: center;
    padding: 10px 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}
.logo img{
    width: 220px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    padding: 16px 8px;
    position: relative;
}
.nav-link i{
    font-size: 10px;
}
.nav-link:hover,
.nav-link.active {
    /* color: var(--accent-color); */
    color: #b08747;
    transform: scale(1.1);
}
.nav-btn{
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding: 10px 15px;
    letter-spacing: 1.4px;
    position: relative;
}

@media(max-width:998px){
   .nav-link{
     font-size: 16px;
     padding: 16px 6px;
   }
}
@media(max-width:820px){
  .nav-link{
    padding: 16px 0;
  }
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 200px;
    box-shadow: var(--hover-shadow);
    padding: 10px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    /* color: var(--accent-color); */
    color: #b08747;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5));
    z-index: 1;
}
/* .hero {
    height: 100vh;
    width: 100%;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
}
.hero {
    background-color: var(--primary-color);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
} */
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    width: 100%;
    margin-top: 0;
}
.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: 1.6px;
    margin-bottom: 15px;
    font-weight: 700;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    max-width: 650px;
    width: 100%;
    color: #eee;
}
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
/* Search Bar */
.search-bar {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}
.search-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 20px;
    align-items: end;
}
.input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}
.input-group input,
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
}
.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-search {
    padding: 12px 30px;
    /* background-color: var(--accent-color); */
    background: #b08747;
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    height: 48px;
    transition: var(--transition);
}

.btn-search:hover {
    /* background-color: var(--accent-hover); */
    background-color: #b08646;
}

/* Featured Properties */
.property-grid {
  max-width: 1300px;
  width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.property-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}
.property-img {
    /* height: 250px; */
    overflow: hidden;
    position: relative;
}
.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-img img {
    transform: scale(1.05);
}
.property-tag {
   position: absolute;
   top: 15px;
   left: 10px;
   padding: 3px 8px;
   background-color: #27ae60;
   color: var(--white);
   font-size: 0.8rem;
   font-weight: 500;
}
.property-status {
   position: absolute;
   top: 15px;
   right: 10px;
   padding: 3px 8px;
   background-color: var(--primary-color);
   color: var(--white);
   font-size: 0.8rem;
   font-weight: 500;
}
.property-details {
    padding: 15px;
}
.property-price {
   font-size: 18px;
   color: var(--accent-color);
   font-weight: 700;
   margin-bottom: 10px;
}
.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.property-location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.property-features {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    color: var(--text-dark);
}
.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}
.center-btn {
    text-align: center;
}
.properties-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

.properties-footer img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.properties-footer .contact-icons {
  display: flex;
  gap: 5px;
}

.properties-footer .contact-icons .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
  text-decoration: none;
}

@media (max-width:1199px){
  .property-grid{
    grid-template-columns: 1fr 1fr;
  }
}

/* HOME-- why choose us */
.split-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.text-content {
    flex: 1;
}

.image-content {
    flex: 1;
}

.benefits-list {
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefits-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
  background: #21333e;
  padding: 60px 20px 30px 20px;
}

.cta-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-content {
  color: #fff;
  max-width: 800px;
  width: 100%;
}

.cta-content h2 {
  font-family: "Tenor Sans";
  font-size: 55px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  color: #ddd;
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #b08747;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: transparent;
  border: 2px solid #b08747;
  color: #fff;
}

.cta-image img {
  max-width: 300px;
  width: 100%;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 38px;
  }

  .cta-image img {
    max-width: 180px;
  }
}
@media (max-width:480px){
  .cta-image{
    display: none;
  }
}


/* Footer */
.footer {
    /* background-color: #050d1a; */
    background: #2c3240;
    color: #8892b0;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    /* grid-template-columns: 2fr 1fr 1fr 1.5fr; */
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo img{
    width: 250px;
}
.footer-col{
  text-align: left;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 25px;
}
.footer-col p{
   color: #ddd;
   font-size: 16px; 
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a{
    color: #ddd;
}
.footer-col ul li a:hover {
    /* color: var(--accent-color); */
    color: #b08747;
    padding-left: 5px;
    letter-spacing: 1.3px;
}
.footer-col ul li i{
    font-size: 14px;
    color: #b08747;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p{
    font-size: 15px;
    color: #ddd;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}
.social-links i{
    color: #ccc;
    font-size: 19px;
}

.social-links a:hover, .social-links i:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Responsive */
@media(max-width:1072px){
  .nav-link{
    padding: 16px 6px;
  }
}
@media(max-width:1045px){
  .nav-link{
    padding: 16px 4px;
  }
}
@media(max-width:920px){
  .nav-link{
    padding: 16px 3px;
  }
}
@media(max-width:880px){
  .nav-link{
    padding: 16px 1px;
    font-size: 15px;
  }
}

@media (max-width:1199px){
  .nav-menu{
    gap: 17px;
  }
}
@media (max-width:1099px){
  .nav-menu{
    gap: 14px;
  }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
    .nav-menu{
      gap: 13px;
    }
    /* .nav-link{
      padding: 16px 5px;
    } */
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .nav-menu{
      gap: 12px;
    }
    .nav-link{
      font-size: 14px;
    }

    .search-form {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 60px 0;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: left;
        background-color: var(--white);
        width: 100%;
        height: 100vh;
        text-align: left;
        gap: 30px;
        transition: 0.3s;
        padding-top: 100px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-item-dropdown {
        display: block;
        width: 100%;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        width: 100%;
        background-color: #f9f9f9;
        display: none;
        /* Hidden by default, toggled via JS class */
    }

    .nav-item-dropdown.active .dropdown-menu {
        display: block;
        top: 0;
    }

    .dropdown-menu li a {
        padding: 15px;
        border-bottom: 1px solid #eee;
    }

    .search-form {
        /* grid-template-columns: 1fr; */
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2.3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin-top: 40px;
    }

    .btn-search {
        width: 100%;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    /* Updated to use var */
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-call {
    background-color: var(--secondary-color);
    /* Using secondary to match nav/theme */
    border: 2px solid var(--white);
}

.btn-facebook {
    background-color: #3b5998;
}

.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-tiktok {
    background-color: #000000;
}

.btn-google {
    background-color: #DB4437;
}

/* Social Sidebar Left */
.social-sidebar-left {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-btn {
    width: 50px;
    height: 50px;
    background-color: #333;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, width 0.3s;
    text-decoration: none;
}

.box-btn:hover {
    transform: translateX(5px);
    color: var(--white);
}

.box-btn.btn-facebook {
    background-color: #3b5998;
}

.box-btn.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.box-btn.btn-tiktok {
    background-color: #000000;
}

.box-btn.btn-google {
    background-color: #DB4437;
}

@media (max-width: 768px) {
    .social-sidebar-left {
        left: 10px;
        bottom: 90px;
    }
}

/* Testimonials Section */
.testimonials {
  /* background-color: var(--light-bg); */
  background: #21333e;
  position: relative;
  overflow: hidden;
  padding: 80px 10px;
}

.testimonials .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.testimonial-grid {
  display: flex;
  gap: 24px;
  padding: 10px 4px 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 auto;
  /* width: clamp(280px, 80vw, 380px); */
  width: 350px;
  max-width: 100%;
  background: var(--white);
  padding: 40px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border-bottom: 4px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  /* border-bottom-color: var(--accent-color); */
  border-bottom-color: #b08747;
}

.testimonial-card i.fa-quote-left {
  position: absolute;
  top: 5px;
  right: 12px;
  font-size: 3rem;
  color: rgba(197, 160, 89, 0.18);
}

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-color);
}

.user-info h4 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--primary-color);
}

.user-info span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.testimonial-card:hover{
  transform: scale(1.05);
}

.rating{
  display: flex;
  margin-bottom: 15px;
}
.rating i{
  font-size: 13px;
  color: #ffc107;
}

@media (min-width: 1024px) {
  .testimonial-grid {
    justify-content: center;
  }
}
@media (max-width: 768px){
    .testimonial-card{
        width: 300px;
    }
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: 30px 16px;
  }

  .testimonial-user {
    gap: 12px;
  }

  .user-img {
    width: 52px;
    height: 52px;
  }
}

    @media (max-width: 768px) {
        .floating-actions {
            bottom: 20px;
            right: 20px;
        }
    }
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Animation Utilities */
        .animate-on-scroll {
            opacity: 0;
            /* Hidden by default */
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-fade-up {
            transform: translateY(30px);
        }

        .animate-fade-up.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-scale {
            transform: scale(0.9);
        }

        .animate-scale.is-visible {
            opacity: 1;
            transform: scale(1);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
            /* Bouncy */
        }

        /* Stagger delays */
        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        /* Hero Specific Load Animation */
        .hero-content h1 {
            animation: fadeInUp 1s ease-out forwards;
            opacity: 0;
            /* Star hidden */
        }

        .hero-content p {
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }

        .hero-actions {
            animation: fadeInUp 1s ease-out 0.6s forwards;
            opacity: 0;
        }

        .search-bar {
            animation: scaleIn 0.8s ease-out 0.8s forwards;
            opacity: 0;
        }

 /* LEFT-SIDE ICONS */
.leftside-icons {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 999;
}
.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 14px;
    letter-spacing: 2px;
    color: #aaa;
}
.leftside-icons i{
  color: #bbb;
}
.leftside-icons .social-icons {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.leftside-icons .social-icons a i{
    width: 42px;
    height: 42px;
    background: #1f1f1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    transition: 0.3s ease;
}
.leftside-icons .social-icons a:hover {
    transform: translateX(4px);
    padding-left: 5px;
}

@media (max-width:768px){
  .leftside-icons{
    display: none;
  }
}

/* WHATSAPP */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 2000;
}
.chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.chat-btn a img{
    width: 60px;
    height: 60px;
}
.chat-btn img:hover {
    transform: scale(1.15);
}
@media (max-width:768px){
  .chat-btn img{
    width: 50px;
    height: 50px;
  }
}

/* HOME---- SERVICES SECTION */
.services-section{
  padding: 100px 20px;
  background: #21333e;
}
.services-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: flex-start;
}
.services-left .section-tag {
  color: #b08747;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}
.services-left h2 {
  font-size: 52px;
  color: #eee;
  line-height: 1.3;
  margin: 20px 0 30px;
}
.services-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #eee;
  text-decoration: none;
  color: #eee;
  font-size: 14px;
  letter-spacing: 1.1px;
  transition: 0.3s;
}
.services-btn:hover {
  background: #2c3240;
  border: 2px solid #2c3240;
  color: #fff;
}
/* .experience-badge{
  position: relative;
  background: #2c3240;
  color: #fff;
  padding: 35px 20px;
  margin: 40px 20px;
  display: flex;
  gap: 15px;
  justify-content: space-evenly;
  max-width: 300px;
  width: 100%;
}
.experience-badge::before{
  background: #f37646;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  position: absolute;
}
.experience-badge::after{
  background: #2c3240;
  top: 0;
  left: 0;
  z-index: -1;
}
.experience-badge h2{
  font-size: 55px;
  color: #fff;
}
.experience-badge h3{
  font-size: 35px;
  font-weight: 600;
  color: #eee;
} */
 .experience-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 40px;
  max-width: 300px;
  width: 100%;
}
.experience-wrapper::before {
  content: "";
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: #fff; 
  z-index: 0;
}
.experience-card {
  position: relative;
  background: #b08747;
  width: 100%;
  height: 100%;
  color: #ffffff;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 1;
  animation: pulse 3s infinite;
}
.experience-card span {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}
.experience-card .text p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .experience-wrapper{
    max-width: 300px;
  }
  .experience-card {
    padding: 20px 25px;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .experience-card .text p{
    font-size: 25px;
  }
  .experience-wrapper::before {
    left: -12px;
    bottom: -12px;
  }
}

@media (max-width: 580px) {
  .experience-card {
    flex-direction: row;
  }
  .experience-card .years {
    font-size: 40px;
  }
  .experience-card .text p{
    font-size: 20px;
  }
}

.services-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-card .icon img{
   width: 70px;
   height: 70px;
   margin-bottom: 20px;
}
.service-card h3 {
  font-size: 24px;
  color: #ddd;
  line-height: 1.3;
  letter-spacing: 1.1px;
  margin-bottom: 12px;
}
.service-card p {
  max-width: 300px;
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
}
@media (max-width: 992px) {
  .services-wrapper {
    grid-template-columns: 1fr;
  }
  .services-left{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .experience-badge{
    height: 200px;
  }
}
@media (max-width: 576px) {
  .services-right {
    grid-template-columns: 1fr;
  }
  .services-left{
    grid-template-columns: 1fr;
  }
  .experience-badge{
    width: 300px;
  }
}

/* HOME--- READY PROPERTIES */
.ready-properties{
  background: #21333e;
}
.ready-properties .container {
  max-width: 1200px;
  padding: 20px;
  width: 100%;
  margin: 0 auto;
}
.ready-properties .section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.ready-properties .section-head h2 {
  font-size: 40px;
  font-weight: 600;
  color: #b08747;
}
.ready-properties .view-all-btn {
  background: #b08747;
  color: #fff;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
}
.ready-properties .view-all-btn:hover{
  background: #fff;
  color: #000;
  border: 2px solid #b08747;
}
.ready-properties .property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.ready-properties .property-card {
  /* background: #fff; */
  overflow: hidden;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.08); */
}
.ready-properties .property-image {
  position: relative;
  /* height: 220px; */
  height: auto;
}
.ready-properties .property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-content {
  padding: 18px;
}
.property-content .price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-content .price h3 {
  font-size: 22px;
  color: #21333e;
}
.property-content .title {
  margin: 10px 0;
  font-size: 14px;
  color: #333;
}
.property-content .features {
  display: flex;
  gap: 15px;
  font-size: 15px;
  color: #555;
  margin-bottom: 8px;
}
.property-content .location {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}
.actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.actions .btn {
  flex: 1;
  padding: 10px;
  text-align: center;
  border: 1px solid #b08747;
  border-radius: 25px;
  text-decoration: none;
  color: #b08747;
  font-size: 16px;
  font-weight: 500;
}
.actions .btn:hover {
  background: #b08747;
  color: #fff;
}
@media (max-width: 600px) {
  .ready-properties .section-head {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* SLIDESHOW */
.slideshow-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.slideshow-container .mySlides img{
   width: 100%;
   height: 100%; 
}
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.slideshow-container .active {
  background-color: #717171;
}
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* HOME-- WHY CHOOSE US */
.why-choose-us {
  position: relative;
  padding: 50px 0;
  color: #fff;
  overflow: hidden;
}
.why-choose-us .bg-section {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.why-choose-us .bg-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-choose-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.why-heading h5 {
  font-size: 14px;
  letter-spacing: 1.6px;
  font-weight: 600;
  color: #b08747;
  margin-bottom: 12px;
}
.why-heading h2 {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.why-heading p {
  font-size: 16px;
  line-height: 1.7;
  color: #e6e6e6;
  margin-bottom: 30px;
}
.why-btn {
  display: inline-block;
  padding: 12px 30px;
  border:2px solid #b08747;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.why-btn:hover {
  background: #f5c97b;
  color: #000;
  border: 1px solid #f5c97b;
}
.why-points {
  padding: 40px;
  border-radius: 16px;
}
.why-points hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 22px 0;
}
.points {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.points span {
  font-size: 32px;
  font-weight: 700;
  color: #b08646;
  min-width: 45px;
}
.points h3 {
  font-size: 24px;
  font-weight: 500;
}
.points p {
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-heading {
    text-align: center;
  }
  .why-points {
    padding: 30px;
  }
  .why-heading h2 {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .why-choose-us {
    padding: 70px 0;
  }
  .why-heading h2 {
    font-size: 35px;
  }
  .points span {
    font-size: 26px;
  }
  .points h3{
    font-size: 21px;
  }
}

/* ABOUT PAGE BANNER */
.page-header {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
}

.page-header h1 {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 18px;
  letter-spacing: 2px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
}
@media (max-width: 576px) {
  .page-header {
    min-height: 240px;
  }

  .page-header h1 {
    letter-spacing: 1px;
  }
}

/* ABOUT SECTION */
.about-highlight {
  padding: 100px 20px;
  background: #21333e;
}
.about-highlight .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.about-content .subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  color: #b08747;
  letter-spacing: 1.5px;
}
.about-content .title {
  font-size: 45px;
  letter-spacing: 2.2px;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #ddd;
  margin-bottom: 18px;
  max-width: 800px;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content p {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .about-highlight {
    padding: 50px 0;
  }
}

/* MISSION & VISION */
.mission-vision{
  padding: 100px 20px;
  background: #21333e;
}
.mission-vision .container{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.mission-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;

}
.mission-content{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.mission-content i, .vision-content i{
  background: #b08747;
  opacity: 0.9;
  width: 80px;
  height: 80px;
  font-size: 35px;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.mission-content h3, .vision-content h3{
  font-size: 28px;
  color: #fff;
  letter-spacing: 1.6px;
  font-weight: 600;
  margin-bottom: 10px;
}
.mission-content p, .vision-content p{
  font-size: 17px;
  letter-spacing: 1px;
  color: #eee;
  line-height: 1.5;
  max-width: 600px;
  width: 100%;
}

@media (max-width:700px){
  .mission-grid{
    grid-template-columns: 1fr;
  }
}

/* WHY ASAS? */
.why-section{
  padding: 80px 20px;
  background: #21333e;
}
.why-section .container{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.why-section h2{
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}
.why-section .grid{
  display: grid;
  grid-template-columns: 2fr 2fr 2fr;
  gap: 30px;
}
.why-card {
  position: relative;
  padding: 20px 15px;
  border-radius: 15px;
  background: #fff;
}
.why-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: #e5e5e5; 
  border-radius: 2px;
}

.why-card i{
  background: #f2e8da;
  color: #b08747;
  width: 70px;
  height: 70px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.why-card h3{
  font-size: 21px;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
}
.why-card p{
  font-size: 16px;
  line-height: 1.7;
}

@media(max-width:991px){
  .why-section .grid{
    grid-template-columns: 2fr 2fr;
  }
  .why-card{
    padding: 10px 30px;
  }
}
@media(max-width:598px){
  .why-section .grid{
    grid-template-columns: 2fr;
  }
  .why-section h2{
    font-size: 30px;
    font-weight: 600;
  }
  .why-card{
    padding: 15px 10px;
  }
  .why-card::before{
    display: none;
  }
  .why-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: #e5e5e5;
  }
  .why-card i{
    font-size: 28px;
    width: 80px;
    height: 80px;
    text-align: center;
  }
}
/* STATEMENT */
.statement-section {
  position: relative;
  padding: 80px 20px;
  overflow: hidden;
}
.statement-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.statement-section h2 {
  font-size: 48px;
  color: #000;
  font-weight: 300;
  letter-spacing: 4px;
  line-height: 1.3;
  margin-bottom: 30px;
  text-align: left;
  text-transform: uppercase;
}
.statement-section p {
  font-size: 15px;
  color: #222;
  max-width: 750px;
  width: 100%;
  text-align: left;
  line-height: 1.8;
}
.statement-section .side-image {
  position: absolute;
  top: 0;
  right: 80px;
  transform: scale(-1);
  width: 320px;
  height: 100%;
  background-image: url("../images/who\ we\ are.png"); 
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.9;
}
@media (max-width: 991px) {
  .statement-section .side-image {
    width: 220px;
    opacity: 0.4;
  }
  .statement-section h2{
    font-size: 40px;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .statement-section {
    padding: 70px 15px;
  }
  .statement-section h2{
    font-size: 30px;
  }
  .statement-section .side-image {
    display: none;
  }
}
@media(max-width:498px){
  .statement-section h2{
    font-size: 24px;
  }
}

/* CONTACT PAGE FORM */
 .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
 }

 .contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
 }

 .contact-form h3{
  font-size: 30px;
  margin-bottom: 30px;
 }

 .form-group {
  margin-bottom: 20px;
 }

 .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
 }
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
 }
 .map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eee;
 }
 @media(max-width: 768px) {
  .contact-wrapper {
     grid-template-columns: 1fr;
    }
  }

  /* CONTACT SECTION */
  .contact-section{
    padding: 80px 20px;
    background: #21333e;
  }
  .contact-section .container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
  .contact-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 40px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  }
  .contact-card i{
    background: #b08747;
    color: #fff;
    opacity: 0.9;
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .contact-card a{
    font-size: 18px;
    color: #222;
  }
  .contact-card a:hover{
    color: #b08747;
    letter-spacing: 1.6;
    padding-left: 10px;
  }
  @media(max-width:998px){
    .contact-grid{
      grid-template-columns: 1fr 1fr;
    }
  }
  @media(max-width:620px){
    .contact-grid{
      grid-template-columns: 1fr;
    }
  }

  /* SERVICES PAGE */
.services-stack {
  padding: 80px 20px;
  background: #21333e;
}
.services-stack .container{
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
.services-stack .section-title {
  text-align: center;
  font-size: 50px;
  color: #fff;
  margin-bottom: 60px;
}
.services-card {
  position: sticky;
  top: 120px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  padding: 10px;
}
.service-content {
  flex: 1;
  padding: 60px;
}
.service-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}
.service-content p {
  font-size: 16px;
  color: #555;
}
.service-image {
  flex: 1;
}
.service-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .services-card {
    flex-direction: column;
    top: 80px;
    border-radius: 0px;
  }
  .service-content {
    padding: 10px;
  }
  .service-image img{
    margin-bottom: 15px;
    border-radius: 0px;
  }
}
@media (max-width:480px){
  .service-content h3{
    font-size: 24px;
  }
}

/* STATISTICS -- ABOUT PAGE */
.stats-section {
  background: #21333e;
  padding: 70px 20px;
}
.stats-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}
.stat-header{
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-header h3{
  font-size: 25px;
  font-weight: 200;
  color: #fff;
  letter-spacing: 1px;
}
.stat-header h2{
  font-size: 35px;
  font-weight: 700;
  color: #b08747;
  margin-bottom: 15px;
}
.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-box h2 {
  font-size: 65px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.stat-box h2::after {
  content: "+";
}
.stat-box p {
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}
@media (max-width: 992px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .stat-box h2 {
    font-size: 48px;
  }
}

/* LISTINGS */
.listings {
  padding: 50px 0;
}

.listing-card {
  display: flex;
  background: #fff;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.listing-img {
  width: 35%;
  position: relative;
}

.listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card:hover img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  background: #27ae60;
}

.listing-content {
  width: 65%;
  padding: 25px;
}

.listing-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.listing-content .location {
  color: #777;
  margin: 6px 0 15px;
}

.listing-content .features {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 14px;
}

.listing-content .features i{
  padding-right: 5px;
}

.listing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  border-top: 1px solid #bbb;
  padding-top: 15px;
}

.listing-footer img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.listing-content .price {
  font-size: 22px;
  font-weight: 600;
  color: #f37646;
  margin-bottom: 10px;
}

.listing-footer .contact-icons {
  display: flex;
  gap: 12px;
}

.listing-footer .contact-icons .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
  text-decoration: none;
}

.icon.call {
  background: #2c3e50;
}

.icon.whatsapp {
  background: #25D366;
}

.icon.email {
  background: #f37646;
}

.contact-icons .icon:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

@media (max-width: 600px) {
  .listing-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media(max-width:768px){
  .listing-card{
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .listing-img,
  .listing-content {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .listing-banner h1 {
    font-size: 28px;
  }
  .features {
    flex-direction: column;
    gap: 8px;
  }
}

/* PROPERTIES & LISTINGS HEADER */
.properties-header {
  background-color: #21333e;
  border-bottom: 1px solid #aaa;
  padding: 30px 0;
}

.properties-header .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.properties-header .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #b08747;
  margin-bottom: 10px;
}

.properties-header .breadcrumb a {
  color: #b08747;
  text-decoration: none;
  transition: color 0.3s ease;
}

.properties-header .breadcrumb a:hover {
  color: #b08646;
}

.properties-header .divider {
  margin: 0 8px;
  color: #888;
}

.properties-header .separator  i {
  margin: 0 8px;
  color: #999;
  font-size: 13px;
}

.properties-header .current {
  color: #999;
}

.properties-header .properties-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (max-width: 768px) {
  .properties-header .breadcrumb {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .properties-header .breadcrumb {
    gap: 6px;
  }
}

/* SIDEBAR CONTACT */
.sidebar-contact {
  display: none;
  padding: 16px 20px;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.nav-menu img{
  display: none;
  width: 250px;
}
.sidebar-contact h3{
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 15px;
}
.sidebar-contact a {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 8px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  margin-bottom: 15px;
}
.sidebar-contact i {
  color: #2c3240;
  font-size: 15px;
}
@media (max-width: 820px) {
  .nav-menu.active .sidebar-contact {
    display: block;
  }
  .nav-menu.active img{
    display: block;
  }
}

/* POPUP FORM */
#popupOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popupBox {
  background: #f5f9ff;
  width: 420px;
  max-width: 90%;
  border-radius: 16px;
  padding: 20px;
  position: relative;
  animation: popupFade 0.4s ease;
}
.closeBtn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.popupHeader {
  text-align: center;
  margin-bottom: 20px;
}
.popupHeader .popupLogo{
  width: 350px;
}
.popupHeader h2 {
  color: #b08747;
  letter-spacing: 1px;
  margin: 10px 0;
}
.popupHeader h2 span {
  color: #21333e;
}
.popupHeader p{
  font-size: 15px;
  letter-spacing: 0.5px;
}
.popupForm label {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}
.popupForm input,
.popupForm select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.phoneRow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phoneRow select {
  width: 90px;
  height: 44px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  background: #fff;
}
.phoneRow input {
  flex: 1;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.phoneRow button {
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  background: #2c3e50;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  margin-top: -10px;
}
.privacy {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  font-size: 13px;
  margin-top: 10px;
}
.privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #0b1d3a;
  cursor: pointer;
}
.privacy span{
  font-size: 14px;
  margin-top: -10px;
}
@keyframes popupFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* LANGUAGE SWITCH */
.lang-radio {
  display: flex;
  background: #2c3240;
  border-radius: 30px;
  /* overflow: hidden; */
  font-size: 14px;
  font-weight: 600;
  padding: 5px 0;
}
.lang-radio input {
  display: none;
}
.lang-radio label {
  padding: 4px 8px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  background: transparent;
  transition: 0.3s;
}
.lang-radio input:checked + span {
  background: #fff;
  color: #000;
  border-radius: 50%;
  padding: 5px;
}

@media (max-width: 768px) {
  /* .lang-radio {
    display: block;
    font-size: 14px;
    text-align: center;
  }
  .lang-radio label{
    padding: 6px 10px;
  } */
}

@media (max-width: 768px) {
  .lang-radio {
    font-size: 15px;
    padding: 6px;
  }
  .lang-radio label{
    padding: 10px 20px;
  }
}
@media (max-width: 480px) {
  .lang-radio {
    font-size: 14px;
    padding: 5px;
  }
}

/* PROPERTIES PAGE */
.view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
  max-width: 1200px;
}

.view-toggle button {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

.view-toggle button.active {
  background: #b08747;
  color: #fff;
  border-color: #b08747;
}

.property-grid.grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.property-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.property-grid.list-view .property-card {
  display: flex;
  gap: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  align-items: stretch;
}
.property-grid.list-view .property-img {
  width: 300px;
  height: 200px;             
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.property-grid.list-view .property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;        
}
.property-grid.list-view .property-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.property-grid.list-view .property-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}

.property-grid.list-view .property-price {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b2c;
  margin-bottom: 6px;
}
.property-grid.list-view .property-location {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}
.property-grid.list-view .property-features {
  display: flex;
  gap: 20px;
  border-top: none;
  padding: 0;
}

.property-grid.list-view .feature {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.property-grid.list-view .properties-footer {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .property-grid.list-view .property-card {
    flex-direction: column;
  }

  .property-grid.list-view .property-img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width:680px){
   .view-toggle{
    display: none;
   } 
}

/* HOME-- DEVELOPERS SECTION */
.developers-logos {
  padding: 60px 0;
  background-color: #2c3240;
}

.developers-logos .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.developers-logos .section-title {
  text-align: center;
  font-size: 45px;
  color: #b08646;
  margin-bottom: 5px;
}
.developers-logos p{
  font-size: 18px;
  text-align: center;
  color: #ddd;
  margin-bottom: 40px;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  gap: 40px;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  width: 200px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.logo-item img:hover {
  transform: scale(1.05);
}
