@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0E1B2B;
  background-color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #E2A731;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: "Tajawal", sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
}
button:focus {
  outline: none;
}

input,
textarea,
select {
  font-family: "Tajawal", sans-serif;
  outline: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

::selection {
  background: #E2A731;
  color: #FFFFFF;
}

::-moz-selection {
  background: #E2A731;
  color: #FFFFFF;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #F8F9FA;
}

::-webkit-scrollbar-thumb {
  background: #E2A731;
  border-radius: 0.5rem;
}
::-webkit-scrollbar-thumb:hover {
  background: #D49620;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0E1B2B;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.text-gold {
  color: #E2A731;
}

.text-navy {
  color: #0E1B2B;
}

.text-gray {
  color: #6C757D;
}

.section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E2A731;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: #E2A731;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0E1B2B;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: #6C757D;
  max-width: 600px;
  margin: 0 auto;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled {
  background: #0E1B2B;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.navbar .navbar-brand .logo {
  max-height: 70px;
  width: auto;
  transition: height 0.3s ease;
}
.navbar.scrolled .navbar-brand .logo {
  max-height: 60px;
}
.navbar .navbar-toggler {
  border: 2px solid #E2A731;
  padding: 0.5rem;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23E2A731' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-nav .nav-item {
  margin: 0 0.5rem;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E2A731;
  transition: width 0.3s ease;
}
.navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
  color: #E2A731;
}
.navbar .navbar-nav .nav-item .nav-link:hover::after, .navbar .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
}
.navbar .navbar-nav .nav-item.dropdown {
  position: relative;
}
.navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
  display: none;
}
.navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::before {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7rem;
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 8px 30px rgba(14, 27, 43, 0.12);
  padding: 0.5rem 0;
  margin-top: 0;
  min-width: 200px;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1000;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
  color: #0E1B2B;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #E2A731;
  transform: scaleY(0);
  transition: transform 0.2s ease;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item i {
  color: #E2A731;
  font-size: 0.875rem;
  width: 18px;
  text-align: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
  background: linear-gradient(90deg, rgba(226, 167, 49, 0.05) 0%, rgba(226, 167, 49, 0.12) 100%);
  color: #E2A731;
  padding-right: calc(1.5rem + 5px);
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover::before {
  transform: scaleY(1);
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover i {
  transform: scale(1.15);
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active {
  background: #E2A731;
  color: #FFFFFF;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:active i {
  color: #FFFFFF;
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-divider {
  margin: 0.5rem;
  border-color: rgba(14, 27, 43, 0.08);
}
.navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .navbar .navbar-collapse {
    background: #0E1B2B;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  .navbar .navbar-nav .nav-item {
    margin: 0.5rem 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 1rem;
    border-radius: 0.25rem;
  }
  .navbar .navbar-nav .nav-item .nav-link:hover, .navbar .navbar-nav .nav-item .nav-link.active {
    background: rgba(226, 167, 49, 0.1);
  }
  .navbar .navbar-nav .nav-item.dropdown .nav-link.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    margin-right: 0.5rem;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    box-shadow: none;
    transform: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
    border-radius: 0.5rem;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item {
    color: #FFFFFF;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 0.25rem;
    margin: 0 0.5rem;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item i {
    color: #E2A731;
    width: 20px;
    text-align: center;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-item:hover {
    background: rgba(226, 167, 49, 0.2);
    color: #E2A731;
  }
  .navbar .navbar-nav .nav-item.dropdown .dropdown-menu .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem;
  }
}

.footer {
  background: #0E1B2B;
  color: #FFFFFF;
}
.footer .footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
}
.footer .footer-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
}
.footer .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
.footer .social-links .social-link:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.footer .footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background: #E2A731;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 1rem;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer .footer-links li a:hover {
  color: #E2A731;
  padding-right: 0.5rem;
}
.footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}
.footer .footer-contact li i {
  color: #E2A731;
  font-size: 1.125rem;
  min-width: 20px;
  margin-top: 2px;
}
.footer .footer-contact li span {
  line-height: 1.6;
}
.footer .footer-contact li:last-child {
  margin-bottom: 0;
}
.footer .footer-bottom .footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  text-align: right;
}
.footer .footer-bottom .footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-bottom .footer-bottom-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer .footer-bottom .footer-bottom-links li a:hover {
  color: #E2A731;
}
@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-links {
    justify-content: center;
  }
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&h=1080&fit=crop") center/cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding-top: 80px;
  }
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, rgba(14, 27, 43, 0.8) 0%, rgba(14, 27, 43, 0.95) 100%);
  z-index: 1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section .hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .hero-section .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-title {
    font-size: 2rem;
    line-height: normal;
  }
}
.hero-section .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .hero-section .hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }
}
.hero-section .hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-section .hero-buttons .btn {
  padding: 1rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 1rem;
}
@media (max-width: 576px) {
  .hero-section .hero-buttons .btn {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
.hero-section .hero-stats {
  margin-top: 6rem;
}
.hero-section .hero-stats .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .hero-section .hero-stats .stat-item {
    padding: 1rem;
  }
}
.hero-section .hero-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.hero-section .hero-stats .stat-item .stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #E2A731;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .hero-section .hero-stats .stat-item .stat-number {
    font-size: 2rem;
  }
}
.hero-section .hero-stats .stat-item .stat-label {
  font-size: 1.125rem;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 768px) {
  .hero-section .hero-stats .stat-item .stat-label {
    font-size: 1rem;
  }
}
.hero-section .scroll-down {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 576px) {
  .hero-section .scroll-down {
    bottom: 0;
  }
}
.hero-section .scroll-down a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #E2A731;
  border-radius: 50%;
  color: #E2A731;
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}
.hero-section .scroll-down a:hover {
  background: #E2A731;
  color: #FFFFFF;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.about-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .about-section {
    padding: 4rem 0;
  }
}
.about-section {
  background: #F8F9FA;
}
.about-section .about-image {
  position: relative;
}
.about-section .about-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.about-section .about-image .about-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: #E2A731;
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}
.about-section .about-image .about-badge i {
  font-size: 1.5rem;
}
.about-section .about-image .about-badge span {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (max-width: 576px) {
  .about-section .about-image .about-badge {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
  }
  .about-section .about-image .about-badge i {
    font-size: 1.25rem;
  }
  .about-section .about-image .about-badge span {
    font-size: 1rem;
  }
}
.about-section .about-text {
  font-size: 1.125rem;
  color: #6C757D;
  line-height: 1.8;
}
.about-section .about-features .feature-item {
  display: flex;
  gap: 1.5rem;
}
.about-section .about-features .feature-item .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: #F5E6C8;
  color: #E2A731;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.about-section .about-features .feature-item .feature-content h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 0.5rem;
}
.about-section .about-features .feature-item .feature-content p {
  font-size: 1rem;
  color: #6C757D;
  margin: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.projects-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .projects-section {
    padding: 4rem 0;
  }
}
.projects-section {
  background: #FFFFFF;
}
.projects-section .project-card {
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 27, 43, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  border: 1px solid rgba(248, 249, 250, 0.3);
}
.projects-section .project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E2A731 0%, rgb(196.3574468085, 140.1191489362, 27.6425531915) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 10;
}
.projects-section .project-card .project-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, rgba(14, 27, 43, 0.05) 0%, rgba(226, 167, 49, 0.05) 100%);
}
.projects-section .project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.projects-section .project-card .project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(to bottom, transparent 0%, rgba(14, 27, 43, 0.3) 40%, rgba(14, 27, 43, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.projects-section .project-card .project-image .project-overlay .btn {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.projects-section .project-card .project-image .project-overlay .btn:hover {
  transform: translateY(30px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.projects-section .project-card .project-image .project-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #0E1B2B;
  padding: 0.5rem 2rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid #FFFFFF;
  transition: all 0.3s ease;
}
.projects-section .project-card .project-image .project-badge.badge-residential {
  color: #0E1B2B;
}
.projects-section .project-card .project-image .project-badge.badge-commercial {
  color: #E2A731;
}
.projects-section .project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(14, 27, 43, 0.15);
  border-color: rgba(226, 167, 49, 0.3);
}
.projects-section .project-card:hover::before {
  transform: scaleX(1);
}
.projects-section .project-card:hover .project-image img {
  transform: scale(1.15) rotate(2deg);
}
.projects-section .project-card:hover .project-image .project-overlay {
  opacity: 1;
}
.projects-section .project-card:hover .project-image .project-overlay .btn {
  transform: translateY(0);
  opacity: 1;
}
.projects-section .project-card:hover .project-image .project-badge {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.projects-section .project-card:hover .project-content .project-title a {
  color: #E2A731;
}
.projects-section .project-card .project-content {
  padding: 2rem;
  background: #FFFFFF;
  position: relative;
}
@media (max-width: 768px) {
  .projects-section .project-card .project-content {
    padding: 1.5rem;
  }
}
.projects-section .project-card .project-content .project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.projects-section .project-card .project-content .project-title a {
  color: #0E1B2B;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}
.projects-section .project-card .project-content .project-title a:hover {
  color: #E2A731;
}
.projects-section .project-card .project-content .project-location {
  font-size: 0.75rem;
  color: #6C757D;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.projects-section .project-card .project-content .project-location i {
  color: #E2A731;
  font-size: 0.85rem;
}
.projects-section .project-card .project-content .project-description {
  font-size: 0.875rem;
  color: #6C757D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}
.projects-section .project-card .project-content .project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.projects-section .project-card .project-content .project-meta span {
  font-size: 0.75rem;
  color: #0E1B2B;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(226, 167, 49, 0.08);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.projects-section .project-card .project-content .project-meta span i {
  color: #E2A731;
  font-size: 0.9rem;
}
.projects-section .project-card .project-content .project-meta span:hover {
  background: rgba(226, 167, 49, 0.12);
  transform: translateY(-1px);
}

.units-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .units-section {
    padding: 4rem 0;
  }
}
.units-section {
  background: #F8F9FA;
}
.units-section .filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.units-section .filter-buttons .filter-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  padding: 1rem 2rem;
  background: #FFFFFF;
  color: #0E1B2B;
  border: 2px solid #DEE2E6;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.units-section .filter-buttons .filter-btn:hover, .units-section .filter-buttons .filter-btn.active {
  background: #E2A731;
  color: #FFFFFF;
  border-color: #E2A731;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.units-section .unit-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.units-section .unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.units-section .unit-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.units-section .unit-card .unit-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.units-section .unit-card .unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.units-section .unit-card .unit-image .unit-status {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
.units-section .unit-card .unit-image .unit-status.sale {
  background: #28A745;
  color: #FFFFFF;
}
.units-section .unit-card .unit-image .unit-status.rent {
  background: #17A2B8;
  color: #FFFFFF;
}
.units-section .unit-card .unit-image .unit-type {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(14, 27, 43, 0.9);
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 2;
}
.units-section .unit-card .unit-image .unit-type.commercial-type {
  background: rgba(23, 162, 184, 0.9);
}
.units-section .unit-card:hover .unit-image img {
  transform: scale(1.1);
}
.units-section .unit-card .unit-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.units-section .unit-card .unit-content .unit-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.units-section .unit-card .unit-content .unit-location {
  font-size: 0.875rem;
  color: #6C757D;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.units-section .unit-card .unit-content .unit-location i {
  color: #E2A731;
}
.units-section .unit-card .unit-content .unit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
}
.units-section .unit-card .unit-content .unit-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6C757D;
}
.units-section .unit-card .unit-content .unit-details .detail-item i {
  color: #E2A731;
  font-size: 1rem;
}
.units-section .unit-card .unit-content .unit-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #DEE2E6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.units-section .unit-card .unit-content .unit-footer .unit-price {
  display: flex;
  flex-direction: column;
}
.units-section .unit-card .unit-content .unit-footer .unit-price .price-label {
  font-size: 0.75rem;
  color: #6C757D;
  margin-bottom: 0.5rem;
}
.units-section .unit-card .unit-content .unit-footer .unit-price .price-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E2A731;
}
.units-section .unit-card .unit-content .unit-footer .inquire-btn {
  white-space: nowrap;
}
.units-section .unit-item {
  transition: all 0.3s ease;
}
.units-section .unit-item.hide {
  opacity: 0;
  transform: scale(0.8);
  display: none;
}

.news-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .news-section {
    padding: 4rem 0;
  }
}
.news-section {
  background: #FFFFFF;
}
.news-section .news-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-section .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.news-section .news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-section .news-card .news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.news-section .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-section .news-card .news-image .news-date {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #E2A731;
  color: #FFFFFF;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.news-section .news-card .news-image .news-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.news-section .news-card .news-image .news-date .month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.news-section .news-card:hover .news-image img {
  transform: scale(1.1);
}
.news-section .news-card .news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-section .news-card .news-content .news-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.news-section .news-card .news-content .news-meta span {
  font-size: 0.75rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-section .news-card .news-content .news-meta span i {
  color: #E2A731;
}
.news-section .news-card .news-content .news-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.news-section .news-card .news-content .news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-section .news-card .news-content .news-title a:hover {
  color: #E2A731;
}
.news-section .news-card .news-content .news-excerpt {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-section .news-card .news-content .news-link {
  font-size: 1rem;
  color: #E2A731;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.news-section .news-card .news-content .news-link i {
  transition: transform 0.3s ease;
}
.news-section .news-card .news-content .news-link:hover {
  color: #D49620;
}
.news-section .news-card .news-content .news-link:hover i {
  transform: translateX(-5px);
}
.news-section .news-card:hover .news-title {
  color: #E2A731;
}

.contact-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
}
.contact-section {
  background: #F8F9FA;
}
.contact-section .contact-info .contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.contact-section .contact-info .contact-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(-5px);
}
.contact-section .contact-info .contact-item .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: #F5E6C8;
  color: #E2A731;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-section .contact-info .contact-item .contact-details h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 0.5rem;
}
.contact-section .contact-info .contact-item .contact-details p {
  font-size: 1rem;
  color: #6C757D;
  margin: 0;
}
.contact-section .contact-form-wrapper {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contact-section .contact-form-wrapper {
    padding: 2rem;
  }
}
.contact-section .contact-form .form-label {
  font-weight: 500;
  color: #0E1B2B;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.contact-section .contact-form .form-control {
  padding: 1rem 1.5rem;
  border: 2px solid #DEE2E6;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-section .contact-form .form-control:focus {
  border-color: #E2A731;
  box-shadow: 0 0 0 0.2rem rgba(226, 167, 49, 0.15);
}
.contact-section .contact-form .form-control::placeholder {
  color: #B1B1B1;
}
.contact-section .contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-section .contact-form .btn {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 1rem 2rem;
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(226, 167, 49, 0.25);
}
.btn.btn-primary {
  background: #E2A731;
  color: #FFFFFF;
  border-color: #E2A731;
}
.btn.btn-primary:hover {
  background: #D49620;
  border-color: #D49620;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn.btn-primary:active {
  transform: translateY(0);
}
.btn.btn-outline-primary {
  background: transparent;
  color: #E2A731;
  border-color: #E2A731;
}
.btn.btn-outline-primary:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn.btn-light {
  background: #FFFFFF;
  color: #0E1B2B;
  border-color: #FFFFFF;
}
.btn.btn-light:hover {
  background: #F8F9FA;
  color: #0E1B2B;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn.btn-outline-light {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn.btn-outline-light:hover {
  background: #FFFFFF;
  color: #0E1B2B;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.btn.btn-lg {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn:disabled, .btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.scroll-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: #E2A731;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1030;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  background: #D49620;
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .scroll-top {
    bottom: 1.5rem;
    left: 1.5rem;
    width: 45px;
    height: 45px;
  }
}

.floating-buttons {
  position: fixed;
  bottom: 100px;
  left: 2rem;
  z-index: 1030;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 80px;
    left: 1.5rem;
    gap: 10px;
  }
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.float-btn:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.float-btn.whatsapp-btn {
  background: #25D366;
}
.float-btn.whatsapp-btn:hover {
  background: #128C7E;
}
.float-btn.whatsapp-btn::after {
  content: "";
  position: absolute;
  right: -35px;
  background: #25D366;
  color: #FFFFFF;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  content: "واتساب";
  font-family: "Tajawal", sans-serif;
}
.float-btn.whatsapp-btn:hover::after {
  opacity: 1;
  right: -75px;
}
.float-btn.call-btn {
  background: #E2A731;
}
.float-btn.call-btn:hover {
  background: #D49620;
}
.float-btn.call-btn::after {
  content: "";
  position: absolute;
  right: -35px;
  background: #E2A731;
  color: #FFFFFF;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  content: "اتصل بنا";
  font-family: "Tajawal", sans-serif;
}
.float-btn.call-btn:hover::after {
  opacity: 1;
  right: -75px;
}
.float-btn i {
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 10px;
  }
  .float-btn.whatsapp-btn::before, .float-btn.call-btn::before {
    display: none;
  }
}

.previous-works-section .section-subtitle {
  color: #E2A731;
}
.previous-works-section .section-title {
  color: #0E1B2B;
}

.form-control {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: "Tajawal", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #0E1B2B;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 2px solid #DEE2E6;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  color: #0E1B2B;
  background-color: #FFFFFF;
  border-color: #E2A731;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(226, 167, 49, 0.15);
}
.form-control::placeholder {
  color: #B1B1B1;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #F8F9FA;
  opacity: 1;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #0E1B2B;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group > :not(:first-child) {
  margin-right: -2px;
}

.form-control.is-valid {
  border-color: #28A745;
}
.form-control.is-valid:focus {
  border-color: #28A745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
}
.form-control.is-invalid {
  border-color: #DC3545;
}
.form-control.is-invalid:focus {
  border-color: #DC3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #28A745;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #DC3545;
}

.was-validated .form-control:valid ~ .valid-feedback {
  display: block;
}
.was-validated .form-control:invalid ~ .invalid-feedback {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleUp {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-in-out;
}

.animate-fade-in-down {
  animation: fadeInDown 1s ease-in-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 1s ease-in-out;
}

.animate-fade-in-right {
  animation: fadeInRight 1s ease-in-out;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-in-out;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate 2s linear infinite;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}
.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform 0.3s ease;
}
.hover-rotate:hover {
  transform: rotate(5deg);
}

.loading {
  position: relative;
  pointer-events: none;
}
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #E2A731;
  border-top-color: transparent;
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

.notification-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-left: 4px solid;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.notification-alert.show {
  opacity: 1;
  transform: translateX(0);
}
.notification-alert.hide {
  opacity: 0;
  transform: translateX(100%);
}

.notification-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  position: relative;
}

.notification-icon {
  margin-left: 12px;
  font-size: 20px;
  flex-shrink: 0;
}

.notification-message {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #0E1B2B;
}

.notification-close {
  background: none;
  border: none;
  color: #6B7280;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-right: 8px;
  flex-shrink: 0;
}
.notification-close:hover {
  background: #F3F4F6;
  color: #374151;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  width: 100%;
  transform: scaleX(1);
  transform-origin: left;
  animation: notificationProgress 5s linear forwards;
}

.notification-success {
  border-left-color: #10B981;
  color: #10B981;
}
.notification-success .notification-icon {
  color: #10B981;
}

.notification-error {
  border-left-color: #EF4444;
  color: #EF4444;
}
.notification-error .notification-icon {
  color: #EF4444;
}

.notification-warning {
  border-left-color: #F59E0B;
  color: #F59E0B;
}
.notification-warning .notification-icon {
  color: #F59E0B;
}

.notification-info {
  border-left-color: #3B82F6;
  color: #3B82F6;
}
.notification-info .notification-icon {
  color: #3B82F6;
}

@keyframes notificationProgress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
[dir=rtl] .notification-alert {
  transform: translateX(-100%);
}
[dir=rtl] .notification-alert.show {
  transform: translateX(0);
}
[dir=rtl] .notification-alert.hide {
  transform: translateX(-100%);
}
[dir=rtl] .notification-close {
  margin-right: 0;
  margin-left: 8px;
}

@media (max-width: 768px) {
  .notification-alert {
    right: 10px;
    left: 10px;
    max-width: none;
    min-width: auto;
    transform: translateY(-100%);
  }
  .notification-alert.show {
    transform: translateY(0);
  }
  .notification-alert.hide {
    transform: translateY(-100%);
  }
  [dir=rtl] .notification-alert {
    right: 10px;
    left: 10px;
    transform: translateY(-100%);
  }
  [dir=rtl] .notification-alert.show {
    transform: translateY(0);
  }
  [dir=rtl] .notification-alert.hide {
    transform: translateY(-100%);
  }
}
.page-header,
.project-header {
  position: relative;
  padding: 6rem 0;
  background: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&h=600&fit=crop") center/cover no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .page-header,
  .project-header {
    padding: 4rem 0;
    background-attachment: scroll;
  }
}
.page-header .page-header-overlay,
.page-header .project-header-overlay,
.project-header .page-header-overlay,
.project-header .project-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  background: linear-gradient(180deg, rgba(14, 27, 43, 0.8) 0%, rgba(14, 27, 43, 0.95) 100%);
  z-index: 1;
}
.page-header > .container,
.project-header > .container {
  position: relative;
  z-index: 2;
}
.page-header .page-header-content,
.project-header .page-header-content {
  margin-top: 2rem;
}
.page-header .page-title,
.page-header .project-header-title,
.project-header .page-title,
.project-header .project-header-title {
  font-size: 3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .page-header .page-title,
  .page-header .project-header-title,
  .project-header .page-title,
  .project-header .project-header-title {
    font-size: 2.5rem;
  }
}
.page-header .page-subtitle,
.project-header .page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}
.page-header .breadcrumb,
.project-header .breadcrumb {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
  margin-bottom: 0;
  display: inline-flex;
  font-size: 0.9rem;
}
.page-header .breadcrumb .breadcrumb-item,
.project-header .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}
.page-header .breadcrumb .breadcrumb-item a,
.project-header .breadcrumb .breadcrumb-item a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-header .breadcrumb .breadcrumb-item a:hover,
.project-header .breadcrumb .breadcrumb-item a:hover {
  color: #E2A731;
}
.page-header .breadcrumb .breadcrumb-item.active,
.project-header .breadcrumb .breadcrumb-item.active {
  color: #E2A731;
}
.page-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before,
.project-header .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "←";
  color: rgba(255, 255, 255, 0.6);
  padding: 0 0.5rem;
}
.page-header .project-header-meta,
.project-header .project-header-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.page-header .project-header-meta .badge,
.project-header .project-header-meta .badge {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.page-header .project-header-meta .meta-item,
.project-header .project-header-meta .meta-item {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}
.page-header .project-header-meta .meta-item i,
.project-header .project-header-meta .meta-item i {
  color: #E2A731;
}

.projects-listing .projects-filter .filter-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.projects-listing .projects-filter .sort-select .form-select {
  border: 2px solid #DEE2E6;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-weight: 500;
}
.projects-listing .projects-filter .sort-select .form-select:focus {
  border-color: #E2A731;
  box-shadow: 0 0 0 0.2rem rgba(226, 167, 49, 0.15);
}
.projects-listing .project-card-large {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}
.projects-listing .project-card-large:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}
.projects-listing .project-card-large .project-image-large {
  position: relative;
  height: 100%;
  min-height: 300px;
}
.projects-listing .project-card-large .project-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects-listing .project-card-large .project-image-large .project-badges {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.projects-listing .project-card-large .project-image-large .project-badges .badge {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.projects-listing .project-card-large .project-content-large {
  padding: 2rem;
}
.projects-listing .project-card-large .project-content-large .project-title-large {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.projects-listing .project-card-large .project-content-large .project-title-large a {
  color: #0E1B2B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.projects-listing .project-card-large .project-content-large .project-title-large a:hover {
  color: #E2A731;
}
.projects-listing .project-card-large .project-content-large .project-location-large {
  color: #6C757D;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.projects-listing .project-card-large .project-content-large .project-location-large i {
  color: #E2A731;
}
.projects-listing .project-card-large .project-content-large .project-description-large {
  color: #6C757D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.projects-listing .project-card-large .project-content-large .project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
}
.projects-listing .project-card-large .project-content-large .project-stats .stat-item-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6C757D;
}
.projects-listing .project-card-large .project-content-large .project-stats .stat-item-inline i {
  color: #E2A731;
}
.projects-listing .project-card-large .project-content-large .project-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.projects-listing .project-card-large .project-content-large .project-actions .btn {
  flex: 1;
  min-width: 150px;
}
.projects-listing .no-results {
  display: none;
}
.projects-listing .no-results.show {
  display: block;
}
.projects-listing .no-results i {
  opacity: 0.5;
}

.modern-filter-bar {
  background: linear-gradient(135deg, rgba(14, 27, 43, 0.03) 0%, rgba(226, 167, 49, 0.03) 100%);
  padding: 2rem 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(14, 27, 43, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  border: 1px solid rgba(226, 167, 49, 0.1);
}
@media (max-width: 768px) {
  .modern-filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
  }
}
.modern-filter-bar .filter-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex: 1;
}
@media (max-width: 768px) {
  .modern-filter-bar .filter-tabs {
    justify-content: center;
  }
}
.modern-filter-bar .filter-tab {
  background: #FFFFFF;
  border: 2px solid rgba(248, 249, 250, 0.5);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0E1B2B;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(14, 27, 43, 0.04);
}
.modern-filter-bar .filter-tab i {
  font-size: 0.9rem;
  color: #E2A731;
  transition: all 0.3s ease;
}
.modern-filter-bar .filter-tab .filter-label {
  font-weight: 600;
}
.modern-filter-bar .filter-tab .filter-count {
  color: #E2A731;
  font-size: 0.75rem;
  font-weight: 700;
}
.modern-filter-bar .filter-tab:hover {
  background: rgba(226, 167, 49, 0.05);
  border-color: #E2A731;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.2);
}
.modern-filter-bar .filter-tab.active {
  background: #E2A731;
  border-color: #E2A731;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(226, 167, 49, 0.3);
}
.modern-filter-bar .filter-tab.active i {
  color: #FFFFFF;
}
.modern-filter-bar .filter-tab.active .filter-count {
  color: #FFFFFF;
}
.modern-filter-bar .sort-dropdown {
  min-width: 220px;
}
@media (max-width: 768px) {
  .modern-filter-bar .sort-dropdown {
    width: 100%;
  }
}
.modern-filter-bar .sort-dropdown .modern-select {
  width: 100%;
  padding: 1rem 2rem;
  border: 2px solid rgba(248, 249, 250, 0.5);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0E1B2B;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(14, 27, 43, 0.04);
}
.modern-filter-bar .sort-dropdown .modern-select:focus {
  outline: none;
  border-color: #E2A731;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.2);
}
.modern-filter-bar .sort-dropdown .modern-select:hover {
  border-color: #E2A731;
}

.modern-project-card {
  background: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(14, 27, 43, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.modern-project-card:hover {
  box-shadow: 0 8px 24px rgba(14, 27, 43, 0.15);
  transform: translateY(-8px);
}
.modern-project-card .modern-project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.modern-project-card .modern-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.modern-project-card .modern-project-image .project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(14, 27, 43, 0.9), rgba(14, 27, 43, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modern-project-card .modern-project-image .project-badges-top {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
}
.modern-project-card .modern-project-image .project-badges-top .badge {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.modern-project-card .modern-project-image .project-type-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #0E1B2B;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.modern-project-card .modern-project-image .project-type-badge.badge-residential {
  color: #0E1B2B;
}
.modern-project-card .modern-project-image .project-type-badge.badge-commercial {
  color: #E2A731;
}
.modern-project-card .modern-project-image:hover img {
  transform: scale(1.1);
}
.modern-project-card .modern-project-image:hover .project-overlay {
  opacity: 1;
}
.modern-project-card .modern-project-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.modern-project-card .modern-project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.modern-project-card .modern-project-title a {
  color: #0E1B2B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.modern-project-card .modern-project-title a:hover {
  color: #E2A731;
}
.modern-project-card .modern-project-location {
  font-size: 0.875rem;
  color: rgba(10, 20, 32, 0.7);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modern-project-card .modern-project-location i {
  color: #E2A731;
}
.modern-project-card .modern-project-description {
  font-size: 0.875rem;
  color: rgba(10, 20, 32, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.modern-project-card .modern-project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.modern-project-card .modern-project-stats .stat-box {
  background: rgba(248, 249, 250, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A1420;
}
.modern-project-card .modern-project-stats .stat-box i {
  color: #E2A731;
  font-size: 1rem;
}
.modern-project-card .modern-project-delivery {
  background: linear-gradient(135deg, rgba(226, 167, 49, 0.1) 0%, rgba(226, 167, 49, 0.05) 100%);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0E1B2B;
}
.modern-project-card .modern-project-delivery i {
  color: #E2A731;
}
.modern-project-card .modern-project-actions .btn {
  font-weight: 600;
  font-size: 0.875rem;
}

.project-gallery .gallery-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .project-gallery .gallery-main img {
    height: 300px;
  }
}
.project-gallery .gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  height: 500px;
}
@media (max-width: 768px) {
  .project-gallery .gallery-thumbnails {
    height: auto;
  }
}
.project-gallery .gallery-thumbnails .gallery-thumb {
  position: relative;
  height: calc((500px - 1rem) / 2);
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .project-gallery .gallery-thumbnails .gallery-thumb {
    height: 150px;
  }
}
.project-gallery .gallery-thumbnails .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-gallery .gallery-thumbnails .gallery-thumb:hover img, .project-gallery .gallery-thumbnails .gallery-thumb.active img {
  transform: scale(1.1);
}
.project-gallery .gallery-thumbnails .gallery-thumb.active {
  border-color: #E2A731;
}
.project-gallery .gallery-thumbnails .gallery-thumb.gallery-more .gallery-more-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  background: #0E1B2B;
  flex-direction: column;
  z-index: 2;
}
.project-gallery .gallery-thumbnails .gallery-thumb.gallery-more .gallery-more-overlay i {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.project-gallery .gallery-thumbnails .gallery-thumb.gallery-more .gallery-more-overlay span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
}

.project-details-section .detail-box {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .project-details-section .detail-box {
    padding: 2rem;
  }
}
.project-details-section .detail-box .detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #E2A731;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-details-section .detail-box .detail-title i {
  color: #E2A731;
}
.project-details-section .detail-box .detail-text {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.8;
}
.project-details-section .detail-box .feature-item-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
}
.project-details-section .detail-box .feature-item-detail i {
  color: #E2A731;
  font-size: 1.125rem;
}
.project-details-section .detail-box .feature-item-detail span {
  color: #0E1B2B;
  font-size: 1rem;
}
.project-details-section .amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .project-details-section .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-details-section .amenities-grid .amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.project-details-section .amenities-grid .amenity-item:hover {
  background: #F5E6C8;
  transform: translateY(-2px);
}
.project-details-section .amenities-grid .amenity-item i {
  color: #E2A731;
  font-size: 1.25rem;
  min-width: 24px;
}
.project-details-section .amenities-grid .amenity-item span {
  font-size: 0.875rem;
  color: #0E1B2B;
  font-weight: 500;
}
.project-details-section .map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.project-details-section .units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-details-section .units-grid .unit-card-compact {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.project-details-section .units-grid .unit-card-compact:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.project-details-section .units-grid .unit-card-compact .unit-image-compact {
  position: relative;
  height: 180px;
}
.project-details-section .units-grid .unit-card-compact .unit-image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-details-section .units-grid .unit-card-compact .unit-image-compact .unit-type-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #E2A731;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact {
  padding: 1.5rem;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-code {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1rem;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-specs span {
  font-size: 0.875rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-specs span i {
  color: #E2A731;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-footer-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #DEE2E6;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-footer-compact .unit-price-compact .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E2A731;
}
.project-details-section .units-grid .unit-card-compact .unit-content-compact .unit-footer-compact .unit-price-compact .price-request {
  font-size: 0.875rem;
  color: #6C757D;
  font-style: italic;
}
.project-details-section .sticky-sidebar {
  position: sticky;
  top: 100px;
}
.project-details-section .info-card {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.project-details-section .info-card .info-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #E2A731;
}
.project-details-section .info-card .info-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #DEE2E6;
}
.project-details-section .info-card .info-item:last-child {
  border-bottom: none;
}
.project-details-section .info-card .info-item i {
  color: #E2A731;
  font-size: 1.25rem;
  min-width: 24px;
}
.project-details-section .info-card .info-item .info-content {
  flex: 1;
}
.project-details-section .info-card .info-item .info-content .info-label {
  display: block;
  font-size: 0.75rem;
  color: #6C757D;
  margin-bottom: 0.5rem;
}
.project-details-section .info-card .info-item .info-content .info-value {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #0E1B2B;
}
.project-details-section .info-card .info-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E1B2B;
  margin: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-details-section .info-card .info-section-title i {
  color: #E2A731;
}
.project-details-section .info-card .payment-plan .payment-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dashed #DEE2E6;
}
.project-details-section .info-card .payment-plan .payment-item:last-child {
  border-bottom: none;
}
.project-details-section .info-card .payment-plan .payment-item span {
  font-size: 0.875rem;
  color: #6C757D;
}
.project-details-section .info-card .payment-plan .payment-item strong {
  font-size: 1rem;
  color: #0E1B2B;
}
.project-details-section .info-card .info-actions {
  margin-top: 2rem;
}

.project-units-section {
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.cta-section {
  background: #0E1B2B;
}
.cta-section .cta-box {
  padding: 3rem;
  background: #1A2B3D;
  border-radius: 1.5rem;
  border: 2px solid rgba(226, 167, 49, 0.3);
}
.cta-section .cta-box .cta-title {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta-section .cta-box .cta-title {
    font-size: 1.5rem;
  }
}
.cta-section .cta-box .cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}

.related-projects {
  background: #F8F9FA;
}

.breadcrumb-section {
  background: #F8F9FA;
}
.breadcrumb-section .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
}
.breadcrumb-section .breadcrumb .breadcrumb-item {
  color: #0A1420;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a {
  color: #0E1B2B;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a:hover {
  color: #E2A731;
}
.breadcrumb-section .breadcrumb .breadcrumb-item.active {
  color: #E2A731;
}
.breadcrumb-section .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(10, 20, 32, 0.5);
  content: "←";
}

.project-gallery-box .gallery-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  .project-gallery-box .gallery-main-image img {
    height: 300px;
  }
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 16/9;
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item:hover img, .project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.active img {
  transform: scale(1.05);
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.active {
  border-color: #E2A731;
  box-shadow: 0 0 0 2px rgba(226, 167, 49, 0.2);
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.gallery-more-btn {
  aspect-ratio: 16/9;
  background: #0E1B2B;
  border-radius: 0.5rem;
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.gallery-more-btn .more-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
  z-index: 2;
  border-radius: 0.5rem;
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.gallery-more-btn .more-overlay i {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.gallery-more-btn .more-overlay span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}
.project-gallery-box .gallery-thumbnails-row .gallery-thumb-item.gallery-more-btn:hover {
  background: #E2A731;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .sticky-sidebar {
    position: static;
  }
}

.info-card {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #E2A731;
}
@media (max-width: 768px) {
  .info-card {
    padding: 2rem;
  }
}
.info-card .info-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #F8F9FA;
}
.info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(248, 249, 250, 0.5);
}
.info-card .info-item:last-of-type {
  border-bottom: none;
}
.info-card .info-item i {
  color: #E2A731;
  font-size: 1.125rem;
  margin-top: 4px;
  min-width: 20px;
}
.info-card .info-item .info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.info-card .info-item .info-content .info-label {
  font-size: 0.875rem;
  color: rgba(10, 20, 32, 0.6);
  font-weight: 500;
}
.info-card .info-item .info-content .info-value {
  font-size: 1rem;
  color: #0A1420;
  font-weight: 600;
}
.info-card .info-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}
.info-card .payment-plan .payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 0.875rem;
}
.info-card .payment-plan .payment-item span {
  color: rgba(10, 20, 32, 0.7);
}
.info-card .payment-plan .payment-item strong {
  color: #E2A731;
  font-weight: 700;
}
.info-card .info-actions {
  margin-top: 2rem;
}
.info-card .info-actions .btn {
  font-weight: 600;
}
.info-card .info-actions .btn:not(:last-child) {
  margin-bottom: 1rem;
}

.sidebar-ad a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sidebar-ad a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.sidebar-ad a img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.sidebar-ad a:hover img {
  transform: scale(1.05);
}

.project-details-section .modern-info-sidebar {
  margin-bottom: 3rem;
}
.project-details-section .modern-info-sidebar .info-card-modern {
  background: #FFFFFF;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.project-details-section .modern-info-sidebar .info-card-modern:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.project-details-section .modern-info-sidebar .info-card-modern .card-header-modern {
  background: linear-gradient(135deg, #0E1B2B 0%, rgb(1.4736842105, 2.8421052632, 4.5263157895) 100%);
  padding: 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.project-details-section .modern-info-sidebar .info-card-modern .card-header-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.project-details-section .modern-info-sidebar .info-card-modern .card-header-modern h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}
.project-details-section .modern-info-sidebar .info-card-modern .card-header-modern .project-status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.project-details-section .modern-info-sidebar .info-card-modern .price-section-modern {
  padding: 3rem;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  color: #FFFFFF;
  text-align: center;
}
.project-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.project-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.project-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-per-meter {
  font-size: 0.875rem;
  opacity: 0.9;
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern {
  padding: 2rem 3rem;
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #F8F9FA;
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern:last-child {
  border-bottom: none;
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-icon-modern {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.3);
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-text-modern {
  flex: 1;
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-text-modern .info-label-modern {
  display: block;
  font-size: 0.875rem;
  color: #6C757D;
  margin-bottom: 4px;
  font-weight: 500;
}
.project-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-text-modern .info-value-modern {
  display: block;
  font-size: 1rem;
  color: #0E1B2B;
  font-weight: 700;
}
.project-details-section .modern-info-sidebar .info-card-modern .cta-section-modern {
  padding: 3rem;
  background: #F8F9FA;
}
.project-details-section .modern-info-sidebar .info-card-modern .cta-section-modern .btn {
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.3);
}
.project-details-section .modern-info-sidebar .info-card-modern .cta-section-modern .btn:last-child {
  margin-bottom: 0;
}
.project-details-section .modern-info-sidebar .info-card-modern .cta-section-modern .btn.btn-primary {
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border: none;
}
.project-details-section .project-gallery-modern {
  margin-bottom: 3rem;
}
.project-details-section .project-gallery-modern .gallery-main-modern {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.project-details-section .project-gallery-modern .gallery-main-modern img {
  width: 100%;
  height: auto;
  display: block;
}
.project-details-section .project-gallery-modern .gallery-main-modern .gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
}
.project-details-section .project-gallery-modern .gallery-main-modern .gallery-controls .gallery-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #0E1B2B;
  font-size: 1.125rem;
}
.project-details-section .project-gallery-modern .gallery-main-modern .gallery-controls .gallery-btn:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern.active, .project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern:hover {
  border-color: #E2A731;
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern.active img, .project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern:hover img {
  transform: scale(1.1);
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.project-details-section .project-gallery-modern .gallery-thumbnails-modern .thumb-item-modern:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
.project-details-section .detail-box-modern {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.project-details-section .detail-box-modern:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.project-details-section .detail-box-modern .detail-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-details-section .detail-box-modern .detail-title-modern i {
  color: #E2A731;
}
.project-details-section .detail-box-modern .detail-text-modern {
  color: #0E1B2B;
  line-height: 1.8;
  font-size: 1rem;
}
.project-details-section .features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
.project-details-section .features-grid-modern .feature-item-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.project-details-section .features-grid-modern .feature-item-modern i {
  color: #E2A731;
  font-size: 1.125rem;
}
.project-details-section .features-grid-modern .feature-item-modern span {
  font-size: 1rem;
  color: #0E1B2B;
  font-weight: 500;
}
.project-details-section .features-grid-modern .feature-item-modern:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateX(-5px);
}
.project-details-section .features-grid-modern .feature-item-modern:hover i,
.project-details-section .features-grid-modern .feature-item-modern:hover span {
  color: #FFFFFF;
}
.project-details-section .units-section-modern .section-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-details-section .units-section-modern .section-title-modern i {
  color: #E2A731;
}
.project-details-section .units-section-modern .section-title-modern .badge {
  background: #E2A731;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  margin-right: 1rem;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}
@media (max-width: 992px) {
  .project-details-section .modern-info-sidebar {
    position: static;
    margin-bottom: 3rem;
  }
}
.units-listing-section {
  background: rgba(248, 249, 250, 0.1);
}
.units-listing-section .units-section {
  background: #FFFFFF;
  padding: 0px;
}

.advanced-filters-wrapper .btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.advanced-filters-wrapper .btn.btn-primary {
  background: linear-gradient(135deg, #0E1B2B, rgb(1.4736842105, 2.8421052632, 4.5263157895));
  border-color: #0E1B2B;
  box-shadow: 0 4px 15px rgba(14, 27, 43, 0.3);
}
.advanced-filters-wrapper .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 27, 43, 0.4);
}
.advanced-filters-wrapper .btn .badge {
  animation: pulse 2s infinite;
}
.advanced-filters-wrapper .advanced-filters-panel {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(14, 27, 43, 0.08);
  border: 1px solid rgba(248, 249, 250, 0.3);
  margin-top: 1.5rem;
}
.advanced-filters-wrapper .advanced-filters-panel .filter-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0E1B2B;
  margin-bottom: 0.5rem;
}
.advanced-filters-wrapper .advanced-filters-panel .filter-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(248, 249, 250, 0.5);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0A1420;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.advanced-filters-wrapper .advanced-filters-panel .filter-select:focus {
  outline: none;
  border-color: #E2A731;
  box-shadow: 0 0 0 3px rgba(226, 167, 49, 0.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.results-bar {
  background: #FFFFFF;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(14, 27, 43, 0.05);
}
.results-bar .results-count {
  margin: 0;
  font-size: 1rem;
  color: #0E1B2B;
}
.results-bar .results-count i {
  color: #E2A731;
}

.units-listing-section .unit-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.units-listing-section .unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.units-listing-section .unit-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.units-listing-section .unit-card .unit-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.units-listing-section .unit-card .unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.units-listing-section .unit-card .unit-image .unit-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(14, 27, 43, 0.8) 0%, rgba(14, 27, 43, 0.95) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.units-listing-section .unit-card .unit-image .unit-overlay .btn {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.units-listing-section .unit-card .unit-image .unit-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #E2A731;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
.units-listing-section .unit-card:hover .unit-image img {
  transform: scale(1.1);
}
.units-listing-section .unit-card:hover .unit-image .unit-overlay {
  opacity: 1;
}
.units-listing-section .unit-card:hover .unit-image .unit-overlay .btn {
  transform: translateY(0);
}
.units-listing-section .unit-card .unit-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.units-listing-section .unit-card .unit-content .unit-header {
  margin-bottom: 1.5rem;
}
.units-listing-section .unit-card .unit-content .unit-header .unit-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1rem;
}
.units-listing-section .unit-card .unit-content .unit-header .unit-title a {
  color: #0E1B2B;
  text-decoration: none;
  transition: color 0.3s ease;
}
.units-listing-section .unit-card .unit-content .unit-header .unit-title a:hover {
  color: #E2A731;
}
.units-listing-section .unit-card .unit-content .unit-header .unit-location {
  font-size: 1rem;
  color: #6C757D;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.units-listing-section .unit-card .unit-content .unit-header .unit-location i {
  color: #E2A731;
}
.units-listing-section .unit-card .unit-content .unit-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
}
.units-listing-section .unit-card .unit-content .unit-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6C757D;
}
.units-listing-section .unit-card .unit-content .unit-details .detail-item i {
  color: #E2A731;
  font-size: 1rem;
}
.units-listing-section .unit-card .unit-content .unit-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid #DEE2E6;
}
.units-listing-section .unit-card .unit-content .unit-footer .unit-price .price-label {
  font-size: 0.75rem;
  color: #6C757D;
  margin-bottom: 0.5rem;
}
.units-listing-section .unit-card .unit-content .unit-footer .unit-price .price-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #E2A731;
}
.units-listing-section .unit-card .unit-content .unit-footer .unit-price .price-request {
  font-size: 1rem;
  color: #0E1B2B;
  font-weight: 600;
}

.no-results {
  display: none;
}
.no-results.show {
  display: block !important;
}

.unit-details-section .unit-gallery-box .gallery-main-image,
.unit-details-section .unit-single-image .gallery-main-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(14, 27, 43, 0.12);
}
.unit-details-section .unit-gallery-box .gallery-main-image img,
.unit-details-section .unit-single-image .gallery-main-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.unit-details-section .unit-gallery-box .gallery-main-image .gallery-controls,
.unit-details-section .unit-single-image .gallery-main-image .gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  pointer-events: none;
}
.unit-details-section .unit-gallery-box .gallery-main-image .gallery-controls .gallery-btn,
.unit-details-section .unit-single-image .gallery-main-image .gallery-controls .gallery-btn {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #0E1B2B;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.unit-details-section .unit-gallery-box .gallery-main-image .gallery-controls .gallery-btn:hover,
.unit-details-section .unit-single-image .gallery-main-image .gallery-controls .gallery-btn:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: scale(1.1);
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item,
.unit-details-section .unit-single-image .gallery-thumbnails-row .gallery-thumb-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item.active,
.unit-details-section .unit-single-image .gallery-thumbnails-row .gallery-thumb-item.active {
  border-color: #E2A731;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item:hover,
.unit-details-section .unit-single-image .gallery-thumbnails-row .gallery-thumb-item:hover {
  border-color: rgba(226, 167, 49, 0.5);
  transform: translateY(-4px);
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item img,
.unit-details-section .unit-single-image .gallery-thumbnails-row .gallery-thumb-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.unit-details-section .detail-box {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(14, 27, 43, 0.08);
}
@media (max-width: 768px) {
  .unit-details-section .detail-box {
    padding: 2rem;
  }
}
.unit-details-section .detail-box .detail-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
.unit-details-section .detail-box .detail-title i {
  color: #E2A731;
}
.unit-details-section .detail-box .detail-text {
  font-size: 1rem;
  color: rgba(14, 27, 43, 0.8);
  line-height: 1.8;
  margin: 0;
}
.unit-details-section .specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .unit-details-section .specs-grid {
    grid-template-columns: 1fr;
  }
}
.unit-details-section .specs-grid .spec-item-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 0.5rem;
  border-right: 3px solid #E2A731;
  transition: all 0.3s ease;
}
.unit-details-section .specs-grid .spec-item-detail:hover {
  background: rgba(226, 167, 49, 0.03);
  border-right-width: 5px;
}
.unit-details-section .specs-grid .spec-item-detail .spec-label {
  font-size: 0.875rem;
  color: rgba(14, 27, 43, 0.6);
  font-weight: 500;
}
.unit-details-section .specs-grid .spec-item-detail .spec-value {
  font-size: 1rem;
  color: #0E1B2B;
  font-weight: 700;
  text-align: left;
}
.unit-details-section .specs-grid .spec-item-detail .spec-value a {
  color: #E2A731;
  text-decoration: none;
}
.unit-details-section .specs-grid .spec-item-detail .spec-value a:hover {
  text-decoration: underline;
}
.unit-details-section .modern-info-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(14, 27, 43, 0.08);
  overflow: hidden;
}
.unit-details-section .modern-info-card .card-header-modern {
  background: linear-gradient(135deg, #0E1B2B 0%, rgb(7.7368421053, 14.9210526316, 23.7631578947) 100%);
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.unit-details-section .modern-info-card .card-header-modern h4 {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.unit-details-section .modern-info-card .card-header-modern .badge {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
}
.unit-details-section .modern-info-card .price-section {
  padding: 1rem;
  background: linear-gradient(135deg, rgba(226, 167, 49, 0.05) 0%, rgba(226, 167, 49, 0.02) 100%);
  border-bottom: 3px solid rgba(226, 167, 49, 0.2);
  text-align: center;
}
.unit-details-section .modern-info-card .price-section .price-label {
  font-size: 0.875rem;
  color: rgba(14, 27, 43, 0.6);
  margin-bottom: 0.5rem;
}
.unit-details-section .modern-info-card .price-section .price-value {
  font-size: 2rem;
  font-weight: 700;
  color: #E2A731;
  display: block;
  margin-bottom: 0.5rem;
}
.unit-details-section .modern-info-card .price-section .price-per-meter {
  font-size: 0.875rem;
  color: rgba(14, 27, 43, 0.6);
}
.unit-details-section .modern-info-card .price-section .price-request-big {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E1B2B;
}
.unit-details-section .modern-info-card .info-grid {
  padding: 1rem;
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .unit-details-section .modern-info-card .info-grid {
    grid-template-columns: 1fr;
  }
}
.unit-details-section .modern-info-card .info-box {
  background: rgba(248, 249, 250, 0.3);
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.unit-details-section .modern-info-card .info-box:hover {
  background: rgba(226, 167, 49, 0.05);
  border-color: rgba(226, 167, 49, 0.2);
  transform: translateY(-2px);
}
.unit-details-section .modern-info-card .info-box .info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E2A731 0%, rgb(196.3574468085, 140.1191489362, 27.6425531915) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.unit-details-section .modern-info-card .info-box .info-icon i {
  color: #FFFFFF;
  font-size: 1.1rem;
}
.unit-details-section .modern-info-card .info-box .info-text {
  flex: 1;
  min-width: 0;
}
.unit-details-section .modern-info-card .info-box .info-text .label {
  display: block;
  font-size: 0.75rem;
  color: rgba(10, 20, 32, 0.6);
  margin-bottom: 2px;
  font-weight: 500;
}
.unit-details-section .modern-info-card .info-box .info-text strong {
  display: block;
  font-size: 0.9rem;
  color: #0E1B2B;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.unit-details-section .modern-info-card .cta-buttons {
  padding: 3rem;
  background: #F8F9FA;
}
.unit-details-section .modern-info-card .cta-buttons .btn {
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.3);
  margin-bottom: 1rem;
}
.unit-details-section .modern-info-card .cta-buttons .btn:last-child {
  margin-bottom: 0;
}
.unit-details-section .modern-info-card .cta-buttons .btn.btn-primary {
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border: none;
}
.unit-details-section .sidebar-ad a {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(14, 27, 43, 0.08);
  transition: all 0.3s ease;
}
.unit-details-section .sidebar-ad a:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(14, 27, 43, 0.15);
}
.unit-details-section .sidebar-ad a img {
  width: 100%;
  height: auto;
}

.similar-units-section {
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.unit-details-section .modern-info-sidebar {
  margin-bottom: 3rem;
}
.unit-details-section .modern-info-sidebar .info-card-modern {
  background: #FFFFFF;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.unit-details-section .modern-info-sidebar .info-card-modern:hover {
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
.unit-details-section .modern-info-sidebar .info-card-modern .card-header-modern {
  background: linear-gradient(135deg, #0E1B2B 0%, rgb(1.4736842105, 2.8421052632, 4.5263157895) 100%);
  padding: 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.unit-details-section .modern-info-sidebar .info-card-modern .card-header-modern::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
.unit-details-section .modern-info-sidebar .info-card-modern .card-header-modern h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}
.unit-details-section .modern-info-sidebar .info-card-modern .card-header-modern .unit-status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.unit-details-section .modern-info-sidebar .info-card-modern .price-section-modern {
  padding: 3rem;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  color: #FFFFFF;
  text-align: center;
}
.unit-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.unit-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.unit-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-per-meter {
  font-size: 0.875rem;
  opacity: 0.9;
}
.unit-details-section .modern-info-sidebar .info-card-modern .price-section-modern .price-request-big {
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.9;
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern {
  padding: 2rem 3rem;
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #F8F9FA;
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern:last-child {
  border-bottom: none;
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-icon-modern {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.3);
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-text-modern {
  flex: 1;
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-text-modern .info-label-modern {
  display: block;
  font-size: 0.875rem;
  color: #6C757D;
  margin-bottom: 4px;
  font-weight: 500;
}
.unit-details-section .modern-info-sidebar .info-card-modern .info-content-modern .info-item-modern .info-text-modern .info-value-modern {
  display: block;
  font-size: 1rem;
  color: #0E1B2B;
  font-weight: 700;
}
.unit-details-section .modern-info-sidebar .info-card-modern .cta-section-modern {
  padding: 3rem;
  background: #F8F9FA;
}
.unit-details-section .modern-info-sidebar .info-card-modern .cta-section-modern .btn {
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.3);
}
.unit-details-section .modern-info-sidebar .info-card-modern .cta-section-modern .btn:last-child {
  margin-bottom: 0;
}
.unit-details-section .modern-info-sidebar .info-card-modern .cta-section-modern .btn.btn-primary {
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border: none;
}
.unit-details-section .unit-gallery-box {
  margin-bottom: 3rem;
}
.unit-details-section .unit-gallery-box .gallery-main-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.unit-details-section .unit-gallery-box .gallery-main-image img {
  width: 100%;
  height: auto;
  display: block;
}
.unit-details-section .unit-gallery-box .gallery-main-image .gallery-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
}
.unit-details-section .unit-gallery-box .gallery-main-image .gallery-controls .gallery-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #0E1B2B;
  font-size: 1.125rem;
}
.unit-details-section .unit-gallery-box .gallery-main-image .gallery-controls .gallery-btn:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item.active, .unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item:hover {
  border-color: #E2A731;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item.active img, .unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item:hover img {
  transform: scale(1.1);
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
}
.unit-details-section .unit-gallery-box .gallery-thumbnails-row .gallery-thumb-item:hover::after {
  background: rgba(0, 0, 0, 0.1);
}
.unit-details-section .detail-box-modern {
  background: #FFFFFF;
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.unit-details-section .detail-box-modern:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.unit-details-section .detail-box-modern .detail-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.unit-details-section .detail-box-modern .detail-title-modern i {
  color: #E2A731;
  font-size: 1.125rem;
}
.unit-details-section .detail-box-modern .detail-text-modern {
  color: #0E1B2B;
  line-height: 1.8;
  font-size: 1rem;
}
.unit-details-section .specs-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.unit-details-section .specs-grid-modern .spec-item-modern {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: #F8F9FA;
  border-radius: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.unit-details-section .specs-grid-modern .spec-item-modern:hover {
  background: #FFFFFF;
  border-color: #E2A731;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.unit-details-section .specs-grid-modern .spec-item-modern .spec-icon-modern {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border-radius: 0.5rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(226, 167, 49, 0.3);
}
.unit-details-section .specs-grid-modern .spec-item-modern .spec-content-modern {
  flex: 1;
}
.unit-details-section .specs-grid-modern .spec-item-modern .spec-content-modern .spec-label-modern {
  display: block;
  font-size: 0.875rem;
  color: #6C757D;
  margin-bottom: 4px;
  font-weight: 500;
}
.unit-details-section .specs-grid-modern .spec-item-modern .spec-content-modern .spec-value-modern {
  display: block;
  font-size: 1rem;
  color: #0E1B2B;
  font-weight: 700;
}
.unit-details-section .specs-grid-modern .spec-item-modern .spec-content-modern .spec-value-modern a {
  color: #E2A731;
  text-decoration: none;
  transition: all 0.3s ease;
}
.unit-details-section .specs-grid-modern .spec-item-modern .spec-content-modern .spec-value-modern a:hover {
  color: #D49620;
}
.unit-details-section .map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@keyframes pulse {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-10px, -10px);
  }
}
@media (max-width: 992px) {
  .unit-details-section .modern-info-sidebar {
    position: static;
    margin-bottom: 3rem;
  }
  .unit-details-section .specs-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
@media (max-width: 768px) {
  .unit-details-section .specs-grid-modern {
    grid-template-columns: 1fr;
  }
}
.news-listing-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .news-listing-section {
    padding: 4rem 0;
  }
}
.news-listing-section {
  background: #F8F9FA;
}
.news-listing-section .news-filters .filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-listing-section .news-filters .filter-buttons .filter-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  padding: 1rem 2rem;
  background: #FFFFFF;
  color: #0E1B2B;
  border: 2px solid #DEE2E6;
  border-radius: 1rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.news-listing-section .news-filters .filter-buttons .filter-btn:hover, .news-listing-section .news-filters .filter-buttons .filter-btn.active {
  background: #E2A731;
  color: #FFFFFF;
  border-color: #E2A731;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.news-listing-section .news-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-listing-section .news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.news-listing-section .news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-listing-section .news-card .news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.news-listing-section .news-card .news-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.news-listing-section .news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-listing-section .news-card .news-image .news-date {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #E2A731;
  color: #FFFFFF;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 60px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.news-listing-section .news-card .news-image .news-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.news-listing-section .news-card .news-image .news-date .month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.news-listing-section .news-card:hover .news-image img {
  transform: scale(1.1);
}
.news-listing-section .news-card .news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-listing-section .news-card .news-content .news-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.news-listing-section .news-card .news-content .news-meta span {
  font-size: 0.75rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-listing-section .news-card .news-content .news-meta span i {
  color: #E2A731;
}
.news-listing-section .news-card .news-content .news-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.news-listing-section .news-card .news-content .news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-listing-section .news-card .news-content .news-title a:hover {
  color: #E2A731;
}
.news-listing-section .news-card .news-content .news-excerpt {
  font-size: 1rem;
  color: #6C757D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.news-listing-section .news-card .news-content .news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid #DEE2E6;
}
.news-listing-section .news-card .news-content .news-footer .news-views {
  font-size: 0.75rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-listing-section .news-card .news-content .news-footer .news-views i {
  color: #E2A731;
}
.news-listing-section .news-card .news-content .news-footer .news-link {
  font-size: 1rem;
  color: #E2A731;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.news-listing-section .news-card .news-content .news-footer .news-link i {
  transition: transform 0.3s ease;
}
.news-listing-section .news-card .news-content .news-footer .news-link:hover {
  color: #D49620;
}
.news-listing-section .news-card .news-content .news-footer .news-link:hover i {
  transform: translateX(-5px);
}
.news-listing-section .featured-articles-section .featured-news-card {
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-listing-section .featured-articles-section .featured-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.news-listing-section .featured-articles-section .featured-news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-image .featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #E2A731, #D49620);
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.news-listing-section .featured-articles-section .featured-news-card:hover .featured-news-image img {
  transform: scale(1.1);
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-category {
  display: inline-block;
  color: #E2A731;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0E1B2B;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-title a:hover {
  color: #E2A731;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-excerpt {
  font-size: 0.875rem;
  color: #6C757D;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #DEE2E6;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-meta span {
  font-size: 0.75rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.news-listing-section .featured-articles-section .featured-news-card .featured-news-content .featured-news-meta span i {
  color: #E2A731;
}

.cta-section {
  color: #FFFFFF;
}
.cta-section h2 {
  color: #FFFFFF;
  font-weight: 700;
}
.cta-section .lead {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .news-listing-section .news-card .news-image {
    height: 200px;
  }
}
.article-details-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .article-details-section {
    padding: 4rem 0;
  }
}
.article-details-section {
  background: #F8F9FA;
}
.article-details-section .article-content {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .article-details-section .article-content {
    padding: 2rem;
  }
}
.article-details-section .article-content .article-main-title {
  color: #0E1B2B;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2rem;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .article-details-section .article-content .article-main-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
.article-details-section .article-content .article-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
}
.article-details-section .article-content .article-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-details-section .article-content .article-meta .meta-item i {
  color: #E2A731;
  font-size: 1rem;
}
.article-details-section .article-content .article-meta .meta-item .meta-label {
  font-size: 0.875rem;
  color: #6C757D;
  font-weight: 500;
}
.article-details-section .article-content .article-meta .meta-item .meta-value {
  font-size: 0.875rem;
  color: #0E1B2B;
  font-weight: 700;
}
@media (max-width: 768px) {
  .article-details-section .article-content .article-meta {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .article-details-section .article-content .article-meta .meta-item {
    width: 100%;
  }
  .article-details-section .article-content .article-meta .meta-item i {
    font-size: 0.875rem;
  }
  .article-details-section .article-content .article-meta .meta-item .meta-label,
  .article-details-section .article-content .article-meta .meta-item .meta-value {
    font-size: 0.75rem;
  }
}
.article-details-section .article-content .article-featured-image {
  margin-bottom: 3rem;
}
.article-details-section .article-content .article-featured-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .article-details-section .article-content .article-featured-image {
    margin-bottom: 2rem;
  }
}
.article-details-section .article-content .article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #0E1B2B;
}
.article-details-section .article-content .article-body h1, .article-details-section .article-content .article-body h2, .article-details-section .article-content .article-body h3, .article-details-section .article-content .article-body h4, .article-details-section .article-content .article-body h5, .article-details-section .article-content .article-body h6 {
  color: #0E1B2B;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.article-details-section .article-content .article-body h1 {
  font-size: 2rem;
}
.article-details-section .article-content .article-body h2 {
  font-size: 1.5rem;
}
.article-details-section .article-content .article-body h3 {
  font-size: 1.25rem;
}
.article-details-section .article-content .article-body h4 {
  font-size: 1.125rem;
}
.article-details-section .article-content .article-body p {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.article-details-section .article-content .article-body ul, .article-details-section .article-content .article-body ol {
  margin-bottom: 1.5rem;
  padding-right: 3rem;
}
.article-details-section .article-content .article-body ul li, .article-details-section .article-content .article-body ol li {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.article-details-section .article-content .article-body ul {
  list-style-type: disc;
}
.article-details-section .article-content .article-body ul li::marker {
  color: #E2A731;
}
.article-details-section .article-content .article-body ol {
  list-style-type: decimal;
}
.article-details-section .article-content .article-body ol li::marker {
  color: #E2A731;
  font-weight: 700;
}
.article-details-section .article-content .article-body blockquote {
  background: rgba(226, 167, 49, 0.05);
  border-right: 4px solid #E2A731;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  color: #0E1B2B;
}
.article-details-section .article-content .article-body blockquote p:last-child {
  margin-bottom: 0;
}
.article-details-section .article-content .article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 2rem 0;
}
.article-details-section .article-content .article-body a {
  color: #E2A731;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.article-details-section .article-content .article-body a:hover {
  color: #D49620;
}
.article-details-section .article-content .article-tags h5 {
  color: #0E1B2B;
  font-size: 1.125rem;
  font-weight: 700;
}
.article-details-section .article-content .article-tags .tags-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-details-section .article-content .article-tags .tags-list .tag-item {
  background: rgba(226, 167, 49, 0.1);
  color: #0E1B2B;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.article-details-section .article-content .article-tags .tags-list .tag-item:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.article-details-section .article-content .article-share h5 {
  color: #0E1B2B;
  font-size: 1.125rem;
  font-weight: 700;
}
.article-details-section .article-content .article-share .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-details-section .article-content .article-share .share-buttons .share-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.article-details-section .article-content .article-share .share-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.article-details-section .article-content .article-share .share-buttons .share-btn.facebook {
  background: #1877f2;
}
.article-details-section .article-content .article-share .share-buttons .share-btn.facebook:hover {
  background: rgb(11.4549180328, 95.1639344262, 203.5450819672);
}
.article-details-section .article-content .article-share .share-buttons .share-btn.twitter {
  background: #000000;
}
.article-details-section .article-content .article-share .share-buttons .share-btn.twitter:hover {
  background: black;
}
.article-details-section .article-content .article-share .share-buttons .share-btn.whatsapp {
  background: #25d366;
}
.article-details-section .article-content .article-share .share-buttons .share-btn.whatsapp:hover {
  background: rgb(29.3911290323, 167.6088709677, 81.0241935484);
}
.article-details-section .article-content .article-share .share-buttons .share-btn.linkedin {
  background: #0077b5;
}
.article-details-section .article-content .article-share .share-buttons .share-btn.linkedin:hover {
  background: rgb(0, 85.4696132597, 130);
}
.article-details-section .article-content .article-gallery h5 {
  color: #0E1B2B;
  font-size: 1.125rem;
  font-weight: 700;
}
.article-details-section .article-content .article-gallery .gallery-item {
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}
.article-details-section .article-content .article-gallery .gallery-item:hover {
  transform: scale(1.02);
}
.article-details-section .article-content .article-gallery .gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.article-details-section .article-content .article-gallery .gallery-item:hover img {
  transform: scale(1.1);
}
.article-details-section .article-cta .cta-card {
  background: linear-gradient(135deg, #E2A731, #D49620);
  color: #FFFFFF;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.article-details-section .article-cta .cta-card h4 {
  color: #FFFFFF;
  font-weight: 700;
}
@media (max-width: 768px) {
  .article-details-section .article-cta .cta-card {
    padding: 2rem;
    text-align: center;
  }
}
.article-details-section .sidebar-widget {
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.article-details-section .sidebar-widget .widget-title {
  color: #0E1B2B;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #E2A731;
}
.article-details-section .sidebar-widget .related-articles .related-article-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DEE2E6;
}
.article-details-section .sidebar-widget .related-articles .related-article-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-link:hover .related-article-image img {
  transform: scale(1.1);
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-link:hover .related-article-content h6 {
  color: #E2A731;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-content {
  flex: 1;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-content h6 {
  color: #0E1B2B;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-content .related-article-date {
  font-size: 0.75rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-details-section .sidebar-widget .related-articles .related-article-item .related-article-content .related-article-date i {
  color: #E2A731;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DEE2E6;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-link:hover .latest-unit-image img {
  transform: scale(1.1);
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-link:hover .latest-unit-content h6 {
  color: #E2A731;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-image .unit-status-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: #E2A731;
  color: #FFFFFF;
  padding: 2px 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-image .unit-status-badge.sale {
  background: #28A745;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-image .unit-status-badge.rent {
  background: #17A2B8;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-content h6 {
  color: #0E1B2B;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-content .latest-unit-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-content .latest-unit-details span {
  font-size: 0.75rem;
  color: #6C757D;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-content .latest-unit-details span i {
  color: #E2A731;
  font-size: 0.7rem;
}
.article-details-section .sidebar-widget .latest-units .latest-unit-item .latest-unit-content .latest-unit-price {
  color: #E2A731;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: auto;
}
.article-details-section .sidebar-widget .categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-details-section .sidebar-widget .categories-list li {
  margin-bottom: 1rem;
}
.article-details-section .sidebar-widget .categories-list li:last-child {
  margin-bottom: 0;
}
.article-details-section .sidebar-widget .categories-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
  color: #0E1B2B;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-details-section .sidebar-widget .categories-list li a:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateX(-5px);
}
.article-details-section .sidebar-widget .categories-list li a:hover .category-count {
  background: #FFFFFF;
  color: #E2A731;
}
.article-details-section .sidebar-widget .categories-list li a .category-name {
  font-weight: 500;
}
.article-details-section .sidebar-widget .categories-list li a .category-count {
  background: #E2A731;
  color: #FFFFFF;
  padding: 2px 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 25px;
  text-align: center;
  transition: all 0.3s ease;
}
.article-details-section .sidebar-widget .quick-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-details-section .sidebar-widget .quick-links .quick-link-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #F8F9FA;
  border-radius: 0.5rem;
  color: #0E1B2B;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.article-details-section .sidebar-widget .quick-links .quick-link-item i {
  color: #E2A731;
  font-size: 1.125rem;
  width: 25px;
  text-align: center;
}
.article-details-section .sidebar-widget .quick-links .quick-link-item:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateX(-5px);
}
.article-details-section .sidebar-widget .quick-links .quick-link-item:hover i {
  color: #FFFFFF;
}

@media (max-width: 992px) {
  .article-details-section .sidebar-widget {
    margin-top: 3rem;
  }
}
.page-content-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .page-content-section {
    padding: 4rem 0;
  }
}
.page-content-section {
  background: #F8F9FA;
}
.page-content-section .page-content-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 2rem 0;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.page-content-section .page-image-section {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-content-section .page-image-section {
    height: 250px;
  }
}
.page-content-section .page-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.page-content-section .page-image-section:hover .page-main-image {
  transform: scale(1.05);
}
.page-content-section .page-content-body {
  padding: 3rem;
}
@media (max-width: 768px) {
  .page-content-section .page-content-body {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .page-content-section .page-content-body {
    padding: 1.5rem 1rem;
  }
}
.page-content-section .page-title-section {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #F8F9FA;
  position: relative;
}
.page-content-section .page-title-section::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
}
.page-content-section .page-main-title {
  color: #0E1B2B;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page-content-section .page-main-title {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .page-content-section .page-main-title {
    font-size: 1.8rem;
  }
}
.page-content-section .page-main-subtitle {
  color: #E2A731;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .page-content-section .page-main-subtitle {
    font-size: 1.1rem;
  }
}
.page-content-section .page-content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #0E1B2B;
}
@media (max-width: 768px) {
  .page-content-section .page-content-text {
    font-size: 1rem;
  }
}
.page-content-section .page-content-text h1, .page-content-section .page-content-text h2, .page-content-section .page-content-text h3, .page-content-section .page-content-text h4, .page-content-section .page-content-text h5, .page-content-section .page-content-text h6 {
  color: #0E1B2B;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  font-weight: 700;
}
.page-content-section .page-content-text h1:first-child, .page-content-section .page-content-text h2:first-child, .page-content-section .page-content-text h3:first-child, .page-content-section .page-content-text h4:first-child, .page-content-section .page-content-text h5:first-child, .page-content-section .page-content-text h6:first-child {
  margin-top: 0;
}
.page-content-section .page-content-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}
.page-content-section .page-content-text ul, .page-content-section .page-content-text ol {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.page-content-section .page-content-text ul li, .page-content-section .page-content-text ol li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.page-content-section .page-content-text blockquote {
  background: #F8F9FA;
  border-right: 4px solid #E2A731;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: #6C757D;
}
.page-content-section .page-content-text img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1.5rem 0;
}
.page-content-section .default-content {
  text-align: center;
  padding: 2rem 0;
}
.page-content-section .default-content .lead {
  font-size: 1.3rem;
  color: #E2A731;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-page-section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .contact-page-section {
    padding: 4rem 0;
  }
}
.contact-page-section .contact-form-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .contact-page-section .contact-form-card {
    padding: 2rem;
  }
}
.contact-page-section .section-header {
  margin-bottom: 2rem;
}
.contact-page-section .section-header .section-subtitle {
  color: #E2A731;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-page-section .section-header .section-title {
  color: #0E1B2B;
  font-size: 2rem;
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
@media (max-width: 768px) {
  .contact-page-section .section-header .section-title {
    font-size: 1.5rem;
  }
}
.contact-page-section .section-header .section-description {
  color: #6C757D;
  font-size: 1rem;
  line-height: 1.6;
}

.sidebar-widget {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .sidebar-widget {
    padding: 1.5rem;
  }
}

.widget-title {
  color: #0E1B2B;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F8F9FA;
  position: relative;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
}

.contact-info-list {
  margin: 0;
  padding: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  flex-shrink: 0;
}
.contact-info-icon i {
  color: #FFFFFF;
  font-size: 1rem;
}

.contact-info-content h6 {
  color: #0E1B2B;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}
.contact-info-content p {
  color: #6C757D;
  margin: 0;
  font-size: 0.9rem;
}
.contact-info-content a {
  color: #E2A731;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info-content a:hover {
  color: rgb(196.3574468085, 140.1191489362, 27.6425531915);
}

.social-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .social-links-grid {
    grid-template-columns: 1fr;
  }
}

.social-link-item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  background: #F8F9FA;
  border-radius: 10px;
  text-decoration: none;
  color: #6C757D;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.social-link-item:hover {
  background: #E2A731;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 167, 49, 0.3);
}
.social-link-item i {
  margin-left: 0.5rem;
  font-size: 1.1rem;
}
.social-link-item span {
  font-size: 0.85rem;
  font-weight: 500;
}

.quick-links {
  margin: 0;
  padding: 0;
}

.quick-link-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  color: #6C757D;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}
.quick-link-item:last-child {
  border-bottom: none;
}
.quick-link-item:hover {
  color: #E2A731;
  padding-right: 0.5rem;
}
.quick-link-item i {
  margin-left: 0.75rem;
  width: 20px;
  text-align: center;
}
.quick-link-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

.inquiry-form .form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.inquiry-form .form-control:focus {
  border-color: #E2A731;
  box-shadow: 0 0 0 0.2rem rgba(226, 167, 49, 0.25);
}
.inquiry-form .btn-primary {
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.inquiry-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 167, 49, 0.4);
}

.page-content-wrapper {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .page-content-wrapper {
    padding: 2rem;
  }
}

.page-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #0E1B2B;
  margin-bottom: 2rem;
}
.content-text h1, .content-text h2, .content-text h3, .content-text h4, .content-text h5, .content-text h6 {
  color: #0E1B2B;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 700;
}
.content-text h1:first-child, .content-text h2:first-child, .content-text h3:first-child, .content-text h4:first-child, .content-text h5:first-child, .content-text h6:first-child {
  margin-top: 0;
}
.content-text p {
  margin-bottom: 1.5rem;
}
.content-text ul, .content-text ol {
  margin-bottom: 1.5rem;
  padding-right: 2rem;
}
.content-text ul li, .content-text ol li {
  margin-bottom: 0.5rem;
}

.content-sections {
  border-top: 2px solid #e9ecef;
  padding-top: 2rem;
}

.content-section {
  padding: 1.5rem;
  background: #F8F9FA;
  border-radius: 10px;
  border-right: 4px solid #E2A731;
  margin-bottom: 1rem;
}
.content-section .section-title {
  color: #0E1B2B;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.content-section .section-content {
  color: #6C757D;
  line-height: 1.7;
  margin-bottom: 0;
}

.owners-section-inner {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #F8F9FA;
}
.owners-section-inner .owners-header {
  margin-bottom: 3rem;
}
.owners-section-inner .owners-header .section-divider {
  margin-bottom: 1.5rem;
}
.owners-section-inner .owners-header .section-divider .divider-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.5rem;
  box-shadow: 0 5px 20px rgba(226, 167, 49, 0.3);
}
.owners-section-inner .owners-header .owners-title {
  color: #0E1B2B;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .owners-section-inner .owners-header .owners-title {
    font-size: 1.75rem;
  }
}
.owners-section-inner .owners-header .owners-subtitle {
  color: #6C757D;
  font-size: 1.1rem;
  margin: 0;
}
.owners-section-inner .owner-card {
  background: #FFFFFF;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}
.owners-section-inner .owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #E2A731;
}
.owners-section-inner .owner-card .owner-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #F8F9FA 0%, rgb(233.125, 236.25, 239.375) 100%);
}
.owners-section-inner .owner-card .owner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.owners-section-inner .owner-card .owner-image .owner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(14, 27, 43, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.owners-section-inner .owner-card .owner-image .owner-overlay .owner-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: #E2A731;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
  box-shadow: 0 3px 10px rgba(226, 167, 49, 0.5);
}
.owners-section-inner .owner-card:hover .owner-image img {
  transform: scale(1.1);
}
.owners-section-inner .owner-card:hover .owner-image .owner-overlay {
  opacity: 1;
}
.owners-section-inner .owner-card .owner-content {
  padding: 1.75rem 1.5rem;
  background: #FFFFFF;
}
.owners-section-inner .owner-card .owner-content .owner-name {
  color: #0E1B2B;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.owners-section-inner .owner-card .owner-content .owner-role {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #E2A731;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #F8F9FA;
}
.owners-section-inner .owner-card .owner-content .owner-role i {
  font-size: 0.85rem;
}
.owners-section-inner .owner-card .owner-content .owner-brief {
  color: #6C757D;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .owners-section-inner {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  .owners-section-inner .owners-header {
    margin-bottom: 2rem;
  }
  .owners-section-inner .owners-header .section-divider .divider-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  .owners-section-inner .owners-header .owners-title {
    font-size: 1.5rem;
  }
  .owners-section-inner .owners-header .owners-subtitle {
    font-size: 1rem;
  }
  .owners-section-inner .owner-card {
    margin-bottom: 1.5rem;
  }
  .owners-section-inner .owner-card .owner-image {
    height: 240px;
  }
  .owners-section-inner .owner-card .owner-content {
    padding: 1.5rem 1.25rem;
  }
  .owners-section-inner .owner-card .owner-content .owner-name {
    font-size: 1.2rem;
  }
  .owners-section-inner .owner-card .owner-content .owner-role {
    font-size: 0.875rem;
  }
  .owners-section-inner .owner-card .owner-content .owner-brief {
    font-size: 0.85rem;
  }
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-auto {
  margin-right: auto !important;
}

.me-auto {
  margin-left: auto !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: right !important;
}

.text-end {
  text-align: left !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #0E1B2B !important;
}

.text-secondary {
  color: #E2A731 !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-gray {
  color: #6C757D !important;
}

.text-success {
  color: #28A745 !important;
}

.text-warning {
  color: #FFC107 !important;
}

.text-danger {
  color: #DC3545 !important;
}

.bg-primary {
  background-color: #0E1B2B !important;
}

.bg-secondary {
  background-color: #E2A731 !important;
}

.bg-light {
  background-color: #F8F9FA !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #DEE2E6 !important;
}

.border-bottom {
  border-bottom: 1px solid #DEE2E6 !important;
}

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

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

.rounded-circle {
  border-radius: 50% !important;
}

.shadow-sm {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.transition-base {
  transition: all 0.3s ease !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #F8F9FA;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #E2A731;
  border-radius: 0.5rem;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #D49620;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #0E1B2B 0%, #1A2B3D 100%) !important;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, #E2A731 0%, #D49620 100%) !important;
}

.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/*# sourceMappingURL=index.css.map */
