﻿/*===== Google Fonts =====*/
﻿/*===== Google Fonts =====*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*===== Global CSS =====*/
html
{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
:root
{
    --main-color:#0d61a6;
    --color-main-2: #7cc8ff;
    --shadow-black-100:0 5px 15px rgba(0,0,0,0.2);
    --black-900:#000;
    --black-400:#646f87;
    --black-100:#f7f7f7;
    --white:#fff;
    --black-alpha-100:rgba(0,0,0,.05);
    --navtext:12px;
    --dark-bg:#2b2d33;
    --dark-bg-alt:#35373d;
    --accent-gold:#f5c563;
    --text-light:#e8e8e8;
}

body
{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: normal;
    overflow-x: hidden;
    background-color: var(--white);
}
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
ul
{
    list-style: none;
}
img
{
    vertical-align: middle;
}
.container
{
    max-width: 1140px;
    margin: auto;
}
.row
{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-center
{
    justify-content: center;
}
.justify-content-between
{
    justify-content: space-between;
}
.align-items-center
{
    align-items: center;
}


.btn-1
{
    background-color: var(--accent-gold);
    padding: 14px 40px;
    border: none;
    color: var(--dark-bg);
    border-radius: 8px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(245, 197, 99, 0.3);
    transition: all 0.3s ease-out;
}
.btn-1:hover
{
    color: var(--dark-bg);
    background-color: #f7d280;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 197, 99, 0.4);
}

/* Style for login button when user is logged in */
.btn-1.logged-in, .burger-btn.logged-in {
    cursor: default;
}
.btn-1.logged-in:hover {
    background-color: var(--main-color); /* Keep original color on hover */
}
/* Logout Button Style */
.logout-btn {
    background-color: #f44336; /* A red color for logout */
    padding: 12px 28px;
    border: none;
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-out;
}
.logout-btn:hover {
    background-color: #d32f2f;
}
.btn-2
{
    background-color: var(--white);
    padding: 15px 40px;
    border: none;
    color: var(--main-color);
    border-radius: 5px;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid var(--main-color);
    transition: all 0.3s ease-out;
}
.btn-2:hover
{
    color: var(--white);
    background-color: White;
    border: none;
}
.section-padding
{
    padding: 80px 0;
}
.text-align
{
    text-align: center;
}
.section-title
{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
}
.section-title .sub-title
{
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
}
.section-title .main-title
{
    font-size: 35px;
    font-weight: 600;
    margin-top: 10px;
}
.section-title .line 
{
    padding-top: 0px;
}
.section-title .line li
{
    display: inline-block;
    background-color: var(--main-color);
    border-radius: 50px;
    height: 3px;
}
.section-title .line li:nth-of-type(1)
{
    width: 64px;
}
.section-title .line li:nth-of-type(2)
{
    width: 10px;
}
.section-title .line li:nth-of-type(3)
{
    width: 7px;
}


/* Navbar starts */

.navbar{
  position: fixed;
  top: 0; /* ensure the bar hugs the top without a white gap */
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 15px 40px;
  transition: all 0.5s ease;
  background-color: var(--dark-bg);
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}


.navbar.sticky
{
    padding: 15px 40px;
    background-color: var(--dark-bg);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.navbar .nav-item{
    display: inline-block;
    position: relative;
    margin-left: 30px;

}


.navbar .menu .user-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Space between "List Property" and Login/Profile */
}

.navbar .menu .list-property-btn {
    /* background-color: var(--black-alpha-100); */
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--main-color);
    transition: all 0.3s ease;
    /* border: 1px solid transparent; */
}

.navbar .menu .list-property-btn:hover {
    background-color: var(--white);
    border-color: var(--main-color);
}





.navbar .menu{ /* corrected selector (previously .nav-bar) */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.navbar .menu .nav-item{
    display: inline-block;
    position: relative;
    margin-left: 36px;
}
.navbar .logo span{
    color: var(--main-color);
}

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

}

.navbar .logo a

{
    margin-left: 80px;
    font-size: 24px;
    color: var(--text-light);
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.navbar .options{
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
}

.navbar .menu .nav-item .nav-link{
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.navbar .menu .nav-item .nav-link:hover{
    color: var(--accent-gold);
}

.navbar .nav-link {
    color: var(--text-light);
}

/* hamburger */
@media (max-width: 568px) {
  .nav-menu {
    width: 750px;
  }

  .navbar .logo a {
    margin-left: 0 !important;
    align-self: center;
    text-align: left;
  }

  .navbar .menu {
    display: none;
  }

  
   
}
/*Medium Screens */
@media (max-width: 980px) {
  .nav-menu {
    width: 970px;
  }

  .navbar .logo a{
    margin-left: 40px;
  }

  .navbar .options{
    display: none;
  }

 
}
/*Large Screens */
@media (max-width: 1200px) {
  .nav-menu {
    width: 1170px;
  }
}

/* Burger Icon Container */
.navbar .hamburger{
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger-container {
  position: absolute; /* keep the icon inside the navbar */
  top: 50%;
  right: 40px; /* match navbar horizontal padding */
  transform: translateY(-50%);
  z-index: 1000;
  cursor: pointer;
  width: 35px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px;
  border-radius: 5px;
  background: hwb(0 100% 0% / 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px #0000001a;
}

/* Burger Icon Lines */
.burger-line {
  width: 100%;
  height: 3px;
  background-color: var(--main-color, #0d61a6);
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
}

/* Checkbox Hack */
#burger-toggle {
  display: none;
}

/* Navigation Styles */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 90%;
  background: linear-gradient(135deg, var(--main-color) 0%, #273849 100%);
  transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
  box-shadow: -4px 0 15px #00000033;
  overflow-y: auto;
  padding-top: 70px;
  border-radius: 20px;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #ffffff0d;
  backdrop-filter: blur(10px);
}

.nav-menu ul {
  list-style-type: none;
}

.nav-menu ul li {
  margin: 0 15px;
  border-bottom: 1px solid #ffffff1a;
}

.nav-menu ul li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 10px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  font-size: 14px;
  
}

.nav-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background-color: var(--color-main-2);
  transition: left 0.3s ease;
}

.nav-menu ul li a:hover::after {
  left: 0;
}

/* Burger Icon Animation on Checkbox Checked */
#burger-toggle:checked ~ .burger-container .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#burger-toggle:checked ~ .burger-container .burger-line:nth-child(2) {
  opacity: 0;
}

#burger-toggle:checked ~ .burger-container .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Slide In */
#burger-toggle:checked ~ .nav-menu {
  right: 0;
}

.navbar .burger-btn{
    /* display: none; */
    padding: 10px 20px;
    border: 1px solid var(--main-color);
    color: var(--white);
    border-radius: 5px;
    align-self: center;
    margin:  10px;
    font-size: 14px;
    font-weight: 600;
    width: 40%;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease-out;
}

/* Profile Section & Dropdown */
.profile-section {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-icon {
    font-size: 2.2rem; /* Larger icon */
    color: var(--main-color);
    cursor: pointer;
    transition: color 0.3s ease;
    pointer-events: auto; /* Ensure icon is clickable */
    user-select: none; /* Prevent text selection */
}

.profile-icon:hover {
    color: #3893d8;
}

.profile-dropdown {
    position: absolute;
    top: 140%; /* Position below the icon */
    right: 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-black-100);
    width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    padding: 0.5rem 0;
    border: 1px solid #eee;
    pointer-events: none; /* Disable pointer events when hidden */
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto; /* Enable pointer events when visible */
}

.profile-dropdown .dropdown-header {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--black-400);
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.5rem;
}

.profile-dropdown a, .profile-dropdown .logout-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: var(--black-900);
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.profile-dropdown a:hover, .profile-dropdown .logout-btn:hover {
    background-color: var(--black-alpha-100);
}

.profile-dropdown .logout-btn {
    color: #e53935; /* Red for logout */
    font-weight: 500;
}

.profile-dropdown a i, .profile-dropdown .logout-btn i {
    margin-right: 0.75rem;
    color: var(--black-400);
}

/* Logout button inside hamburger menu */
.nav-menu .logout-btn {
    background: transparent;
    border: 1px solid var(--white);
    width: auto;
    padding: 8px 20px;
    margin-left: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

/* ========================================
   NOTIFICATION SECTION & DROPDOWN
   ======================================== */

.notification-section {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.notification-bell {
    position: relative;
    font-size: 1.8rem;
    color: var(--main-color);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

.notification-bell:hover {
    color: #3893d8;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(231, 76, 60, 0.3);
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    width: 380px;
    max-height: 500px;
    z-index: 99999;
    border: 1px solid #eee;
    flex-direction: column;
    /* Initially hidden */
    display: none;
}

.notification-dropdown.active {
    display: flex !important;
}

.notification-dropdown.active {
    display: flex !important;
}

.notification-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px 8px 0 0;
}

.notification-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.mark-all-read-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.mark-all-read-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.notification-list {
    overflow-y: auto;
    max-height: 380px;
    flex: 1;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.notification-loading,
.notification-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--black-400);
}

.notification-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.notification-item {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    gap: 0.75rem;
    position: relative;
}

.notification-item:hover {
    background-color: #f9f9f9;
}

.notification-item.unread {
    background-color: #e3f2fd;
}

.notification-item.unread::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #2196f3;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: white;
}

.notification-icon.payment {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.notification-icon.rejection {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.notification-icon.tenant {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.notification-icon.maintenance {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.notification-icon.reminder {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: var(--black-900);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.notification-message {
    color: var(--black-400);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.75rem;
    color: #999;
}

.notification-footer {
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.clear-notifications-btn {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--black-400);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    width: 100%;
    transition: all 0.3s ease;
}

.clear-notifications-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.clear-notifications-btn i {
    margin-right: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-dropdown {
        width: 320px;
        right: -60px;
    }
}

/* ========================================
   END NOTIFICATION SECTION
   ======================================== */




/* Home section starts */
.home{
  background: linear-gradient(135deg, #2b2d33 0%, #1f2126 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 20%, rgba(245, 197, 99, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}



/* abstract */
.abstract {
    display: none;
}

.blob {
    display: none;
}

.b1, .b2, .b3 {
    display: none;
}

/* Hero Characters Illustration */
.hero-characters {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(to top, rgba(31, 33, 38, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-characters::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;
    background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=2000&q=80') center bottom/cover no-repeat;
    opacity: 0.08;
    filter: grayscale(100%) contrast(1.3) brightness(0.8);
    pointer-events: none;
}

/* Property Icons Container */
.property-icons {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    bottom: 0;
    font-size: 3.5rem;
    opacity: 0.12;
    animation: floatIcon 4s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.12;
    }
    50% {
        transform: translateY(-25px) scale(1.1);
        opacity: 0.2;
    }
}
@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(20px) translateX(10px)
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(-16px) translateX(-12px)
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(14px) translateX(8px)
    }
}

/* abstract */



.home .container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
    z-index: 5;
}

.home .container::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 197, 99, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-image {
    display: none;
}

.hero-image img {
    display: none;
}




.home .hero .searchButton {
  /* width: 40px;
  height: 36px; */
  border: 1px solid #00B4CC;
  background: #00B4CC;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 1em;
  padding: 0.8em 1.2em;
  min-width: 44px;
}

.home .hero .wrap{
    width: 100%;
    position: relative;
    z-index: 10;
}

.home .hero .location {
    position: relative;
    z-index: 10;
    width: 100%;
}

.home .hero .search-bar {
    position: relative;
    z-index: 10;
    width: 100%;
}

.home .hero {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.corner-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

.corner-top-left {
    top: 0;
    left: 0;
}

.corner-top-right {
    top: 0;
    right: 0;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.home .hero .hero-bar{
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.home .hero .hero-text h2{
    text-align: center;
    color: var(--text-light);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(245, 197, 99, 0.1);
    position: relative;
    z-index: 10;
}

.hero .hero-text span{
    font-size: 3.5rem;
    line-height: 1.3;
    color: var(--text-light);
    font-weight: 700;
    display: block;
    margin-top: 0;
    text-align: center;
    align-self: center;
    background: linear-gradient(135deg, var(--text-light) 0%, rgba(245, 197, 99, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 10;
}

.home .hero .hero-bar{
    margin-top: 30px;
    width: 100%;
    align-content: center;
    justify-content: center;
}

.hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    margin-top: 20px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.home .hero .hero-bar select{
    width: 100%;
    outline: none;
    border: 2px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    cursor: pointer;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.home .hero .hero-bar select option {
    background: var(--dark-bg-alt);
    color: var(--text-light);
    padding: 10px;
}

.home .hero .hero-bar select:focus,
.home .hero .hero-bar select:hover{
    outline: none;
    border: 2px solid var(--accent-gold);
    background: rgba(255,255,255,0.08);
}
/* search bar */
.home .hero .search {
  width: 100%;
  max-width: 50rem;
  position: relative;
  display: flex;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
}

.home .hero .searchTerm {
  width: 100%;
  border: 2px solid rgba(255,255,255,0.1);
  border-right: none;
  padding: 16px 20px;
  border-radius: 12px 0 0 12px;
  outline: none;
  color: var(--text-light);
  font-size: 1rem;
  min-width: 0;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.home .hero .searchTerm::placeholder {
  color: rgba(255,255,255,0.5);
}

.home .hero .searchTerm:focus{
  color: var(--text-light);
  background: rgba(255,255,255,0.08);
  border-color: var(--accent-gold);
}

.home .hero .searchButton {
  border: none;
  background: var(--accent-gold);
  text-align: center;
  color: var(--dark-bg);
  border-radius: 0 12px 12px 0;
  cursor: pointer;
  font-size: 1rem;
  padding: 16px 32px;
  min-width: 44px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.home .hero .searchButton:hover {
  background: #f7d280;
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .home .hero .search {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .home .hero .searchTerm {
    border-radius: 12px 12px 0 0;
    font-size: 0.95em;
    padding: 14px 16px;
    border-right: 2px solid rgba(255,255,255,0.1);
  }
  .home .hero .searchButton {
    border-radius: 0 0 12px 12px;
    font-size: 0.95em;
    padding: 14px 16px;
    min-width: 0;
  }
  
  .home .hero .hero-text h2 {
    font-size: 2.2rem;
  }
  
  .hero .hero-text span {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .floating-icon {
    font-size: 2rem;
  }
  
  .hero-characters {
    height: 180px;
  }
}


/* Recommended Properties Section */
.recc-properties {
  background: #1f2126;
  padding: 80px 0;
}

.recc-properties .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.recc-properties .section-title h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
}

.recc-properties .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.property-card {
  background: var(--dark-bg-alt);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
  width: 320px;
  margin-bottom: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
}

.property-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-8px);
  border-color: var(--accent-gold);
}

.property-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.property-details {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.property-details h3 {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.property-details p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin: 0.2rem 0;
}

@media (max-width: 900px) {
  .recc-properties .row {
    gap: 1rem;
  }
  .property-card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .recc-properties {
    padding: 30px 0;
    margin: 0 10px;
  }
  .property-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .property-image img {
    height: 150px;
  }
  .property-details {
    padding: 1rem;
  }
}


/* Owner Section */
.owner {
  background: var(--white);
  color: #1f2126;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.owner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2126;
  animation: fadeInDown 1s;
}
.owner p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: #4b5563;
  animation: fadeIn 1.2s;
}
.owner .btn-2 {
  background: #6366f1;
  color: var(--white);
  border: none;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  animation: fadeInUp 1.3s;
}
.owner .btn-2:hover {
  background: #818cf8;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@media (max-width: 600px) {
  .owner {
    padding: 35px 0;
  }
  .owner h2 {
    font-size: 1.3rem;
  }
  .owner p {
    font-size: 1rem;
  }
  .owner .btn-2 {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
  }
}

/* Services Section */
.services {
  background: #1f2126;
  padding: 80px 0;
}
.services .section-title {
  text-align: center;
  margin-bottom: 50px;
}
.services .section-title h2 {
  font-size: 2.5rem;
  color: var(--text-light);
  font-weight: 700;
  margin: 0;
  animation: fadeInDown 1s;
}
.services .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: var(--dark-bg-alt);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
  width: 320px;
  margin-bottom: 2rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  animation: cardFadeIn 1.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-8px);
  border-color: var(--accent-gold);
}
.service-card i {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}
.service-card:hover i {
  transform: scale(1.1);
}
.service-card h3 {
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin: 0.2rem 0;
  text-align: center;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 900px) {
  .services .row {
    gap: 1rem;
  }
  .service-card {
    width: 100%;
    max-width: 400px;
  }
}
@media (max-width: 600px) {
  .services {
    padding: 30px 15px;
  }
  .service-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    padding: 1.2rem 0.7rem;
  }
  .service-card i {
    font-size: 2rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
}

/* Lifestyle Section */
.lifestyle-section {
  background: var(--white);
  padding: 80px 0;
}

.lifestyle-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.lifestyle-text {
  flex: 1;
  padding-right: 20px;
}

.lifestyle-title {
  font-size: 2.5rem;
  color: #1f2126;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.2;
}

.highlight-text {
  color: #6366f1;
}

.lifestyle-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-text h3 {
  font-size: 1.25rem;
  color: #1f2126;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.lifestyle-image {
  flex: 1;
  position: relative;
}

.lifestyle-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  max-height: 600px;
}

/* Responsive styles for lifestyle section */
@media (max-width: 900px) {
  .lifestyle-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .lifestyle-text {
    padding-right: 0;
  }
  
  .lifestyle-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .lifestyle-features {
    gap: 30px;
  }
  
  .lifestyle-image {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .lifestyle-section {
    padding: 50px 20px;
  }
  
  .lifestyle-title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
  
  .feature-item {
    gap: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 1.25rem;
  }
  
  .feature-text h3 {
    font-size: 1.1rem;
  }
  
  .feature-text p {
    font-size: 0.9rem;
  }
  
  .lifestyle-image img {
    border-radius: 15px;
    max-height: 400px;
  }
}

/* Footer starts here */
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.9);
  padding: 50px 0 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
}



.footer-details-col{
    /* flex: 1 1 300px; */
    width: 50%;
    margin: 0 0.5rem;
    text-align: left;
}

.footer .links{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-links-col,
.footer-owner-col,
.footer-tenant-col {
  /* flex: 1 1 200px; */
  max-width: 300px;
  margin: 0 0.5rem;
  text-align: left;
}

.footer-details-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.footer-details-col p {
  font-size: 1rem;
  margin-bottom: 0.7rem;
  color: #e0e0e0;
}

.footer-links-col h3,
.footer-owner-col h3,
.footer-tenant-col h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-links-col ul,
.footer-owner-col ul,
.footer-tenant-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li,
.footer-owner-col ul li,
.footer-tenant-col ul li {
  margin-bottom: 0.4rem;
}

.footer-links-col a,
.footer-owner-col a,
.footer-tenant-col a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-col a:hover,
.footer-owner-col a:hover,
.footer-tenant-col a:hover {
  color: var(--accent-gold);
}

.footer .social {
  margin: 1.5rem 0 1rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer .social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.2s;
}

.footer .social a:hover {
  color: var(--accent-gold);
}

.footer .copyright {
  font-size: 0.95rem;
  color: #e0e0e0;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .footer .row {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .footer-details-col,
  .footer-links-col,
  .footer-owner-col,
  .footer-tenant-col {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 25px 0 10px 0;
  }
  .footer-details-col h3,
  .footer-links-col h3,
  .footer-owner-col h3,
  .footer-tenant-col h3 {
    font-size: 1.1rem;
  }
  .footer-details-col p,
  .footer-links-col a,
  .footer-owner-col a,
  .footer-tenant-col a {
    font-size: 0.95rem;
  }
  .footer-details-col,
  .footer-links-col,
  .footer-owner-col,
  .footer-tenant-col {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

/* Footer ends here */


/* Floating Login Modal - Dark Theme */
.login-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 1rem;
  overflow-y: auto;
}
.login-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* Floating Shapes Animation */
@keyframes floatShape {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.modal-floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(40px);
  animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
  width: 128px;
  height: 128px;
  background: #6366f1;
  top: 25%;
  left: 25%;
}

.shape-2 {
  width: 192px;
  height: 192px;
  background: #a855f7;
  bottom: 25%;
  right: 25%;
  animation-delay: 2s;
}

.shape-3 {
  width: 96px;
  height: 96px;
  background: #14b8a6;
  top: 50%;
  right: 33%;
  animation-delay: 4s;
}

.login-modal .login-box {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 2rem 2rem 2rem 2rem;
  width: 100%;
  max-width: 440px;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.5s;
  border: 1px solid rgba(75, 85, 99, 0.7);
  z-index: 10;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.login-modal .close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(55, 65, 81, 0.8);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.login-modal .close-btn:hover {
  background: rgba(75, 85, 99, 1);
  color: #fff;
  transform: rotate(90deg);
}

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

.modal-header h2 {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: rgba(156, 163, 175, 1);
  margin: 0;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(209, 213, 219, 1);
  margin-bottom: 0.5rem;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.forgot-link {
  font-size: 0.875rem;
  color: #818cf8;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-link:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(75, 85, 99, 1);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
  background: rgba(55, 65, 81, 1);
  color: rgba(229, 231, 235, 1);
}

.modal-form input::placeholder {
  color: rgba(156, 163, 175, 1);
}

.modal-form input:focus {
  border-color: #818cf8;
  background: rgba(55, 65, 81, 1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.login-modal .login-btn {
  background: #6366f1;
  color: #fff;
  border: none;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.login-modal .login-btn:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.divider-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(75, 85, 99, 1);
}

.divider-text {
  padding: 0 0.75rem;
  background: transparent;
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 1);
}

.social-login {
  margin-top: 1rem;
}

.social-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(209, 213, 219, 1);
  margin-bottom: 1rem;
}

.social-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: rgba(55, 65, 81, 1);
  border: 1px solid rgba(75, 85, 99, 1);
  border-radius: 0.75rem;
  color: rgba(229, 231, 235, 1);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  gap: 0.5rem;
}

.social-btn:hover {
  background: rgba(75, 85, 99, 1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.login-modal .signup-link,
.signup-modal .login-link {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(156, 163, 175, 1);
}

.login-modal .signup-link a,
.signup-modal .login-link a {
  color: #818cf8;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.login-modal .signup-link a:hover,
.signup-modal .login-link a:hover {
  color: #a5b4fc;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .login-modal .login-box,
  .signup-modal .signup-box {
    max-width: 95vw;
    padding: 1.5rem 1rem;
  }
  .modal-header h2 {
    font-size: 1.4rem;
  }
  .social-buttons {
    grid-template-columns: 1fr;
  }
}




/* Process */

.process{
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  padding: 80px 20px;
}

.process-container {
            max-width: 700px;
            width: 100%;
            text-align: center;
        }
        
        /* Main heading styles */
        .process-container h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        
        /* Subtitle styles */
        .process-container .subtitle {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 60px;
        }

        /* Wrapper for the timeline/steps */
        .timeline {
            position: relative;
            margin: 0 auto;
            padding: 0;
            list-style: none;
            text-align: left;
        }

        /* The vertical connecting line */
        .timeline::before {
            content: '';
            position: absolute;
            top: 10px; /* Start after the top of the first circle */
            bottom: 10px; /* End before the bottom of the last circle */
            left: 34px; /* (Circle Width / 2) - (Line Width / 2) => (70/2) - (2/2) */
            width: 2px;
            background-color: rgba(245, 197, 99, 0.3);
            z-index: 0;
        }

        /* Individual step item */
        .timeline-item {
            position: relative;
            display: flex;
            align-items: flex-start; /* Aligns circle to the top of the content */
            margin-bottom: 50px;
        }

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

        /* The numbered circle */
        .timeline-dot {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            font-weight: 700;
            flex-shrink: 0; /* Prevents the circle from shrinking */
            z-index: 1; /* Sits on top of the line */
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }

        /* Color variants for the circles */
        .dot-blue {
            background-color: rgba(245, 197, 99, 0.2);
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
        }

        .dot-green {
            background-color: rgba(245, 197, 99, 0.2);
            color: var(--accent-gold);
            border: 2px solid var(--accent-gold);
        }

        /* Text content for each step */
        .timeline-content {
            padding-left: 30px;
        }

        .timeline-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-light);
            margin: 0 0 8px 0;
            /* Adjust top margin to vertically center with the circle */
            margin-top: 5px; 
        }

        .timeline-content p {
            margin: 0;
            line-height: 1.6;
            font-size: 1rem;
            color: rgba(255,255,255,0.7);
        }
        
        /* --- Responsive Design for Mobile --- */
        @media (max-width: 768px) {
            .process-container h2 {
                font-size: 28px;
            }

            .process-container .subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }
            
            .timeline::before {
                left: 29px; /* Adjust for smaller circle */
            }

            .timeline-item {
                margin-bottom: 30px;
            }

            .timeline-dot {
                width: 60px;
                height: 60px;
                font-size: 20px;
            }

            .timeline-content {
                padding-left: 20px;
            }

            .timeline-content h3 {
                font-size: 18px;
                margin-top: 3px;
            }

            .timeline-content p {
                font-size: 14px;
            }
        }

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

/* Process */

/* Floating Signup Modal - Dark Theme */
.signup-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 1rem;
  overflow-y: auto;
}

.signup-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.signup-modal .signup-box {
  background: rgba(31, 41, 55, 0.5);
  backdrop-filter: blur(16px);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  padding: 2rem 2rem 2rem 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.5s;
  border: 1px solid rgba(75, 85, 99, 0.7);
  z-index: 10;
}

/* Hide scrollbar but keep functionality */
.signup-modal .signup-box::-webkit-scrollbar {
  width: 6px;
}

.signup-modal .signup-box::-webkit-scrollbar-track {
  background: transparent;
}

.signup-modal .signup-box::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 3px;
}

.signup-modal .signup-box::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.5);
}

.signup-modal .close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(55, 65, 81, 0.8);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 11;
}

.signup-modal .close-btn:hover {
  background: rgba(75, 85, 99, 1);
  color: #fff;
  transform: rotate(90deg);
}

.signup-modal .name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.signup-modal .signup-btn {
  background: #6366f1;
  color: #fff;
  border: none;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.signup-modal .signup-btn:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

/* Role Selection Styling */
.signup-modal .role-selection {
  border: 1px solid rgba(75, 85, 99, 1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-top: 0.5rem;
  background: rgba(55, 65, 81, 0.3);
}

.signup-modal .role-selection legend {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(209, 213, 219, 1);
  padding: 0 0.5rem;
  margin-bottom: 0.75rem;
}

.signup-modal .role-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.signup-modal .role-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem;
  background: rgba(55, 65, 81, 1);
  border: 2px solid rgba(75, 85, 99, 1);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.signup-modal .role-label:hover {
  background: rgba(75, 85, 99, 1);
  border-color: #818cf8;
}

.signup-modal .role-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.signup-modal .role-label input[type="radio"]:checked + .role-text {
  color: #818cf8;
}

.signup-modal .role-label input[type="radio"]:checked ~ * {
  border-color: #818cf8;
}

.signup-modal .role-label:has(input:checked) {
  background: rgba(99, 102, 241, 0.1);
  border-color: #818cf8;
}

.signup-modal .role-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: rgba(229, 231, 235, 1);
  transition: color 0.3s;
}

.signup-modal .role-icon {
  font-size: 1.5rem;
}

.signup-modal .role-name {
  font-size: 0.875rem;
  font-weight: 500;
}

@media (max-width: 600px) {
  .signup-modal .name-row {
    grid-template-columns: 1fr;
  }
  .signup-modal .role-options {
    grid-template-columns: 1fr;
  }
}



/* --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* Owner Dashboard */

/* Owner Dashboard Section Scoped Selectors */
.owner-dashboard {
  background: #f7f9fb;
  padding: 48px;
  margin-top: 70px;

}
.owner-dashboard .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.owner-dashboard .dashboard-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.5rem;
}
.owner-dashboard .dashboard-subtitle {
  font-size: 1.1rem;
  color: #646f87;
  margin-bottom: 2.5rem;
}
.owner-dashboard .dashboard-cards {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.owner-dashboard .dashboard-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 36px 24px 36px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.owner-dashboard .card-label {
  font-size: 1rem;
  color: #646f87;
  margin-bottom: 12px;
}
.owner-dashboard .card-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}
.owner-dashboard .card-value.pending {
  color: #e53935;
}

@media (max-width: 900px) {
  .owner-dashboard .dashboard-cards {
    gap: 1rem;
  }
  .owner-dashboard .dashboard-card {
    min-width: 180px;
    padding: 24px 18px 18px 18px;
  }
}
@media (max-width: 600px) {
  .owner-dashboard {
    padding: 32px 0 18px 0;
    margin-top: 56px;
  }
  .owner-dashboard .dashboard-title {
    font-size: 1.2rem;
  }
  .owner-dashboard .dashboard-subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .owner-dashboard .dashboard-cards {
    flex-direction: column;
    gap: 1rem;
  }
  .owner-dashboard .dashboard-card {
    min-width: 0;
    width: 100%;
    padding: 18px 10px 14px 10px;
    align-items: flex-start;
  }
  .owner-dashboard .card-label {
    font-size: 0.95rem;
  }
  .owner-dashboard .card-value {
    font-size: 1.5rem;
  }
}

/* Properties Dashboard Section */

.properties-dashboard {
  background: #f7f9fb;
  padding: 48px;
}

.properties-dashboard .container {
  max-width: 1200px;
  /* margin: 0 auto; */
  padding: 0 24px;
}

.properties-dashboard .properties-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 2rem;
  justify-content: flex-start;

}



  


/* Maintenance & Service Requests Section */
.maintenance-requests-section {
  background: #f7f9fb;
  padding: 2rem 0 2.5rem 0;
}
.maintenance-requests-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  padding: 0 48px;
}
.maintenance-requests-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.maintenance-requests-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
}
.maintenance-requests-filters {
  display: flex;
  gap: 0.5rem;
}
.filter-btn {
  background: #fff;
  color: #222;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.45rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #f7f9fb;
  color: #0d61a6;
  border: 1.5px solid #b5d6f7;
}
.maintenance-requests-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 0.5rem 0.5rem 1.2rem 0.5rem;
  margin-bottom: 1.2rem;
  overflow-x: auto;
}
.maintenance-requests-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.maintenance-requests-table th {
  background: #f7f9fb;
  color: #222;
  font-weight: 700;
  padding: 1rem 0.7rem;
  text-align: left;
  font-size: 1rem;
  border-bottom: 2px solid #f0f0f0;
}
.maintenance-requests-table td {
  padding: 1rem 0.7rem;
  color: #222;
  font-weight: 500;
  border-bottom: 1.5px solid #f0f0f0;
  vertical-align: middle;
}
.maintenance-requests-table tr:last-child td {
  border-bottom: none;
}
.status-badge {
  display: inline-block;
  padding: 0.35em 1em;
  border-radius: 12px;
  font-size: 0.98em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.status-badge.pending {
  background: #fff7d1;
  color: #bfa100;
}
.status-badge.completed {
  background: #d7fbe8;
  color: #1ca97c;
}
.view-link {
  color: #0d61a6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.view-link:hover {
  color: #3893d8;
  text-decoration: underline;
}
.request-maintenance-btn {
  background: #3893d8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.7rem;
  transition: background 0.2s, transform 0.2s;
}
.request-maintenance-btn:hover {
  background: #0d61a6;
  transform: scale(1.04);
}
.request-maintenance-btn i {
  font-size: 1.1em;
}

@media (max-width: 900px) {
  .maintenance-requests-container {
    padding: 0 8px;
  }
  .maintenance-requests-title {
    font-size: 1.2rem;
  }
  .maintenance-requests-table th,
  .maintenance-requests-table td {
    padding: 0.7rem 0.4rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .maintenance-requests-section {
    padding: 1.2rem 0 1.5rem 0;
  }
  .maintenance-requests-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .maintenance-requests-title {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .maintenance-requests-table-wrapper {
    padding: 0.2rem 0.2rem 0.7rem 0.2rem;
  }
  .maintenance-requests-table th,
  .maintenance-requests-table td {
    padding: 0.5rem 0.2rem;
    font-size: 0.92rem;
  }
  .request-maintenance-btn {
    font-size: 0.98rem;
    padding: 0.5rem 1rem;
  }
}



/* Analytics Snapshot Section */
.analytics-section {
  background: #f7f9fb;
  padding:48px;
}
.analytics-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  /* padding: 0 24px; */
}
.analytics-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.2rem;
}
.analytics-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 2rem 1.5rem 2rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.analytics-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.analytics-performance {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.analytics-label {
  font-size: 1.08rem;
  color: #646f87;
  font-weight: 500;
}
.analytics-value {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  margin-top: 0.2rem;
}
.analytics-comparison {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  margin-top: 0.2rem;
}
.analytics-vs-label {
  font-size: 1rem;
  color: #646f87;
  font-weight: 500;
}
.analytics-vs-value {
  font-size: 1.08rem;
  color: #1ca97c;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.analytics-vs-value i {
  color: #1ca97c;
  font-size: 1em;
}
.analytics-chart {
  width: 100%;
  margin-top: 0.5rem;
}
.analytics-bar-group {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 2.2rem;
  justify-content: space-evenly;
  height: 120px;
  padding-bottom: 0.5rem;
}
.analytics-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 70px;
}
.bar {
  width: 70px;
  border-radius: 8px 8px 0 0;
  background: #b5d6f7;
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.bar-jan { height: 60px; }
.bar-feb { height: 48px; }
.bar-mar { height: 48px; }
.bar-apr { height: 30px; background: #3893d8; }
.bar-apr.active { background: #3893d8; }
.bar-may { height: 20px; }
.bar-jun { height: 60px; }
.bar-label {
  font-size: 1rem;
  color: #646f87;
  font-weight: 500;
  margin-top: 0.2rem;
}
.bar-label.active {
  color: #3893d8;
  font-weight: 700;
}

@media (max-width: 900px) {
  .analytics-container {
    padding: 0 8px;
  }
  .analytics-title {
    font-size: 1.2rem;
  }
  .analytics-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .analytics-bar {
    width: 40px;
  }
  .bar {
    width: 40px;
    border-radius: 6px 6px 0 0;
  }
}
@media (max-width: 600px) {
  .analytics-section {
    padding: 1.2rem 0 1.5rem 0;
  }
  .analytics-title {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .analytics-card {
    padding: 0.7rem 0.2rem 0.7rem 0.2rem;
  }
  .analytics-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .analytics-value {
    font-size: 1.3rem;
  }
  .analytics-bar-group {
    gap: 0.7rem;
    height: 70px;
  }
  .analytics-bar {
    width: 22px;
  }
  .bar {
    width: 22px;
    border-radius: 4px 4px 0 0;
  }
  .bar-label {
    font-size: 0.85rem;
  }
}





/* --------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------- */
/* Tenant Dashboard */
/* Tenant Service Requests Section */
.tenant-service-requests-section {
  background: #f7f9fb;
  padding: 2rem 0 2.5rem 0;
}
.tenant-service-requests-container {
  padding: 0 48px;
}
.tenant-service-requests-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.2rem;
}
.tenant-service-requests-table-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 0.5rem 0.5rem 1.2rem 0.5rem;
  margin-bottom: 1.2rem;
  overflow-x: auto;
}
.tenant-service-requests-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.tenant-service-requests-table th {
  background: #f7f9fb;
  color: #222;
  font-weight: 700;
  padding: 1rem 0.7rem;
  text-align: left;
  font-size: 1rem;
  border-bottom: 2px solid #f0f0f0;
}
.tenant-service-requests-table td {
  padding: 1rem 0.7rem;
  color: #222;
  font-weight: 500;
  border-bottom: 1.5px solid #f0f0f0;
  vertical-align: middle;
}
.tenant-service-requests-table tr:last-child td {
  border-bottom: none;
}
.status-badge {
  display: inline-block;
  padding: 0.35em 1em;
  border-radius: 12px;
  font-size: 0.98em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.status-badge.pending {
  background: #fff7d1;
  color: #bfa100;
}
.status-badge.completed {
  background: #d7fbe8;
  color: #1ca97c;
}
.view-link {
  color: #0d61a6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.view-link:hover {
  color: #3893d8;
  text-decoration: underline;
}
.tenant-request-service-btn {
  background: #3893d8;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.7rem;
  transition: background 0.2s, transform 0.2s;
}
.tenant-request-service-btn:hover {
  background: #0d61a6;
  transform: scale(1.04);
}
.tenant-request-service-btn i {
  font-size: 1.1em;
}

@media (max-width: 900px) {
  .tenant-service-requests-container {
    padding: 0 8px;
  }
  .tenant-service-requests-title {
    font-size: 1.2rem;
  }
  .tenant-service-requests-table th,
  .tenant-service-requests-table td {
    padding: 0.7rem 0.4rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .tenant-service-requests-section {
    padding: 1.2rem 0 1.5rem 0;
  }
  .tenant-service-requests-title {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }
  .tenant-service-requests-table-wrapper {
    padding: 0.2rem 0.2rem 0.7rem 0.2rem;
  }
  .tenant-service-requests-table th,
  .tenant-service-requests-table td {
    padding: 0.5rem 0.2rem;
    font-size: 0.92rem;
  }
  .tenant-request-service-btn {
    font-size: 0.98rem;
    padding: 0.5rem 1rem;
  }
}

/* ===== Notification Styles ===== */
.notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 24px;
  border-radius: 8px;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 10000;
  animation: slideInRight 0.3s ease-out;
  max-width: 400px;
  word-wrap: break-word;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.notification.success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.notification.error {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.notification.info {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.notification.fade-out {
  opacity: 0;
  transform: translateX(100px);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 600px) {
  .notification {
    right: 15px;
    left: 15px;
    bottom: 20px;
    max-width: none;
    font-size: 14px;
  }
}
