/* ===================================
Open Plots & Villas - Main Stylesheet
Clean Design with Green Theme
=================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease, text-decoration 0.25s ease;
}

a:hover {
    color: #e8f7e4;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #343a40;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 70px;
}


/* ===================================
Main Container & Layout
=================================== */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1400px) {
    .container {
        padding: 0 50px;
    }
}

.container-fluid {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* ===================================
Section Header Styles
=================================== */
.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 10px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    margin: 10px auto;
    border-radius: 6px;
}

.section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
Header & Navigation Styles
=================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 8px 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 105, 77, 0.15);
    border-top: 1px solid rgba(0, 105, 77, 0.1);
    transition: all 0.25s ease;
}

.navbar {
    background: transparent;
    padding: 8px 0;
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #00694d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}

.navbar-brand:hover {
    color: #004d36;
}

.navbar-nav .nav-link {
    color: #00694d;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(0, 105, 77, 0.08);
    color: #004d36;
    text-decoration: none;
}

/* ===================================
Mobile Bottom Navigation Styles 
=================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 20px rgba(0, 105, 77, 0.15);
    border-top: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 12px 12px 0 0;
}

.mobile-bottom-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    list-style: none;
    padding: 6px 8px;
    margin: 0;
    height: 55px;
}

.mobile-bottom-nav ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.mobile-bottom-nav ul .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6c757d;
    padding: 2px 6px;
    min-width: 40px;
    transition: color 0.25s ease;
}

.mobile-bottom-nav .nav__icon {
    font-size: 1.1rem;
    line-height: 1;
}

.mobile-bottom-nav .icon_name {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2px;
}

.mobile-bottom-nav ul .nav-link.active,
.mobile-bottom-nav ul .nav-link:hover {
    color: #00694d;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
}

/* ===================================
Offcanvas Sidebar Styles
=================================== */
.offcanvas {
    width: 50%;
    background-color: #ffffff;
    border-right: 1px solid rgba(0, 105, 77, 0.1);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
}

.offcanvas-title {
    color: #00694d;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.offcanvas-body {
    padding-top: 16px;
}

.sidebar-nav .nav-item {
    margin-bottom: 8px;
}

.sidebar-nav .nav-link {
    color: #343a40;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.25s ease;
    display: block;
    text-decoration: none;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background-color: #e8f7e4;
    color: #00694d;
    text-decoration: none;
}

.sidebar-nav .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-nav .dropdown-toggle::after {
    transition: transform 0.25s ease;
}

.sidebar-nav .dropdown-toggle:not(.collapsed)::after {
    transform: rotate(180deg);
}

.sidebar-nav .dropdown-item {
    color: #6c757d;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    line-height: 1.4;
    text-decoration: none;
}

.sidebar-nav .dropdown-item:hover {
    background-color: #e8f7e4;
    color: #00694d;
    text-decoration: none;
}

.sidebar-nav hr {
    margin: 16px 0;
    border-color: rgba(0, 105, 77, 0.15);
}

@media (max-width: 768px) {
    .offcanvas {
        width: 270px;
        max-width: 75%;
    }
}

/* ===================================
Hero Section Styles
=================================== */
.hero-section {
    max-height: 100vh;
    padding-top: 150px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 105, 77, 0.7), rgba(0, 105, 77, 0)), url('../images/Hero-Bg.webp') center center;
    background-size: cover;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 24px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.post-property-cta {
    margin: 24px 0 32px 0;
}

.post-property-cta .btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #00694d;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.post-property-cta .btn:hover {
    background-color: #004d36;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.hero-search .search-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        max-height: 50vh;
        padding-top: 30px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-search .search-form {
        padding: 12px;
    }
}

/* ===================================
Hero Search Form Styles
=================================== */
.hero-search {
    margin-top: 24px;
    position: relative;
}

#search-error-message {
    color: #dc3545;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-top: 8px;
    height: 16px;
    transition: opacity 0.3s;
    opacity: 0;
}

.search-form {
    background: #ffffff;
    border: 0.5px solid rgba(0, 105, 77, 0.1);
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 4px 20px 0 rgba(0, 105, 77, 0.08);
    max-width: 750px;
    margin: 0 auto;
}

.search-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-field select,
.search-field input {
    width: 100%;
    padding: 12px;
    border: 0.5px solid rgba(0, 105, 77, 0.15);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.25s ease;
    color: #343a40;
}

.search-field select:focus,
.search-field input:focus {
    outline: none;
    border-color: #00694d;
    box-shadow: 0 0 0 2px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 1);
}

.search-btn {
    background: #00694d;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 105, 77, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.search-btn:hover {
    background: #004d36;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.3);
}

@media (max-width: 768px) {
    .search-form {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}

/* ===================================
Breadcrumbs
=================================== */
.breadcrumbs {
    padding: 16px 0;
    background-color: #e8f7e4;
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
    min-height: auto;
}

.breadcrumbs__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin: 0;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.breadcrumbs__list li+li {
    padding-left: 12px;
}

.breadcrumbs__list li+li::before {
    display: inline-block;
    padding-right: 12px;
    color: #6c757d;
    content: "/";
}

.breadcrumbs__list li {
    color: #6c757d;
}

.breadcrumbs__list a {
    color: #00694d;
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumbs__list a:hover {
    color: #004d36;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .breadcrumbs__container {
        flex-direction: column;
        text-align: center;
    }

    .breadcrumbs__title {
        margin-bottom: 8px;
    }

    .breadcrumbs__list {
        justify-content: center;
    }
}

/* ===================================
About Page Styles 
=================================== */
.about-story-section {
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.about-story-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 105, 77, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(219, 255, 212, 0.1) 0%, transparent 50%);
}

.about-story-section .container {
    position: relative;
    z-index: 2;
}

.story-text {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 105, 77, 0.08);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.story-text:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.story-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
}

.story-text .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    word-wrap: break-word;
}

.story-text .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    border-radius: 2px;
}

.story-text .section-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 600;
    line-height: 1.3;
    color: #343a40;
    margin-bottom: 16px;
}

.story-text p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
    text-align: justify;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    flex-shrink: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    transition: all 0.4s ease;
}

.highlight-item:hover {
    background: rgba(232, 247, 228, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.15);
}

.highlight-item i {
    color: #00694d;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    background: rgba(0, 105, 77, 0.2);
    transform: scale(1.1);
}

.highlight-item span {
    font-weight: 600;
    color: #343a40;
    font-size: 1rem;
    transition: color 0.3s ease;
    word-wrap: break-word;
    flex: 1;
}

.highlight-item:hover span {
    color: #00694d;
}

.our-story-content p:first-of-type::first-letter {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 0.8;
    color: #00694d;
    float: left;
    margin: 8px 12px 0 0;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 105, 77, 0.1);
    transition: transform 0.3s ease;
}

.our-story-content:hover p:first-of-type::first-letter {
    transform: scale(1.05);
}

/* ===================================
Why Choose Us About Section 
=================================== */
.why-choose-about {
    padding: 30px 0;
    background: #e8f7e4;
    position: relative;
    overflow: hidden;
}

.choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.choose-item {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 30px rgba(0, 105, 77, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.choose-item:hover::before {
    transform: scaleX(1);
}

.choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 1);
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.choose-icon i {
    font-size: 2.2rem;
    color: #00694d;
    transition: all 0.3s ease;
}

.choose-item:hover .choose-icon {
    background: rgba(0, 105, 77, 0.15);
    transform: scale(1.15) rotate(5deg);
}

.choose-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.choose-item:hover h3 {
    color: #00694d;
}

.choose-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* ===================================
Mission & Vision Section 
=================================== */
.mission-vision-section {
    padding: 30px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(0, 105, 77, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 105, 77, 0.18);
    background: rgba(255, 255, 255, 1);
}

.mission-card:hover::before,
.vision-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.card-icon i {
    font-size: 2rem;
    color: #00694d;
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    background: rgba(0, 105, 77, 0.15);
    transform: scale(1.1) rotate(10deg);
}

.mission-card h3,
.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 24px;
    flex-grow: 1;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li,
.vision-points li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #495057;
    position: relative;
    padding-left: 30px;
    transition: transform 0.2s ease;
}

.mission-points li:hover,
.vision-points li:hover {
    transform: translateX(5px);
}

.mission-points li::before,
.vision-points li::before {
    content: '➤';
    position: absolute;
    left: 0;
    color: #00694d;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.2s ease;
}

.mission-points li:hover::before,
.vision-points li:hover::before {
    background: rgba(0, 105, 77, 0.2);
    transform: scale(1.1);
}

/* ===================================
Our Commitment Section 
=================================== */
.our-commitment-section {
    padding: 30px 0;
    background: #e8f7e4;
    overflow: hidden;
}

.commitment-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.commitment-card {
    background: #ffffff;
    padding: 40px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 30px rgba(0, 105, 77, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.commitment-card:hover::before {
    transform: scaleX(1);
}

.commitment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 1);
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.commitment-icon i {
    font-size: 2.2rem;
    color: #00694d;
    transition: all 0.3s ease;
}

.commitment-card:hover .commitment-icon {
    background: rgba(0, 105, 77, 0.15);
    transform: scale(1.15) rotate(-5deg);
}

.commitment-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.commitment-card:hover h3 {
    color: #00694d;
}

.commitment-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* ===================================
RESPONSIVE - TABLET & MOBILE (768px and below)
=================================== */
@media (max-width: 768px) {

    .about-story-section,
    .why-choose-about,
    .mission-vision-section,
    .our-commitment-section {
        padding: 30px 0;
        overflow-x: hidden;
    }

    .story-text {
        padding: 25px;
        border-radius: 12px;
    }

    .story-text:hover {
        transform: translateY(-4px);
    }

    .choose-us-grid,
    .commitment-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .choose-item,
    .commitment-card {
        padding: 30px 18px;
    }

    .choose-item:hover,
    .commitment-card:hover {
        transform: translateY(-6px);
    }

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .mission-card:hover,
    .vision-card:hover {
        transform: translateY(-6px);
    }

    .choose-icon,
    .commitment-icon {
        width: 65px;
        height: 65px;
    }

    .choose-icon i,
    .commitment-icon i {
        font-size: 1.8rem;
    }

    .card-icon {
        width: 55px;
        height: 55px;
    }

    .card-icon i {
        font-size: 1.6rem;
    }

    .hero-highlights {
        margin-top: 20px;
        gap: 12px;
    }

    .highlight-item {
        padding: 12px 16px;
        gap: 12px;
    }

    .highlight-item:hover {
        transform: translateY(-2px);
    }

    .highlight-item i {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .highlight-item span {
        font-size: 0.9rem;
        min-width: 0;
    }

    .our-story-content p:first-of-type::first-letter {
        font-size: 2.8rem;
        margin: 6px 10px 0 0;
    }

    .choose-item:hover .choose-icon,
    .commitment-card:hover .commitment-icon {
        transform: scale(1.1) rotate(3deg);
    }

    .mission-card:hover .card-icon,
    .vision-card:hover .card-icon {
        transform: scale(1.05) rotate(5deg);
    }
}

/* ===================================
Property-Types Styles
=================================== */
.property-types-section {
    padding: 30px 0;
    background: #e8f7e4;
}

.property-type-card {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(0, 105, 77, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.property-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #00694d;
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.property-type-card:hover::before {
    transform: scaleX(1);
}

.property-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px 0 rgba(0, 105, 77, 0.18);
}

.type-icon {
    font-size: 2rem;
    color: #00694d;
    margin-bottom: 8px;
    transition: all 0.25s ease;
    line-height: 1;
}

.property-type-card:hover .type-icon {
    transform: scale(1.08);
}

.property-type-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #343a40;
    transition: color 0.25s ease;
}

.property-type-card:hover h3 {
    color: #00694d;
}

@media (max-width: 768px) {
    .property-types-section {
        padding: 25px 0;
    }

    .property-type-card {
        padding: 18px;
        min-height: 140px;
    }

    .type-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .property-type-card h3 {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
}

/* ===================================
Property & Project Card Styles
=================================== */
.featured-properties,
.recent-projects-section {
    padding: 30px 0;
}

.featured-properties {
    background: #e8f7e4;
}

.recent-projects-section {
    background: #ffffff;
}

.property-card,
.project-card {
    background: #ffffff;
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 105, 77, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.property-card:hover,
.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.15);
}

.property-image,
.project-image {
    height: 180px;
    background: #e8f7e4;
    overflow: hidden;
    position: relative;
}

.property-image img,
.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.property-card:hover .property-image img,
.project-card:hover .project-image img {
    transform: scale(1.04);
}

.property-info,
.project-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-info h4,
.project-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #343a40;
}

.property-info h4 a,
.project-info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.property-info h4 a:hover,
.project-info h3 a:hover {
    color: #00694d;
    text-decoration: none;
}

.property-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 8px;
}

.property-actions {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.property-actions .btn {
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0, 105, 77, 0.18);
    background: #ffffff;
    color: #00694d;
    transition: all 0.25s ease;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

.property-actions .btn:hover {
    background: #00694d;
    color: #ffffff;
    text-decoration: none;
}

.project-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Mobile Optimization for Property/Project Cards */
@media (max-width: 768px) {

    .featured-properties,
    .recent-projects-section {
        padding: 24px 0;
    }

    .property-image,
    .project-image {
        height: 160px;
    }

    .property-info,
    .project-info {
        padding: 10px;
    }

    .property-info h4,
    .project-info h3 {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .property-price {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .property-actions .btn {
        padding: 3px 6px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {

    .property-image,
    .project-image {
        height: 140px;
    }

    .property-info,
    .project-info {
        padding: 8px;
    }

    .property-info h4,
    .project-info h3 {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .property-actions {
        gap: 2px;
    }

    .property-actions .btn {
        padding: 2px 5px;
        font-size: 1rem;
        border-radius: 3px;
    }
}

@media (max-width: 480px) {

    .property-card,
    .project-card {
        margin-bottom: 16px;
    }

    .property-image,
    .project-image {
        height: 120px;
        /* Minimum height for very small screens */
    }

    .property-info h4,
    .project-info h3 {
        font-size: 0.8rem;
    }

    .property-price {
        font-size: 0.9rem;
    }
}

/* Grid Layout Improvements for Smaller Screens */
@media (max-width: 768px) {

    .row .col-md-4,
    .row .col-lg-4 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }

    .row {
        margin: 0 -5px;
    }

    .row>[class*="col-"] {
        padding: 0 5px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(45, 106, 79, 0.2), 
                    0 0 0 0 rgba(183, 228, 199, 0);
    }
    50% {
        box-shadow: 0 2px 15px rgba(45, 106, 79, 0.4), 
                    0 0 15px 3px rgba(183, 228, 199, 0.6);
    }
}

.approval-badge-blink {
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #e8f7e4 0%,
        #e8f7e4 40%,
        #d4f1d9 50%,
        #e8f7e4 60%,
        #e8f7e4 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite, gentleGlow 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Tooltip styling */
.tooltip-inner {
    max-width: 300px;
    text-align: left;
    padding: 10px 12px;
    background-color: #2d6a4f;
    font-size: 0.875rem;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #2d6a4f;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #2d6a4f;
}

.tooltip.bs-tooltip-left .tooltip-arrow::before {
    border-left-color: #2d6a4f;
}

.tooltip.bs-tooltip-right .tooltip-arrow::before {
    border-right-color: #2d6a4f;
}

/* ===================================
Premium Projects Section
=================================== */
.premium-projects-section {
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.premium-projects-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(232, 247, 228, 0.25) 0%, transparent 50%);
    z-index: 1;
}

.premium-projects-section .container {
    position: relative;
    z-index: 2;
}

/* ===================================
Premium Project Card (Enhanced)
=================================== */
.premium-project-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px 0 rgba(0, 105, 77, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 105, 77, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.premium-project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px 0 rgba(0, 105, 77, 0.18);
    border-color: rgba(0, 105, 77, 0.2);
}

.premium-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-project-card:hover::before {
    opacity: 1;
}

.premium-project-image {
    position: relative;
    height: 100%;
    min-height: 160px;
    overflow: hidden;
}

.premium-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.premium-project-card:hover .premium-project-image img {
    transform: scale(1.05);
}

.premium-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.premium-project-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.premium-project-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 10px;
    line-height: 1.3;
}

.premium-project-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.premium-project-content h4 a:hover {
    color: #00694d;
}

.premium-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.premium-location i {
    color: #00694d;
}

.premium-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.premium-features small {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #495057;
    gap: 4px;
}

.premium-features small i {
    color: #00694d;
    font-size: 0.85rem;
}

.premium-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #00694d;
    margin-top: auto;
}

.premium-actions {
    margin-top: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.premium-actions .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.premium-actions .btn-success {
    background: #00694d;
    border-color: #00694d;
    color: #fff;
}

.premium-actions .btn-outline-primary {
    border-color: rgba(0, 105, 77, 0.3);
    color: #00694d;
    background: transparent;
}

.premium-actions .btn-success:hover {
    background: #004d36;
    border-color: #004d36;
    color: #fff;
    transform: translateY(-1px);
}

.premium-actions .btn-outline-primary:hover {
    background: #00694d;
    border-color: #00694d;
    color: #fff;
    transform: translateY(-1px);
}

/* ===================================
Responsive Adjustments
=================================== */

@media (max-width: 768px) {
    .premium-projects-section {
        padding: 20px 0;
    }

    .premium-project-content {
        padding: 14px;
    }

    .premium-project-content h4 {
        font-size: 0.9rem;
    }

    .premium-features small {
        font-size: 0.7rem;
    }

    .premium-actions .btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .premium-project-content {
        padding: 12px;
    }

    .premium-actions {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 5px;
    }

    .premium-actions .btn {
        width: 100%;
    }
}

/* ===================================
Why Choose Us Section Styles
=================================== */
.why-choose-us {
    padding: 30px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    text-align: center;
    padding: 24px;
    background: #e8f7e4;
    border: 1px solid rgba(0, 105, 77, 0.05);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 105, 77, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 105, 77, 0.12);
    background: #ffffff;
}

.feature-icon {
    font-size: 2.5rem;
    color: #00694d;
    margin-bottom: 12px;
    transition: all 0.25s ease;
    line-height: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.08);
}

.feature-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #343a40;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
}

/* ===================================
Contact Page Styles 
=================================== */
.contact-section {
    padding: 30px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-glass-container {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 105, 77, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.35s ease;
    overflow: hidden;
}

.contact-glass-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 105, 77, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    background: #ffffff;
}

.contact-info-block,
.contact-form-wrapper {
    padding: 32px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 105, 77, 0.08);
    transition: all 0.25s ease;
}

.contact-info-block:hover,
.contact-form-wrapper:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.12);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: #00694d;
    background: rgba(0, 105, 77, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.25s ease;
    line-height: 1;
}

.contact-detail-item:hover i {
    transform: scale(1.05);
}

.contact-detail-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    color: #343a40;
}

.contact-detail-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6c757d;
    margin: 0;
}

.contact-phone-link {
    color: #00694d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.contact-phone-link:hover {
    color: #004d36;
    text-decoration: underline;
}

.contact-map {
    margin-top: 24px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.1);
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.25s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

#form-messages {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 0;
    }

    .contact-glass-container {
        padding: 32px;
        border-radius: 15px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .contact-info-block,
    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-detail-item {
        margin-bottom: 20px;
    }

    .contact-detail-item i {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

/* ===================================
General Button Styles
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s;
}

.btn:hover::before {
    left: 100%;
}

.btn-success {
    background: #00694d;
    color: white;
    border-color: #00694d;
    box-shadow: 0 3px 12px rgba(0, 105, 77, 0.25);
}

.btn-success:hover {
    background: #004d36;
    border-color: #004d36;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.35);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
    box-shadow: 0 3px 12px rgba(108, 117, 125, 0.25);
}

.btn-secondary:hover {
    background: #545b62;
    border-color: #545b62;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.35);
    color: white;
    text-decoration: none;
}

.btn-outline-secondary {
    border-color: #ced4da;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 4px 8px;
    font-size: 0.8rem;
}

/* ===================================
Call-to-Action (CTA) Section Styles
=================================== */
.cta-section {
    background: #e8f7e4;
    padding: 30px 0;
    text-align: center;
}

.cta-content {
    max-width: 1500px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #343a40;
}

.cta-section p {
    font-size: 1rem;
    line-height: 1.5;
    color: #6c757d;
    margin-bottom: 16px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 20px 0 rgba(0, 105, 77, 0.08);
    transition: all 0.25s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px 0 rgba(0, 105, 77, 0.12);
}

.contact-info h5 {
    color: #00694d;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
}

.contact-info i {
    color: #00694d;
}

/* ===================================
Badge Styles
=================================== */
.badge {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1.2;
    border-radius: 4px;
    padding: 4px 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge.bg-success {
    background: #00694d;
    color: white;
}

.badge.bg-approved {
    background: #28a745;
    color: white;
}

.badge.bg-info {
    background: #17a2b8;
    color: white;
}

.badge.bg-warning {
    background: #ffc107;
    color: #343a40;
}

/* ===================================
Utility & Helper Classes
=================================== */
.text-success {
    color: #00694d;
}

.text-white {
    color: #ffffff;
}

.bg-success {
    background-color: #00694d;
}

.bg-light {
    background: #e8f7e4;
}

.loading {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===================================
Scroll to Top Button Styles
=================================== */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00694d;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.visible {
    opacity: 0.9;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    opacity: 1;
    background: #004d36;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.3);
}

.scroll-to-top i {
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 70px;
        /* Adjusted for smaller mobile navbar */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===================================
Footer Styles 
=================================== */
#footer {
    background: #004d36;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-top {
    padding: 60px 0 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    text-decoration: none;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #00694d;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-top h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background: #00b377;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer-links ul li:first-child {
    padding-top: 0;
}

.footer-links ul i {
    padding-right: 8px;
    color: #00b377;
    font-size: 0.9rem;
    line-height: 1;
}

.footer-links ul a {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.5;
}

.footer-links ul a:hover {
    color: #ffffff;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-newsletter form {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 5px;
    display: flex;
    transition: all 0.3s ease;
}

.footer-newsletter form:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter form input[type="email"] {
    border: 0;
    background: transparent;
    padding: 8px;
    color: #ffffff;
    width: 100%;
    outline: none;
    line-height: 1.4;
}

.footer-newsletter form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter form input[type="submit"] {
    background: rgba(255, 255, 255, 0.15);
    border: 0;
    padding: 8px 20px;
    color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
}

.footer-newsletter form input[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.copyright-credits {
    padding: 16px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.5;
    background: #e8f7e4;
    color: #343a40;
    border-top: 1px solid rgba(0, 105, 77, 0.1);
}

.copyright-credits .copyright {
    margin-bottom: 8px;
}

.copyright-credits .credits {
    font-size: 0.85rem;
    line-height: 1.4;
}

.copyright-credits .credits a {
    color: #00694d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease, text-decoration 0.25s ease;
}

.copyright-credits .credits a:hover {
    color: #004d36;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .copyright-credits {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright-credits .copyright {
        margin-bottom: 0;
    }
}

/* ===================================
Privacy Policy Page Styles
=================================== */
.privacy-policy-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f7e4 100%);
    position: relative;
}

.privacy-policy-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 64px;
    box-shadow: 0 20px 60px rgba(0, 105, 77, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.privacy-policy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.policy-intro {
    margin-bottom: 64px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 105, 77, 0.06) 0%, rgba(0, 105, 77, 0.03) 100%);
    border-left: 6px solid #00694d;
    border-radius: 12px;
}

.policy-intro .lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 24px;
}

.policy-section {
    margin-bottom: 64px;
    padding: 30px 0;
}

.policy-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy-section h2 i {
    font-size: 1.8rem;
    background: rgba(0, 105, 77, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.info-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.info-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.usage-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.usage-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 32px;
    border-radius: 15px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 10px 30px rgba(0, 105, 77, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.usage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.usage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 105, 77, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #e8f7e4 100%);
}

.usage-item:hover::before {
    transform: scaleX(1);
}

.usage-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.usage-item h3 i {
    font-size: 1.6rem;
    color: #00694d;
    transition: transform 0.3s ease;
}

.usage-item:hover h3 i {
    transform: scale(1.1);
}

.sharing-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.sharing-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
}

.sharing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.sharing-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.security-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.security-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.security-item h3 i {
    color: #28a745;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.right-item {
    background: linear-gradient(135deg, #e8f7e4 0%, rgba(232, 247, 228, 0.6) 100%);
    padding: 32px;
    border-radius: 10px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 105, 77, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #e8f7e4 100%);
}

.right-item h3 {
    color: #00694d;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 12px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.policy-list li {
    padding: 12px 16px;
    padding-left: 48px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 105, 77, 0.08);
    border-radius: 5px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
}

.policy-list li:hover {
    background: rgba(232, 247, 228, 0.5);
    transform: translateX(5px);
    border-color: rgba(0, 105, 77, 0.15);
}

.policy-list li::before {
    content: '➤';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: bold;
    background: #00694d;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.sharing-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08) 0%, rgba(255, 193, 7, 0.04) 100%);
    border-left: 6px solid #fff1c6;
    padding: 32px;
    border-radius: 0 16px 16px 0;
    margin: 32px 0;
}

.policy-contact {
    background: linear-gradient(135deg, rgba(0, 105, 77, 0.04) 0%, rgba(0, 105, 77, 0.02) 100%);
    border-radius: 15px;
    padding: 48px;
    border: 2px solid rgba(0, 105, 77, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 32px 0;
}

.contact-method {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.contact-method h3 {
    color: #00694d;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

@media (max-width: 1200px) {

    .usage-categories,
    .sharing-categories,
    .security-measures,
    .rights-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 32px;
        border-radius: 12px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .policy-intro {
        padding: 32px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .info-categories {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .usage-item,
    .sharing-item,
    .security-item,
    .contact-method {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-container {
        padding: 24px;
    }

    .policy-intro {
        padding: 24px;
    }

    .policy-intro .lead {
        font-size: 1.1rem;
    }
}

/* ===================================
Terms & Conditions Page Styles
=================================== */
.terms-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f7e4 100%);
    position: relative;
}

.terms-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 64px;
    box-shadow: 0 20px 60px rgba(0, 105, 77, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-intro {
    margin-bottom: 64px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 105, 77, 0.06) 0%, rgba(0, 105, 77, 0.03) 100%);
    border-left: 6px solid #00694d;
    border-radius: 12px;
}

.terms-intro .lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.7;
    color: #2c3e50;
    margin-bottom: 24px;
}

.terms-section-block {
    margin-bottom: 64px;
    padding: 30px 0;
}

.terms-section-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.terms-section-block h2 i {
    font-size: 1.8rem;
    background: rgba(0, 105, 77, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acceptance-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.acceptance-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
}

.acceptance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.acceptance-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.services-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.service-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 32px;
    border-radius: 15px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 10px 30px rgba(0, 105, 77, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 105, 77, 0.15);
    background: linear-gradient(145deg, #ffffff 0%, #e8f7e4 100%);
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #2c3e50;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-item h3 i {
    font-size: 1.5rem;
    color: #00694d;
    transition: transform 0.3s ease;
}

.service-item:hover h3 i {
    transform: scale(1.1);
}

.responsibility-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.responsibility-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.responsibility-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.prohibited-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.prohibited-item {
    background: rgba(220, 53, 69, 0.05);
    border-left: 4px solid #dc3545;
    padding: 32px;
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}

.prohibited-item:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: translateX(5px);
}

.prohibited-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #dc3545;
    margin-bottom: 16px;
}

.prohibited-notice {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.08) 0%, rgba(220, 53, 69, 0.04) 100%);
    border-left: 6px solid #dc3545;
    padding: 32px;
    border-radius: 0 16px 16px 0;
    margin: 32px 0;
}

.ip-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.ip-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
}

.ip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.ip-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.disclaimer-item {
    background: rgba(255, 193, 7, 0.05);
    border-left: 4px solid #ffc107;
    padding: 32px;
    border-radius: 0 16px 16px 0;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.disclaimer-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #856404;
    margin-bottom: 16px;
}

.liability-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.liability-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
}

.liability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.liability-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.termination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.termination-item {
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(0, 105, 77, 0.1);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.termination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 105, 77, 0.12);
}

.termination-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #00694d;
    margin-bottom: 16px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.terms-list li {
    padding: 12px 16px;
    padding-left: 48px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 105, 77, 0.08);
    border-radius: 5px;
    margin-bottom: 8px;
    line-height: 1.6;
    color: #495057;
    transition: all 0.3s ease;
    position: relative;
}

.terms-list li:hover {
    background: rgba(232, 247, 228, 0.5);
    transform: translateX(5px);
    border-color: rgba(0, 105, 77, 0.15);
}

.terms-list li::before {
    content: '➤';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00694d;
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-contact {
    background: linear-gradient(135deg, rgba(0, 105, 77, 0.04) 0%, rgba(0, 105, 77, 0.02) 100%);
    border-radius: 15px;
    padding: 48px;
    border: 2px solid rgba(0, 105, 77, 0.1);
}

.response-time {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.08) 0%, rgba(23, 162, 184, 0.04) 100%);
    border-radius: 10px;
    border: 1px solid rgba(23, 162, 184, 0.15);
}

/* Responsive Design */
@media (max-width: 1200px) {

    .services-categories,
    .responsibility-categories,
    .prohibited-categories,
    .disclaimer-grid,
    .liability-items {
        grid-template-columns: 1fr;
    }

    .termination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .terms-container {
        padding: 32px;
        border-radius: 12px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .terms-intro {
        padding: 32px;
    }

    .terms-section-block h2 {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .acceptance-items,
    .ip-content {
        grid-template-columns: 1fr;
    }

    .termination-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .responsibility-item,
    .contact-method {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .terms-container {
        padding: 24px;
    }

    .terms-intro {
        padding: 24px;
    }

    .terms-intro .lead {
        font-size: 1.1rem;
    }
}

/* ===================================
Properties Page - Horizontal Layout (All Devices)
=================================== */

/* Header Search Bar - Unchanged */
.header-search-bar {
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
    padding: 16px 0;
    position: relative;
}

.header-search-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 105, 77, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.header-search-bar .container {
    position: relative;
    z-index: 2;
}

.header-search-bar .input-group {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(0, 105, 77, 0.08);
    border-radius: 6px;
    overflow: hidden;
}

.header-search-bar .form-control-lg {
    font-size: 1rem;
    padding: 12px 16px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 6px 0 0 6px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.25s ease;
    color: #343a40;
    font-weight: 500;
}

.header-search-bar .form-control-lg:focus {
    outline: none;
    border-color: #00694d;
    box-shadow: 0 0 0 2px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 1);
}

.header-search-bar .btn-lg {
    padding: 12px 20px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    background: #00694d;
    border-color: #00694d;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.header-search-bar .btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s;
}

.header-search-bar .btn-lg:hover::before {
    left: 100%;
}

.header-search-bar .btn-lg:hover {
    background: #004d36;
    border-color: #004d36;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.35);
}

/* Properties List Page Layout */
.property-list-page {
    background: #ffffff;
    min-height: calc(100vh - 200px);
    padding: 24px 0;
}

/* Filters Sidebar - Unchanged */
.filters-sidebar-wrapper {
    padding-right: 20px;
}

.filters-sidebar {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 105, 77, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filters-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    border-radius: 12px 12px 0 0;
}

.filters-sidebar:hover {
    box-shadow: 0 12px 40px rgba(0, 105, 77, 0.12);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.filters-header {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
    position: relative;
}

.filters-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 1px;
    background: #00694d;
}

.filters-sidebar .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #343a40;
    margin-bottom: 8px;
    display: block;
}

.filters-sidebar .form-select,
.filters-sidebar .form-control {
    padding: 10px 12px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 6px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.25s ease;
    color: #343a40;
    font-weight: 500;
}

.filters-sidebar .form-select:focus,
.filters-sidebar .form-control:focus {
    outline: none;
    border-color: #00694d;
    box-shadow: 0 0 0 2px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 1);
}

.filters-sidebar .d-flex.align-items-center input {
    flex: 1;
}

.filters-sidebar .d-flex.align-items-center span {
    padding: 0 8px;
    color: #6c757d;
    font-weight: 500;
}

.filters-sidebar .btn-success {
    background: #00694d;
    border-color: #00694d;
    box-shadow: 0 3px 12px rgba(0, 105, 77, 0.25);
    position: relative;
    overflow: hidden;
}

.filters-sidebar .btn-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s;
}

.filters-sidebar .btn-success:hover::before {
    left: 100%;
}

.filters-sidebar .btn-outline-secondary {
    border-color: rgba(0, 105, 77, 0.3);
    color: #00694d;
    background: transparent;
}

.filters-sidebar .btn-outline-secondary:hover {
    background: #00694d;
    border-color: #00694d;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 105, 77, 0.3);
}

/* Sticky Sidebar for Desktop */
@media (min-width: 992px) {
    .filters-sidebar-wrapper {
        position: sticky;
        top: 90px;
        height: calc(100vh - 110px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 105, 77, 0.3) transparent;
    }

    .filters-sidebar-wrapper::-webkit-scrollbar {
        width: 6px;
    }

    .filters-sidebar-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 105, 77, 0.05);
        border-radius: 3px;
    }

    .filters-sidebar-wrapper::-webkit-scrollbar-thumb {
        background: rgba(0, 105, 77, 0.3);
        border-radius: 3px;
        transition: all 0.2s ease;
    }

    .filters-sidebar-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 105, 77, 0.5);
    }
}

/* Results Header */
.results-info h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0;
}

.results-sorting .form-select-sm {
    padding: 6px 12px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    color: #343a40;
    min-width: 180px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.results-sorting .form-select-sm:focus {
    outline: none;
    border-color: #00694d;
    box-shadow: 0 0 0 2px rgba(0, 105, 77, 0.15);
}

/* ===================================
Property List Card (Premium Design - Ultra Compact)
=================================== */
.property-list-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px 0 rgba(0, 105, 77, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 105, 77, 0.1);
    position: relative;
}

.property-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px 0 rgba(0, 105, 77, 0.16);
    border-color: rgba(0, 105, 77, 0.2);
}

.property-list-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-list-card:hover::before {
    opacity: 1;
}

/* ===================================
Property Image Section
=================================== */
.property-list-image-link {
    display: block;
    text-decoration: none;
    height: 100%;
}

.property-list-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f8f9fa;
}

.property-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-list-card:hover .property-list-image img {
    transform: scale(1.06);
}

/* Property Badges */
.property-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.property-badges .badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    width: fit-content;
}

.property-badges .bg-success {
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
}

.property-badges .bg-info {
    background: linear-gradient(90deg, #0dcaf0 0%, #0a9fc7 100%);
}

/* ===================================
Property Content Section
=================================== */
.property-list-card .card-body {
    padding: 12px;
}

.property-list-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #343a40;
    line-height: 1.3;
    margin-bottom: 3px;
}

.property-list-card .card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.property-list-card .card-title a:hover {
    color: #00694d;
}

/* Location */
.property-list-card .text-muted.small {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 6px;
}

.property-list-card .text-muted.small i {
    color: #00694d;
    font-size: 0.85rem;
}

/* ===================================
Price Display
=================================== */
.property-price-container {
    margin-bottom: 6px;
    padding-bottom: 4px;
}

.property-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #00694d !important;
    line-height: 1.2;
}

.property-price-container .text-muted.small {
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 2px;
    margin-bottom: 0;
}

/* ===================================
Approvals Section (Enhanced)
=================================== */
.property-approvals-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 6px;
    padding-bottom: 4px;
}

.approval-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 7px;
    background: linear-gradient(135deg, #e8f7e4 0%, #d4f1e8 100%);
    color: #00694d;
    border-radius: 5px;
    border: 1px solid rgba(0, 105, 77, 0.2);
    transition: all 0.25s ease;
}

.approval-badge:hover {
    background: linear-gradient(135deg, #d4f1e8 0%, #c0ead9 100%);
    border-color: rgba(0, 105, 77, 0.3);
    transform: translateY(-1px);
}

.approval-badge i {
    color: #00694d;
    font-size: 0.75rem;
}

.rera-badge {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe9a6 100%);
    color: #856404;
    border-color: rgba(133, 100, 4, 0.2);
}

.rera-badge:hover {
    background: linear-gradient(135deg, #ffe9a6 0%, #ffd966 100%);
    border-color: rgba(133, 100, 4, 0.3);
}

.rera-badge i {
    color: #856404;
}

/* ===================================
Property Features Row
=================================== */
.property-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.8rem;
    color: #495057;
    padding-top: 6px;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 105, 77, 0.1) !important;
}

.property-features-row span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.property-features-row i {
    color: #00694d;
    font-size: 0.9rem;
}

/* ===================================
Action Buttons
=================================== */
.property-list-card .card-body > div:last-child {
    margin-top: auto;
    padding-top: 8px;
}

.property-list-card .btn {
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.property-list-card .btn i {
    font-size: 0.85rem;
}

.property-list-card .btn-success {
    background: linear-gradient(135deg, #00694d 0%, #00b377 100%);
    border: none;
    color: #fff;
}

.property-list-card .btn-success:hover {
    background: linear-gradient(135deg, #004d36 0%, #008f5c 100%);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 105, 77, 0.3);
}

.property-list-card .btn-primary {
    background: transparent;
    border: 2px solid rgba(0, 105, 77, 0.3);
    color: #00694d;
}

.property-list-card .btn-primary:hover {
    background: #00694d;
    border-color: #00694d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 105, 77, 0.25);
}

/* ===================================
Responsive Design - Tablet
=================================== */
@media (max-width: 991px) {
    .property-list-card .card-body {
        padding: 8px;
    }

    .property-list-card .card-title {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .property-price {
        font-size: 1.05rem;
    }

    .property-price-container {
        margin-bottom: 4px;
        padding-bottom: 2px;
    }

    .property-approvals-row {
        gap: 3px;
        margin-bottom: 4px;
        padding-bottom: 2px;
    }

    .property-features-row {
        gap: 5px;
        font-size: 0.75rem;
        padding-top: 4px;
        margin-top: 4px;
    }

    .property-list-card .card-body > div:last-child {
        padding-top: 6px;
    }

    .property-list-card .text-muted.small {
        margin-bottom: 4px;
    }

    .property-list-card .btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
}

/* ===================================
Responsive Design - Mobile
=================================== */
@media (max-width: 768px) {
    .property-list-card {
        margin-bottom: 12px;
    }

    .property-list-card .card-body {
        padding: 6px;
    }

    .property-list-card .card-title {
        font-size: 0.85rem;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .property-price {
        font-size: 1rem;
    }

    .property-price-container {
        margin-bottom: 3px;
        padding-bottom: 2px;
    }

    .property-approvals-row {
        gap: 3px;
        margin-bottom: 3px;
        padding-bottom: 2px;
    }

    .property-features-row {
        gap: 4px;
        font-size: 0.7rem;
        padding-top: 3px;
        margin-top: 3px;
    }

    .property-features-row span {
        gap: 2px;
    }

    .property-features-row i {
        font-size: 0.75rem;
    }

    .approval-badge {
        font-size: 0.6rem;
        padding: 2px 5px;
        gap: 2px;
    }

    .approval-badge i {
        font-size: 0.65rem;
    }

    .property-list-card .btn {
        padding: 5px 7px;
        font-size: 0.7rem;
    }

    .property-list-card .card-body > div:last-child {
        padding-top: 5px;
    }

    .property-list-card .text-muted.small {
        margin-bottom: 3px;
        font-size: 0.75rem;
    }

    .property-badges {
        top: 8px;
        left: 8px;
        gap: 4px;
    }

    .property-badges .badge {
        font-size: 0.6rem;
        padding: 2px 6px;
    }
}

/* ===================================
Animation Classes (Optional)
=================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-list-card[data-aos="fade-up"] {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
Print Styles
=================================== */
@media print {
    .property-list-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .property-list-card .btn {
        display: none;
    }

    .property-list-card:hover {
        transform: none;
    }
}

/* ===================================================================
   PAGINATION
   =================================================================== */
.pagination-wrapper {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 105, 77, 0.1);
}

.pagination .page-link {
    color: #00694d;
    border-color: rgba(0, 105, 77, 0.15);
    padding: 10px 15px;
    margin: 0 3px;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.pagination .page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s;
}

.pagination .page-link:hover::before {
    left: 100%;
}

.pagination .page-link:hover {
    background-color: rgba(0, 105, 77, 0.1);
    border-color: #00694d;
    color: #004d36;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 105, 77, 0.15);
}

.pagination .page-item.active .page-link {
    background-color: #00694d;
    border-color: #00694d;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 105, 77, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: rgba(0, 105, 77, 0.15);
    opacity: 0.6;
}

/* ===================================================================
   PROPERTY DETAILS SECTION
   =================================================================== */
.property-details-section {
    padding: 50px 0;
    background: #f8f9fa;
}

/* Gallery & Carousel */
.property-gallery-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 105, 77, 0.08);
    margin-bottom: 30px;
}

.property-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.property-main-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f8f9fa;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel Controls - Consolidated */
.property-badges-detail {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-badges-detail .badge {
    font-size: 11px;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.image-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.btn-image-action,
.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #00694d;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-image-action:hover,
.carousel-btn:hover {
    background: #00694d;
    color: white;
    transform: scale(1.1);
}

.btn-image-action.favorited {
    background: #00694d;
    color: white;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 5;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

.layout-section {
    padding: 15px;
    background: #f8f9fa;
}

.layout-section .btn {
    font-weight: 600;
}

/* Property Header Info */
.property-header-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 105, 77, 0.06);
}

.property-title-section {
    margin-bottom: 20px;
}

.property-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #00694d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.property-location-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 15px;
}

.property-location-detail i {
    color: #00694d;
}

.property-price-section {
    display: flex;
    align-items: baseline;
    gap: 15px;
    flex-wrap: wrap;
}

.property-main-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00694d;
    margin: 0;
}

.price-per-sqft {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

/* Quick Features */
.property-quick-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding-top: 20px;
    border-top: 2px solid #e8f7e4;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #343a40;
    font-weight: 500;
}

.feature-item i {
    color: #00694d;
    font-size: 1.1rem;
}

/* Property Detailed Info */
.property-detailed-info,
.property-amenities-section,
.property-description-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 12px rgba(0, 105, 77, 0.06);
}

.property-detailed-info h3,
.property-amenities-section h3,
.property-description-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00694d;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e8f7e4;
}

.property-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Info Cards */
.info-card {
    background: #e8f7e4;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.15);
}

.info-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #00694d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
    flex: 1;
}

.info-value {
    font-size: 0.95rem;
    color: #343a40;
    font-weight: 600;
    flex: 1;
    text-align: right;
}

/* Amenities */
.amenities-grid {
    display: grid;
    gap: 20px;
}

.amenity-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #e8f7e4;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.amenity-item:hover {
    background: #00694d;
    color: white;
    transform: translateX(5px);
    border-color: #004d36;
}

.amenity-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 105, 77, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    background: rgba(255, 255, 255, 0.2);
}

.amenity-icon i {
    color: #00694d;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.amenity-item:hover .amenity-icon i {
    color: white;
}

/* Property Description */
.property-description-section p {
    color: #343a40;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 15px;
}

.property-highlights {
    margin-top: 30px;
    padding: 25px;
    background: #e8f7e4;
    border-radius: 10px;
}

.property-highlights h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00694d;
    margin-bottom: 15px;
}

.highlights-grid {
    display: grid;
    gap: 12px;
}

.highlight-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #343a40;
    font-weight: 500;
}

.highlight-point i {
    color: #00694d;
    font-size: 1.1rem;
}

/* ===================================================================
   SIDEBAR STYLES
   =================================================================== */
.property-sidebar {
    position: sticky;
    top: 90px;
}

/* Contact Seller Card */
.contact-seller-card {
    background: #ffffff;
    border: 2px solid #00694d;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 105, 77, 0.12);
    transition: all 0.3s ease;
}

.contact-seller-card:hover {
    box-shadow: 0 8px 30px rgba(0, 105, 77, 0.2);
    transform: translateY(-3px);
}

.contact-seller-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    color: #00694d;
}

.contact-seller-card p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
}

.contact-actions-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-contact-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-contact-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 105, 77, 0.3);
}

.contact-info-divider {
    margin: 20px 0;
}

.contact-info-divider hr {
    border: 0;
    border-top: 1px solid rgba(0, 105, 77, 0.2);
}

.contact-benefits {
    display: grid;
    gap: 10px;
    background: #e8f7e4;
    padding: 15px;
    border-radius: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #343a40;
    font-weight: 500;
}

.benefit-item i {
    font-size: 1rem;
    color: #00694d;
}

/* EMI Calculator */
.emi-calculator-card,
.property-downloads-card,
.similar-properties-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 105, 77, 0.08);
    border: 1px solid rgba(0, 105, 77, 0.1);
}

.emi-calculator-card h4,
.property-downloads-card h4,
.similar-properties-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #00694d;
    margin-bottom: 20px;
}

.calculator-form .form-group {
    margin-bottom: 15px;
}

.calculator-form label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 5px;
    display: block;
}

.calculator-form .form-control,
.otp-step .form-control {
    border: 1px solid rgba(0, 105, 77, 0.2);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.calculator-form .form-control:focus,
.otp-step .form-control:focus,
.filters-sidebar .form-control:focus,
.filters-sidebar .form-select:focus,
.header-search-bar .form-control:focus {
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.1);
    outline: none;
}

.emi-result {
    margin-top: 20px;
    padding: 20px;
    background: #e8f7e4;
    border-radius: 8px;
}

.emi-result .result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
}

.emi-result .result-item:last-child {
    border-bottom: none;
}

.emi-result .result-item span {
    font-size: 0.9rem;
    color: #6c757d;
}

.emi-result .result-item strong {
    font-size: 1rem;
    color: #00694d;
    font-weight: 700;
}

/* Downloads & Similar Properties */
.download-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 105, 77, 0.3);
}

.similar-properties-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.similar-property-item {
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
    padding-bottom: 15px;
}

.similar-property-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.similar-property-link {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.similar-property-link:hover {
    opacity: 0.8;
}

.similar-property-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.similar-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-info {
    flex: 1;
}

.similar-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 5px;
    line-height: 1.3;
}

.similar-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 5px;
}

.similar-location {
    font-size: 0.8rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 3px;
}

.similar-info .badge-sm {
    font-size: 0.7rem;
    padding: 3px 8px;
    margin-top: 5px;
}


/* ===================================================================
   MODAL OTP - COMPACT WITH TIMER IN BUTTON (MISSING)
   =================================================================== */
.modal-otp-redesigned {
    --otp-primary: #00694d;
    --otp-primary-hover: #004d36;
    --otp-secondary: #00b377;
    --otp-light-bg: #e8f7e4;
    --otp-dark-text: #343a40;
    --otp-border: #d4e8de;
}

.modal-dialog-otp {
    width: 400px;
    max-width: 95vw;
    margin: 1.75rem auto;
    /* Centers horizontally */
    display: flex;
    align-items: center;
    /* Centers vertically */
    min-height: calc(100% - 3.5rem);
}

.modal-content-otp {
    border: none;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 105, 77, 0.15);
    overflow: hidden;
}

.modal-header-otp {
    background: #e8f7e4;
    color: #00694d;
    border: none;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 2px solid #d4e8de;
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.modal-icon-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00694d 0%, #004d36 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.modal-header-text {
    flex: 1;
    min-width: 0;
}

.modal-title-otp {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #00694d;
}

.modal-subtitle-otp {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #00694d;
    opacity: 0.8;
}

.btn-close-otp {
    background: rgba(0, 105, 77, 0.1);
    border: none;
    color: #00694d;
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 14px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.btn-close-otp:hover {
    background: rgba(0, 105, 77, 0.2);
    transform: rotate(90deg);
}

.modal-body-otp {
    padding: 24px 20px;
    height: 360px;
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
    align-items: center;
}

.modal-body-otp::-webkit-scrollbar {
    width: 5px;
}

.modal-body-otp::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body-otp::-webkit-scrollbar-thumb {
    background: #e8f7e4;
    border-radius: 10px;
}

.modal-body-otp::-webkit-scrollbar-thumb:hover {
    background: #d4e8de;
}

.otp-step-content {
    text-align: center;
    width: 100%;
    /* Full width */
    max-width: 350px;
    /* Max width for better appearance */
    margin: 0 auto;
    /* Centers the content block */
}

.step-visual {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 107, 77, 0.1), rgba(0, 179, 119, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #00694d;
    margin: 0 auto 16px;
    animation: stepIconBounce 0.6s ease;
}

@keyframes stepIconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.step-title {
    font-size: 17px;
    font-weight: 700;
    color: #00694d;
    margin: 0 0 6px 0;
    font-family: 'Poppins', sans-serif;
}

.step-description {
    font-size: 12px;
    color: #6c757d;
    margin: 0 0 20px 0;
}

.otp-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.otp-form-group {
    position: relative;
}

.otp-input-field {
    width: 100%;
    padding: 11px 13px;
    font-size: 14px;
    border: 2px solid #e8f7e4;
    border-radius: 10px;
    background: #f9f9f9;
    color: #343a40;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}

.otp-input-field:focus {
    outline: none;
    border-color: #00694d;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 107, 77, 0.1);
}

.form-hint {
    display: block;
    font-size: 11px;
    color: #6c757d;
    margin-top: 4px;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-bottom: 16px;
}

.btn-otp {
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
}

.btn-otp-primary {
    background: linear-gradient(135deg, #00694d 0%, #004d36 100%);
    color: white;
}

.btn-otp-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #004d36 0%, #003328 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 107, 77, 0.25);
}

.btn-otp-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-otp-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-otp-secondary {
    background: #e8f7e4;
    color: #00694d;
    position: relative;
}

.btn-otp-secondary:hover:not(:disabled) {
    background: #d4e8de;
    transform: translateY(-2px);
}

.btn-otp-secondary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-otp-secondary i {
    animation: hourglass-rotate 2s linear infinite;
}

.btn-otp-secondary:disabled i {
    animation: hourglass-rotate 2s linear infinite;
}

.btn-otp-secondary:not(:disabled) i {
    animation: none;
}

@keyframes hourglass-rotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }
}

#resendBtnText {
    font-size: 13px;
}

.otp-button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.otp-alert-container {
    margin-top: 12px;
}

.otp-alert {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    margin-bottom: 8px;
    animation: alertSlideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===================================================================
   EMAIL OTP LOGIN MODAL
   =================================================================== */
#emailLoginModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 105, 77, 0.15);
}

#emailLoginModal .modal-header {
    padding: 25px 25px 15px;
    border-bottom: none;
}

#emailLoginModal .modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #00694d;
}

#emailLoginModal .modal-body {
    padding: 0 30px 30px;
}

#emailLoginModal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Alert Container */
#alertContainer {
    margin-bottom: 20px;
}

#alertContainer .alert {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-bottom: 0;
    border: none;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
}

/* OTP Steps */
.otp-step {
    display: none;
    animation: fadeInStep 0.4s ease;
}

.otp-step.active {
    display: block;
}

.otp-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, #00694d, #00b377);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.3);
}

.otp-step .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
}

.input-group {
    border-radius: 10px;
    overflow: hidden;
}

.input-group-text {
    background: #e8f7e4;
    border: 1px solid rgba(0, 105, 77, 0.2);
    border-right: none;
    color: #00694d;
    padding: 0 15px;
    font-size: 1.1rem;
}

.input-group .form-control {
    border-left: none;
}

.otp-step .form-control-lg {
    padding: 14px 18px;
    font-size: 1.05rem;
}

/* OTP Input */
.otp-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-digit-input {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00694d;
    border: 2px solid rgba(0, 105, 77, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    background: white;
}

.otp-digit-input:focus {
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
    outline: none;
    transform: scale(1.05);
}

.otp-digit-input:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
}

/* Modal Buttons */
.otp-step .btn {
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.otp-step .btn-success {
    background: linear-gradient(135deg, #00694d, #00b377);
    color: white;
}

.otp-step .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 105, 77, 0.3);
}

.otp-step .btn-success:active {
    transform: translateY(0);
}

.otp-step .btn-success:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.otp-step .btn-outline-secondary {
    background: transparent;
    color: #6c757d;
    border: 2px solid #e0e0e0;
}

.otp-step .btn-outline-secondary:hover {
    background: #f8f9fa;
    border-color: #00694d;
    color: #00694d;
}

.otp-step .btn-link {
    color: #00694d;
    text-decoration: none;
    font-weight: 600;
}

.otp-step .btn-link:hover {
    text-decoration: underline;
    color: #004d36;
}

.otp-step .btn i {
    margin-right: 6px;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

#displayEmail {
    color: #00694d;
    font-weight: 700;
}

#resendOtpBtn {
    position: relative;
}

#resendOtpBtn.disabled,
#resendOtpBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#profileStep .text-muted {
    color: #6c757d !important;
}

/* ===================================================================
   RESPONSE & LAYOUT MODALS
   =================================================================== */
#responseModal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

#responseModal .modal-body {
    padding: 50px 40px;
    position: relative;
}

.response-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.response-icon-wrapper.success .icon-circle {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
    animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.response-icon-wrapper.success .icon-circle i {
    animation: checkmark 0.6s ease-in-out 0.3s both;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(-45deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.response-icon-wrapper.error .icon-circle {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
    animation: shake 0.5s ease-in-out, pulse-error 2s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

@keyframes pulse-error {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(220, 53, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.response-icon-wrapper.warning .icon-circle {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 193, 7, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.response-icon-wrapper.info .icon-circle {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.5);
    animation: pulse-info 2s ease-in-out infinite;
}

@keyframes pulse-info {
    0% {
        box-shadow: 0 0 0 0 rgba(23, 162, 184, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(23, 162, 184, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(23, 162, 184, 0);
    }
}

.response-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    animation: slideInFromTop 0.5s ease-out 0.2s both;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.response-message {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

.response-actions {
    animation: fadeInUp 0.5s ease-out 0.6s both;
}

#responseModal .btn {
    border-radius: 50px;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#responseModal .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

#responseModal .btn:active {
    transform: translateY(-1px);
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    z-index: 1;
    animation: confetti-fall 3s linear forwards;
    opacity: 0;
}

@keyframes confetti-fall {
    0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }

    100% {
        opacity: 0;
        transform: translateY(600px) rotate(720deg);
    }
}

#additionalActions {
    animation: fadeIn 0.5s ease-out 0.8s both;
}

#additionalActions a {
    color: #00694d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

#additionalActions a:hover {
    color: #004d36;
    text-decoration: underline;
}

#layoutModal .modal-header {
    background: #00694d;
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px 25px;
}

#layoutModal .modal-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

#layoutModal .btn-close {
    filter: brightness(0) invert(1);
}

#layoutModal .modal-body {
    padding: 30px;
}

#layoutModal .modal-body img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===================================================================
   ANIMATIONS
   =================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS
   =================================================================== */
@media (max-width: 991.98px) {
    .filters-sidebar-wrapper {
        margin-bottom: 24px;
        padding-right: 0;
    }

    .filters-sidebar {
        padding: 20px;
        margin-top: 12px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .property-sidebar {
        position: static;
        margin-top: 30px;
    }

    .property-main-carousel {
        height: 350px;
    }

    .otp-input-group {
        gap: 8px;
    }

    .otp-digit-input {
        width: 40px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-search-bar {
        padding: 12px 0;
    }

    .header-search-bar .form-control-lg,
    .header-search-bar .btn-lg {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .property-list-card .col-md-4 {
        flex: 0 0 40%;
        max-width: 40%;
    }

    .property-list-card .col-md-8 {
        flex: 0 0 60%;
        max-width: 60%;
    }

    .property-list-image {
        min-height: 180px;
    }

    .property-list-card .card-body {
        padding: 12px;
        min-height: 180px;
    }

    .property-list-card .card-title {
        font-size: 1rem;
    }

    .property-price {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .property-features-row {
        gap: 6px;
        font-size: 0.65rem;
    }

    .property-features-row span {
        padding: 2px 3px;
    }

    .results-info h5 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .results-sorting .form-select-sm {
        min-width: 140px;
        font-size: 0.8rem;
    }

    .property-main-carousel {
        height: 250px;
    }

    .property-info-grid {
        grid-template-columns: 1fr;
    }

    .property-main-price {
        font-size: 1.5rem;
    }

    .property-quick-features {
        gap: 15px;
    }

    .amenity-list {
        grid-template-columns: 1fr;
    }

    #emailLoginModal .modal-body {
        padding: 0 20px 25px;
    }

    .otp-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }

    .otp-input-group {
        gap: 6px;
    }

    .otp-digit-input {
        width: 38px;
        height: 48px;
        font-size: 1.2rem;
    }

    .property-header-info,
    .property-detailed-info,
    .property-amenities-section,
    .property-description-section,
    .contact-seller-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {

    .property-list-page,
    .property-details-section {
        padding: 16px 0;
    }

    .property-list-card .col-md-4 {
        flex: 0 0 45%;
        max-width: 45%;
    }

    .property-list-card .col-md-8 {
        flex: 0 0 55%;
        max-width: 55%;
    }

    .property-list-image {
        min-height: 160px;
    }

    .property-list-card .card-body {
        padding: 10px;
        min-height: 160px;
    }

    .property-list-card .card-title {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .property-price {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .property-list-card .description {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 8px;
        -webkit-line-clamp: 2;
    }

    .property-features-row {
        gap: 4px;
        font-size: 0.6rem;
    }

    .property-features-row span {
        font-size: 0.6rem;
        padding: 1px 2px;
    }

    .property-approvals-row {
        gap: 4px;
        padding-top: 5px;
        margin-top: 5px;
        margin-bottom: 6px;
    }

    .approval-badge,
    .rera-badge {
        font-size: 0.55rem;
        padding: 1px 3px;
        gap: 2px;
    }

    .approval-badge i,
    .rera-badge i {
        font-size: 0.5rem;
    }

    .property-list-card .btn-sm {
        padding: 4px 6px;
        font-size: 0.65rem;
        margin-bottom: 2px;
    }

    .d-flex.gap-2 {
        flex-direction: column;
        gap: 4px;
    }

    .pagination .page-link {
        padding: 6px 8px;
        font-size: 0.75rem;
        margin: 0 1px;
    }

    .carousel-btn,
    .btn-image-action {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .property-main-title {
        font-size: 1.3rem;
    }

    .property-main-price {
        font-size: 1.3rem;
    }

    #emailLoginModal .modal-title {
        font-size: 1.2rem;
    }

    .otp-input-group {
        gap: 5px;
    }

    .otp-digit-input {
        width: 35px;
        height: 45px;
        font-size: 1.1rem;
    }

    .modal-dialog-otp,
    .modal-dialog-thank-you-compact {
        width: 100%;
        max-width: none;
        margin: 15px 10px;
    }

    .modal-body-otp {
        height: 340px;
        max-height: 340px;
        padding: 20px 16px;
    }

    .modal-header-otp {
        padding: 16px;
    }

    .modal-header-content {
        gap: 10px;
    }

    .modal-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .modal-title-otp {
        font-size: 18px;
    }

    .modal-subtitle-otp {
        font-size: 11px;
    }

    .btn-close-otp {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 12px;
    }

    .step-visual {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 14px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 11px;
    }

    .otp-input-container {
        gap: 5px;
    }

    .otp-digit-input {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .modal-body-thank-you-compact {
        padding: 28px 18px 22px;
    }

    .success-icon-compact {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .thank-you-title-compact {
        font-size: 19px;
    }

    .thank-you-message-compact {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .property-list-card .col-md-4 {
        flex: 0 0 42%;
        max-width: 42%;
    }

    .property-list-card .col-md-8 {
        flex: 0 0 58%;
        max-width: 58%;
    }

    .property-list-image {
        min-height: 140px;
    }

    .property-list-card .card-body {
        padding: 8px;
        min-height: 140px;
    }

    .property-list-card .card-title {
        font-size: 0.85rem;
    }

    .property-price {
        font-size: 0.95rem;
    }

    .property-list-card .description {
        font-size: 0.7rem;
        -webkit-line-clamp: 1;
    }

    .property-features-row span {
        font-size: 0.55rem;
    }

    .property-badges .badge {
        font-size: 0.5rem;
        padding: 2px 4px;
    }
}

/* ===================================================================
   PRINT STYLES
   =================================================================== */
@media print {

    .filters-sidebar-wrapper,
    .header-search-bar,
    .pagination-wrapper {
        display: none;
    }

    .property-list-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
        margin-bottom: 20px;
    }

    .property-list-card .btn {
        display: none;
    }
}

/* ===================================
   1. Login Page Section
=================================== */
.login-page-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.login-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.login-page-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

/* ===================================
   2. Login Container
=================================== */
.login-page-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 105, 77, 0.08);
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out;
}

.login-page-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 70px rgba(0, 105, 77, 0.12);
}

/* ===================================
   3. Header Section
=================================== */
.login-page-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 8px;
    position: relative;
}

.login-page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    border-radius: 2px;
}

.login-page-header p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    margin-top: 16px;
}

/* ===================================
   4. Form Groups & Floating Labels
=================================== */
.login-form-group {
    position: relative;
    margin-bottom: 20px;
}

.login-form-floating {
    position: relative;
    margin-bottom: 0;
}

.login-form-floating label {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.login-form-floating .form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    height: 55px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: #ffffff;
    padding: 1rem 0.75rem;
    padding-right: 45px;
    /* Space for password toggle */
}

.login-form-floating .form-control:focus {
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
    background: #ffffff;
    outline: none;
}

/* ===================================
   5. Validation States
=================================== */
.login-form-floating .form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.15);
}

.login-form-floating .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.validation-feedback {
    display: block;
    width: 100%;
    margin-top: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 500;
    min-height: 18px;
    transition: all 0.3s ease;
}

.validation-feedback.invalid-feedback {
    color: #dc3545;
}

.validation-feedback.valid-feedback {
    color: #28a745;
}

.validation-feedback.empty {
    opacity: 0;
    visibility: hidden;
}

.validation-feedback.show {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   6. Password Toggle
=================================== */
.login-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
    transition: color 0.25s ease;
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-password-toggle:hover {
    color: #00694d;
}

.login-password-toggle:focus {
    outline: none;
    color: #00694d;
}

/* ===================================
   7. Form Controls
=================================== */
.login-form-check-input:checked {
    background-color: #00694d;
    border-color: #00694d;
}

.login-form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
}

.login-forgot-link {
    color: #00694d;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.login-forgot-link:hover {
    color: #004d36;
    text-decoration: underline;
}

/* ===================================
   8. Submit Button
=================================== */
.login-btn-submit {
    background: #00694d;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 105, 77, 0.25);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.login-btn-submit:hover:not(:disabled)::before {
    left: 100%;
}

.login-btn-submit:hover:not(:disabled) {
    background: #004d36;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.4);
    color: white;
}

.login-btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
    background: #6c757d;
}

.login-loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.login-btn-submit.login-loading .login-loading-spinner {
    display: inline-block;
}

.login-btn-submit.login-loading .login-btn-text {
    display: none;
}

.login-btn-submit.login-loading .login-loading-text {
    display: inline;
}

.login-loading-text {
    display: none;
}

/* ===================================
   9. Register Section
=================================== */
.login-register-section {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.login-register-link {
    color: #00694d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.login-register-link:hover {
    color: #004d36;
    text-decoration: underline;
}

/* ===================================
   10. Alert Messages
=================================== */
.login-alert {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 18px;
    margin-bottom: 15px;
    animation: slideInDown 0.3s ease-out;
    display: flex;
    align-items: center;
}

.login-alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.login-alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ===================================
   11. Keyframe Animations
=================================== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   12. Responsive Media Queries
=================================== */
@media (max-width: 992px) {
    .login-page-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .login-page-section {
        min-height: auto;
    }

    .login-page-container {
        padding: 30px;
        max-width: 100%;
        margin: 0 15px;
    }

    .login-page-header h1 {
        font-size: 1.8rem;
    }

    .login-form-floating .form-control {
        height: 60px;
        font-size: 1rem;
        padding: 1rem;
        padding-right: 50px;
    }

    .login-password-toggle {
        right: 15px;
        font-size: 16px;
        width: 22px;
        height: 22px;
    }

    .login-btn-submit {
        padding: 16px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .login-page-container {
        padding: 25px 20px;
        margin: 0 10px;
    }

    .login-page-header h1 {
        font-size: 1.6rem;
    }

    .login-page-header p {
        font-size: 0.9rem;
    }

    .login-form-floating .form-control {
        height: 55px;
        font-size: 0.95rem;
        padding: 0.9rem 0.8rem;
        padding-right: 45px;
    }

    .login-password-toggle {
        right: 12px;
        font-size: 14px;
        width: 20px;
        height: 20px;
    }

    .login-btn-submit {
        padding: 14px;
        font-size: 1rem;
    }

    .validation-feedback {
        font-size: 0.75rem;
    }

    .login-register-section {
        margin-top: 20px;
        padding-top: 20px;
    }
}

/* ===================================
   1. Registration Page
=================================== */
.register-page-section {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.register-page-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1;
}

.register-page-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
}

/* ===================================
   2. Registration Container
=================================== */
.register-page-container {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 105, 77, 0.08);
    width: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   3. Left Column (Intro & Features)
=================================== */
.register-intro-section {
    padding-right: 20px;
}

.register-intro-icon {
    width: 80px;
    height: 80px;
    background: #00694d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 105, 77, 0.3);
}

.register-intro-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 15px;
}

.register-intro-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.register-features-list {
    padding: 0;
}

.register-feature-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.register-feature-item:hover {
    background: rgba(0, 105, 77, 0.08);
    border-color: rgba(0, 105, 77, 0.2);
    transform: translateX(5px);
}

.register-feature-item i {
    font-size: 1.2rem;
    color: #00694d;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.register-feature-text {
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

/* ===================================
   4. Right Column (Forms)
=================================== */
.register-form-section {
    padding-left: 30px;
}

.register-page-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 8px;
    position: relative;
}

.register-page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    border-radius: 2px;
}

.register-page-header p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    margin-top: 16px;
}

/* --- General Form Styles --- */
.register-section {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    pointer-events: none;
    transform: translateY(10px);
}

.register-section.show {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: all;
    transform: translateY(0);
}

.register-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.register-form-group {
    position: relative;
    margin-bottom: 0;
}

.register-form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

/* --- Input Fields & Validation --- */
.register-form-floating {
    position: relative;
    margin-bottom: 0;
}

.register-form-floating label {
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
}

.register-form-floating .form-control,
.register-form-floating .form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
    height: 55px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: #ffffff;
    padding: 1rem 0.75rem;
}

.register-form-floating .form-control:focus,
.register-form-floating .form-select:focus {
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
    background: #ffffff;
    outline: none;
}

/* Corrected: Style to make space for the password toggle icon */
.register-password-field {
    padding-right: 45px !important;
}

.register-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    z-index: 10;
    transition: color 0.25s ease;
    font-size: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-password-toggle:hover {
    color: #00694d;
}

.register-form-floating .form-select {
    padding-top: 1.8rem;
    padding-bottom: 0.5rem;
}

.register-form-floating .form-control.is-invalid,
.register-form-floating .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15);
}

.register-validation {
    display: block;
    width: 100%;
    margin-top: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 500;
    min-height: 18px;
    transition: all 0.3s ease;
}

.register-validation.invalid-feedback.show {
    color: #dc3545;
}

.register-validation.empty {
    opacity: 0;
    visibility: hidden;
}

.register-validation.show {
    opacity: 1;
    visibility: visible;
}


/* --- Seller Type Selection --- */
.register-seller-type {
    display: none;
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #f8f9fa;
    animation: slideDown 0.3s ease-out;
}

.register-seller-type.show {
    display: block;
}

.register-seller-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.register-seller-card {
    border: 2px solid #ced4da;
    border-radius: 8px;
    padding: 12px 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.register-seller-card:hover {
    border-color: #00b377;
    background: rgba(0, 105, 77, 0.05);
}

.register-seller-card.selected {
    border-color: #00694d;
    background: rgba(0, 105, 77, 0.1);
    box-shadow: 0 4px 10px rgba(0, 105, 77, 0.1);
}

.register-seller-card i {
    font-size: 1.2rem;
    color: #00694d;
    margin-bottom: 6px;
}

.register-seller-card span {
    display: block;
    color: #00694d;
    font-weight: 600;
    font-size: 0.85rem;
}

.register-seller-card input[type="radio"] {
    display: none;
}

/* --- Password Strength Indicator --- */
.register-password-strength {
    margin-top: 6px;
    margin-bottom: 8px;
}

.register-password-strength-bar {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.register-password-strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.4s ease, background-color 0.4s ease;
    border-radius: 2px;
}

.register-password-strength-fill.weak {
    background: #dc3545;
    width: 25%;
}

.register-password-strength-fill.fair {
    background: #fd7e14;
    width: 50%;
}

.register-password-strength-fill.good {
    background: #ffc107;
    width: 75%;
}

.register-password-strength-fill.strong {
    background: #28a745;
    width: 100%;
}

.register-password-reqs {
    font-size: 0.75rem;
    color: #6c757d;
}

.register-password-reqs ul {
    margin: 4px 0;
    padding-left: 12px;
}

.register-password-reqs li {
    margin: 1px 0;
    transition: color 0.3s ease;
}

.register-password-reqs li.valid {
    color: #28a745;
}

.register-password-reqs li.invalid {
    color: #dc3545;
}

/* --- Terms and Conditions --- */
.register-terms {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
}

.register-terms-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.register-terms-check input[type="checkbox"] {
    margin-top: 2px;
    transform: scale(1.1);
    accent-color: #00694d;
}

.register-terms-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #495057;
}

.register-terms-text a {
    color: #00694d;
    text-decoration: none;
    font-weight: 500;
}

.register-terms-text a:hover {
    text-decoration: underline;
}


/* --- Submit Button & Loading State --- */
.register-btn-submit {
    background: #00694d;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 105, 77, 0.25);
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.register-btn-submit:hover:not(:disabled)::before {
    left: 100%;
}

.register-btn-submit:hover:not(:disabled) {
    background: #004d36;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.4);
    color: white;
}

.register-btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
    background: #6c757d;
}

.register-loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.register-btn-submit.register-loading .register-loading-spinner {
    display: inline-block;
}

.register-btn-submit.register-loading .register-btn-text {
    display: none;
}

.register-btn-submit.register-loading .register-loading-text {
    display: inline;
}

.register-loading-text {
    display: none;
}

/* ===================================
   5. OTP Verification Section
=================================== */
.register-otp-section {
    text-align: center;
}

.register-otp-icon {
    width: 80px;
    height: 80px;
    background: #00694d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 105, 77, 0.3);
    animation: pulse 2s infinite;
}

.register-otp-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.register-otp-group {
    margin: 30px 0;
}

.register-otp-input {
    width: 100%;
    max-width: 300px;
    height: 60px;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    border: 2px solid #ced4da;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.register-otp-input:focus {
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
    outline: none;
}

.register-otp-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.register-back-btn,
.register-otp-resend-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 46px;
    border: 2px solid;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.register-back-btn {
    border-color: #6c757d;
    color: #6c757d;
}

.register-back-btn:hover:not(:disabled) {
    background: #6c757d;
    color: white;
}

.register-otp-resend-btn {
    border-color: #00694d;
    color: #00694d;
}

.register-otp-resend-btn:hover:not(:disabled) {
    background: #00694d;
    color: white;
}

.register-otp-resend-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #6c757d;
}

.register-otp-cooldown {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 10px;
    text-align: center;
}

/* ===================================
   6. Thank You / Success Section
=================================== */
.register-thanks {
    text-align: center;
}

.register-thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: successPulse 2s ease-in-out;
}

.register-thanks-title {
    font-size: 2.2rem;
    color: #00694d;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.register-thanks-desc {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}


/* ===================================
   7. Alert & Helper Classes
=================================== */
.register-login-section {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.register-login-link {
    color: #00694d;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
}

.register-login-link:hover {
    color: #004d36;
    text-decoration: underline;
}

.register-alert {
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 12px 18px;
    margin-bottom: 15px;
    animation: slideInDown 0.3s ease-out;
    display: flex;
    align-items: center;
}

.register-alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.register-alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ===================================
   8. Keyframe Animations
=================================== */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        max-height: 200px;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* ===================================
   9. Responsive Media Queries
=================================== */
@media (max-width: 992px) {
    .register-page-container {
        padding: 30px;
    }

    .register-form-section {
        padding-left: 0;
        margin-top: 40px;
    }

    .register-intro-section {
        text-align: center;
        padding-right: 0;
    }

    .register-intro-icon {
        margin: 0 auto 20px;
    }

    .register-page-header {
        margin-bottom: 20px;
    }

    .register-page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .register-page-section {
        padding: 40px 10px;
    }

    .register-page-container {
        padding: 30px;
    }

    .register-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .register-form-group.full-width {
        margin-bottom: 15px;
    }

    .register-seller-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .register-page-header h1 {
        font-size: 1.5rem;
    }

    .register-btn-submit,
    .register-back-btn,
    .register-otp-resend-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .register-page-container {
        padding: 15px;
    }

    .register-intro-section h3 {
        font-size: 1.5rem;
    }

    .register-intro-description {
        font-size: 0.9rem;
    }

    .register-feature-item {
        padding: 12px 15px;
    }

    .register-feature-text {
        font-size: 0.9rem;
    }

}

/* ===============================================================================
   ADD PROPERTY FORM - BASE STYLES
   Core styling for the property form layout and structure
=============================================================================== */

.add-property-section {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 140px);
}

.property-form-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.property-form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 105, 77, 0.08);
}

/* ===============================================================================
   PROPERTY FORM HEADER STYLES
   Header section with title, icon and progress indicator
=============================================================================== */

.property-form-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 105, 77, 0.08);
}

.property-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.property-header-icon i {
    font-size: 2.5rem;
    color: #00694d;
}

.property-header-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 16px;
}

.property-header-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================================================================
   FORM SECTION STYLES
   Individual form sections with headers and bodies
=============================================================================== */

.property-form-section {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 105, 77, 0.05);
}

.property-section-header {
    background: rgba(0, 105, 77, 0.05);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 105, 77, 0.1);
}

.property-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #00694d;
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-section-title i {
    font-size: 1.3rem;
}

.property-section-body {
    padding: 30px;
}

.property-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* ===============================================================================
   FORM INPUT STYLES
   All input fields, labels, and form controls
=============================================================================== */

.property-form-group {
    display: flex;
    flex-direction: column;
}

.property-form-label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.property-required {
    color: #dc3545;
}

.property-form-control {
    padding: 12px 16px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.95);
    width: 100%;
    box-sizing: border-box;
}

.property-form-control:focus {
    outline: none;
    border-color: #00694d;
    box-shadow: 0 0 0 3px rgba(0, 105, 77, 0.15);
    background: rgba(255, 255, 255, 1);
}

.property-form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
}

.property-input-unit {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.property-input-unit input {
    border: none;
    border-radius: 0;
    min-width: 0;
}

.property-input-unit select {
    border: none;
    border-left: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 0;
    min-width: 120px;
    max-width: 150px;
}

.property-form-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 6px;
}

/* ===============================================================================
   VALIDATION & ERROR STYLES
   Field validation, error messages, and highlighting
=============================================================================== */

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 6px;
    display: none;
}

.invalid-feedback.show {
    display: block;
}

.highlight-field {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25) !important;
    transition: all 0.3s ease !important;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.property-field-hidden {
    display: none !important;
}

/* ===============================================================================
   CHECKBOX & SELECTION STYLES
   Road sizes, amenities, and other checkbox groups
=============================================================================== */

.selection-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.selection-buttons .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    border: 1px solid #00694d;
    background: transparent;
    color: #00694d;
    cursor: pointer;
    transition: all 0.25s ease;
}

.selection-buttons .btn:hover {
    background: #00694d;
    color: white;
    transform: translateY(-1px);
}

.selection-buttons .btn-outline-success {
    border-color: #28a745;
    color: #28a745;
}

.selection-buttons .btn-outline-success:hover {
    background: #28a745;
    color: white;
}

.selection-buttons .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.selection-buttons .btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

.property-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    scrollbar-width: thin;
    scrollbar-color: #00694d transparent;
}

.property-checkbox-group::-webkit-scrollbar {
    width: 6px;
}

.property-checkbox-group::-webkit-scrollbar-track {
    background: transparent;
}

.property-checkbox-group::-webkit-scrollbar-thumb {
    background: #00694d;
    border-radius: 3px;
}

.property-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(0, 105, 77, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    scrollbar-width: thin;
    scrollbar-color: #00694d transparent;
}

.property-amenities-grid::-webkit-scrollbar {
    width: 6px;
}

.property-amenities-grid::-webkit-scrollbar-track {
    background: transparent;
}

.property-amenities-grid::-webkit-scrollbar-thumb {
    background: #00694d;
    border-radius: 3px;
}

.property-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    min-height: 36px;
}

.property-checkbox-item:hover {
    background: rgba(0, 105, 77, 0.05);
    border-color: rgba(0, 105, 77, 0.2);
    transform: translateY(-1px);
}

.property-checkbox-item input[type="checkbox"] {
    accent-color: #00694d;
    flex-shrink: 0;
}

.property-checkbox-item span {
    flex: 1;
    line-height: 1.2;
}

/* ===============================================================================
   AI CONTENT GENERATION STYLES
   AI generation buttons and status indicators
=============================================================================== */

.ai-generation-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.ai-generation-container .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s ease;
}

.ai-generation-container .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ai-generation-container .btn-outline-primary:hover {
    background: #007bff;
    border-color: #007bff;
    color: white;
}

.ai-generation-container .btn-outline-success:hover {
    background: #28a745;
    border-color: #28a745;
    color: white;
}

.ai-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 5px;
}

.ai-status.generating {
    color: #007bff;
}

.ai-status.success {
    color: #28a745;
}

.ai-status i {
    font-size: 0.9rem;
}

/* ===============================================================================
   FORM PROGRESS INDICATOR STYLES
   Progress bar and percentage display in header
=============================================================================== */

.form-progress-container {
    max-width: 400px;
    margin: 0 auto;
}

.form-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 105, 77, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00694d 0%, #00b377 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.form-progress-text {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* ===============================================================================
   FILE UPLOAD PROGRESS STYLES
   Individual file upload progress bars and status
=============================================================================== */

.upload-progress-container {
    margin-top: 10px;
    display: none;
    padding: 10px;
    background: rgba(0, 105, 77, 0.05);
    border-radius: 6px;
    border-left: 4px solid #00694d;
}

.upload-progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.upload-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    transition: width 0.3s ease;
    width: 0%;
}

.upload-progress-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #6c757d;
}

.upload-status {
    display: flex;
    align-items: center;
    gap: 5px;
}

.upload-status i {
    font-size: 0.9rem;
}

/* ===============================================================================
   IMAGE PREVIEW STYLES
   Preview display for uploaded images and files
=============================================================================== */

.image-preview-container {
    margin-top: 15px;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.image-preview-item {
    border: 2px solid rgba(0, 105, 77, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.image-preview-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.image-preview-info {
    padding: 8px;
    background: #f8f9fa;
}

.image-preview-info small {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-preview {
    padding: 10px;
    background: rgba(0, 105, 77, 0.05);
    border-radius: 6px;
    border-left: 4px solid #00694d;
}

/* ===============================================================================
   FORM SUBMISSION PROGRESS STYLES
   Top progress bar during form submission
=============================================================================== */

.submission-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 105, 77, 0.95);
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.submission-progress.show {
    transform: translateY(0);
}

.submission-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.submission-progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 0%;
}

.submission-progress-text {
    font-weight: 600;
    margin-bottom: 5px;
}

.submission-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.submission-step {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.submission-step.active {
    opacity: 1;
}

.submission-step i {
    font-size: 0.9rem;
}

/* ===============================================================================
   BUTTON STYLES
   Form buttons including submit, AI generation, and selection buttons
=============================================================================== */

.property-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    position: relative;
}

.property-btn-submit {
    background: #00694d;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 105, 77, 0.3);
}

.property-btn-submit:hover:not(:disabled) {
    background: #004d36;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.4);
}

.property-btn-submit:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.property-submit-section {
    margin-top: 40px;
    text-align: center;
}

/* ===============================================================================
   LOADING STATES STYLES
   Spinner animations and loading button states
=============================================================================== */

.property-loading-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: propertySpinner 1s linear infinite;
    margin-right: 8px;
}

.property-btn-submit.property-loading .property-loading-spinner {
    display: inline-block;
}

.property-btn-submit.property-loading .property-btn-text {
    display: none;
}

.property-btn-submit.property-loading .property-loading-text {
    display: inline;
}

.property-loading-text {
    display: none;
}

@keyframes propertySpinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===============================================================================
   ALERT & NOTIFICATION STYLES
   Success, error, and info message styling
=============================================================================== */

.property-alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.property-alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.property-alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.property-alert-info {
    background: rgba(23, 162, 184, 0.1);
    color: #0c5460;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.temporary-message {
    animation: slideInDown 0.3s ease-out;
}

.temporary-message.fade-out {
    animation: slideOutUp 0.3s ease-in;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* ===============================================================================
   TERMS & CONDITIONS STYLES
   Checkbox and agreement section styling
=============================================================================== */

.property-terms-section {
    margin: 40px 0;
    padding: 24px;
    background: rgba(0, 105, 77, 0.05);
    border: 1px solid rgba(0, 105, 77, 0.1);
    border-radius: 8px;
}

.property-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
}

.property-terms-checkbox {
    margin-top: 2px;
    accent-color: #00694d;
    transform: scale(1.2);
}

.property-terms-link {
    color: #00694d;
    text-decoration: none;
    font-weight: 600;
}

.property-terms-link:hover {
    text-decoration: underline;
}

/* ===============================================================================
   SUCCESS MODAL STYLES (THANK YOU POPUP)
   Complete styling for success modal with animations
=============================================================================== */
.property-success-modal {
    z-index: 1060;
}

.property-success-modal .modal-backdrop {
    z-index: 1055;
    background-color: rgba(0, 0, 0, 0.5);
}

.property-success-modal .modal-dialog {
    margin: 1.75rem auto;
    max-width: 500px;
    width: 90%;
}

.property-success-modal .modal-content.property-success-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.property-success-modal .property-success-body {
    padding: 2.5rem 2rem;
}

.property-success-modal .success-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3);
    animation: successBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.property-success-modal .success-icon i {
    font-size: 3rem;
    color: white;
}

.property-success-modal .success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #00694d;
    margin-bottom: 1rem;
    line-height: 1.3;
    animation: slideInUp 0.6s ease-out 0.2s both;
}

.property-success-modal .success-message {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: slideInUp 0.6s ease-out 0.3s both;
}

.property-success-modal .success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.property-success-modal .success-actions .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    min-width: 160px;
}

.property-success-modal .success-actions .btn-success {
    background: linear-gradient(135deg, #00694d 0%, #00b377 100%);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.3);
}

.property-success-modal .success-actions .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 105, 77, 0.45);
    background: linear-gradient(135deg, #004d36 0%, #009966 100%);
}

.property-success-modal .success-actions .btn-outline-secondary {
    border: 2px solid #e9ecef;
    color: #6c757d;
    background: transparent;
}

.property-success-modal .success-actions .btn-outline-secondary:hover {
    background: #00694d;
    border-color: #00694d;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 105, 77, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
    .property-success-modal .property-success-body {
        padding: 2rem 1.5rem;
    }

    .property-success-modal .success-icon {
        width: 70px;
        height: 70px;
    }

    .property-success-modal .success-icon i {
        font-size: 2.25rem;
    }

    .property-success-modal .success-title {
        font-size: 1.5rem;
    }

    .property-success-modal .success-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .property-success-modal .success-actions .btn {
        min-width: 100%;
    }
}

/* Animations */
@keyframes successBounce {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    70% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================================================
   MOBILE ALERT MODAL STYLES
   Mobile number detection popup styling
=============================================================================== */

.mobile-alert-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.mobile-alert-modal.show {
    opacity: 1;
    visibility: visible;
}

.mobile-alert-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.mobile-alert-modal.show .mobile-alert-content {
    transform: scale(1);
}

.mobile-alert-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-alert-header h5 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #343a40;
}

.mobile-alert-body {
    padding: 20px;
}

.detected-numbers {
    font-family: monospace;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 4px;
    color: #dc3545;
    font-weight: 600;
}

.mobile-alert-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

/* ===============================================================================
   DATA RESTORE NOTIFICATION STYLES
   Saved form data restore notification
=============================================================================== */

.data-restore-notification {
    margin-bottom: 20px;
}

/* ===============================================================================
   CHARACTER COUNTER STYLES
   Character count display for text fields
=============================================================================== */

.character-counter {
    display: block;
    text-align: right;
    margin-top: 4px;
    font-size: 0.8rem;
    color: #6c757d;
}

.character-counter.text-warning {
    color: #ffc107 !important;
}

.character-counter.text-danger {
    color: #dc3545 !important;
}

/* ===============================================================================
   CONDITIONAL FIELDS ANIMATION STYLES
   Animation for show/hide conditional fields
=============================================================================== */

.property-conditional-fields {
    transition: all 0.3s ease;
}

.property-fields-visible {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================================================
   MOBILE RESPONSIVE STYLES
   Responsive design for tablets and mobile devices
=============================================================================== */

@media (max-width: 768px) {
    .property-form-container {
        padding: 20px;
    }

    .property-section-body {
        padding: 20px;
    }

    .property-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .property-form-control {
        font-size: 16px;
        padding: 10px 12px;
    }

    .property-input-unit {
        grid-template-columns: 1fr 100px;
    }

    .property-input-unit input {
        min-width: 0;
        overflow: hidden;
    }

    .property-input-unit select {
        max-width: 100px;
        font-size: 0.85rem;
    }

    .property-checkbox-group,
    .property-amenities-grid {
        grid-template-columns: 1fr;
        max-height: 150px;
        padding: 8px;
    }

    .property-checkbox-item {
        font-size: 0.8rem;
        padding: 5px 8px;
        min-height: 32px;
    }

    .selection-buttons {
        justify-content: center;
    }

    .selection-buttons .btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }

    .property-header-title {
        font-size: 1.8rem;
    }

    .property-header-subtitle {
        font-size: 1rem;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }

    .modal-dialog {
        max-width: 95%;
        margin: 0.5rem auto;
    }

    .submission-steps {
        gap: 10px;
    }

    .submission-step {
        font-size: 0.8rem;
    }

    .form-progress-container {
        margin: 15px 0;
    }

    .form-progress-text {
        font-size: 0.85rem;
    }

    .ai-generation-container {
        justify-content: center;
    }

    .ai-generation-container .btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}

@media (max-width: 480px) {
    .property-form-container {
        padding: 15px;
    }

    .property-section-body {
        padding: 15px;
    }

    .property-input-unit {
        grid-template-columns: 1fr 80px;
    }

    .property-input-unit select {
        max-width: 80px;
        font-size: 0.8rem;
    }

    .property-checkbox-item {
        font-size: 0.75rem;
        padding: 4px 6px;
        min-height: 30px;
    }

    .property-section-title {
        font-size: 1.2rem;
    }

    .property-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===============================================================================
   PRINT STYLES
   Styles for printing the form
=============================================================================== */

@media print {

    .property-loading-spinner,
    .submission-progress,
    .modal,
    .selection-buttons,
    .ai-generation-container {
        display: none !important;
    }
}