/**
 * BDS Group Lalru - Main Stylesheet
 * Premium Real Estate Website Styles
 */

/* ===== Variables ===== */
:root {
    --primary-color: #0F4C81;
    --secondary-color: #1ABC9C;
    --accent-color: #F5A623;
    --background-color: #F8F9FA;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --dark: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

/* Dark Mode Variables */
.dark-mode {
    --primary-color: #1ABC9C;
    --secondary-color: #0F4C81;
    --background-color: #1a1a2e;
    --text-color: #e4e4e4;
    --text-light: #b8b8b8;
    --white: #16213e;
    --dark: #ffffff;
    --gray-100: #1a1a2e;
    --gray-200: #16213e;
    --gray-300: #0f3460;
    --gray-400: #1a1a2e;
    --gray-500: #e94560;
    --gray-600: #e4e4e4;
    --gray-700: #b8b8b8;
    --gray-800: #666666;
    --gray-900: #333333;
    
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    --box-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
}
/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: var(--transition);
    animation: fadeOutPreloader 0.5s ease 2s forwards;
}

@keyframes fadeOutPreloader {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 5px;
}

.loader-text p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.top-bar-social a {
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.dark-mode-toggle {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dark-mode-toggle:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ===== Navigation ===== */
.navbar {
    background: var(--white);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.navbar-brand .brand-text {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Breadcrumb ===== */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 0;
    margin-bottom: 40px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--white);
    opacity: 0.8;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    color: var(--white);
    opacity: 1;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
    opacity: 0.6;
}

/* ===== Buttons ===== */
.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
}

.btn-accent:hover {
    background: #e8941c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Cards ===== */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Glassmorphism ===== */
.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
}

.dark-mode .glassmorphism {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Forms ===== */
.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius-sm);
    padding: 12px 15px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 129, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 8px;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    color: var(--white);
}

.newsletter-text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-text p {
    font-size: 16px;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 500px;
}

.newsletter-form .form-control {
    border: none;
    padding: 15px 20px;
}

.newsletter-form .btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 30px;
}

.newsletter-form .btn:hover {
    background: #e8941c;
}

.form-message {
    margin-top: 10px;
    font-size: 14px;
}

.form-message.success {
    color: #28a745;
}

.form-message.error {
    color: #dc3545;
}

/* ===== Footer ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.footer-logo h3::after {
    display: none;
}

.footer-description {
    color: var(--gray-400);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-properties li {
    margin-bottom: 15px;
}

.footer-properties a {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-properties img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.footer-properties .property-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--white);
}

.footer-properties .property-info p {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-400);
    font-size: 14px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--gray-400);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact .contact-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0;
}

.footer-contact .contact-action {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 11px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    transition: var(--transition);
}

.footer-contact .contact-action i {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    margin: 0;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 15px;
}

.footer-contact .contact-action span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.footer-contact .contact-action small {
    display: block;
    margin-bottom: 2px;
    color: var(--gray-400);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-contact .contact-action-call i { background: #1677c8; }
.footer-contact .contact-action-whatsapp i { background: #25d366; }

.footer-contact .contact-action:hover {
    transform: translateY(-3px);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(0, 13, 255, 0.07);
}

@media (max-width: 420px) {
    .footer-contact .contact-action-row { grid-template-columns: 1fr; }
}

.working-hours {
    display: flex;
    gap: 15px;
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-800);
}

.working-hours i {
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-bottom {
    background: var(--gray-800);
    padding: 20px 0;
    margin-top: 40px;
}

.copyright {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-400);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* ===== Floating WhatsApp ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 60px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: var(--box-shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
}

.floating-whatsapp span {
    font-size: 14px;
}

/* ===== Sticky Call Mobile ===== */
.sticky-call-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--box-shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.sticky-call-mobile i {
    display: block;
    line-height: 1;
}

.sticky-call-mobile:hover {
    transform: scale(1.1);
    color: var(--white);
}

/* ===== Flash Messages ===== */
.flash-message {
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.flash-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.flash-message.warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.flash-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}






















.nav-call-box {
    position: relative;
}

.nav-call-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    animation: pulse 2s infinite;
    min-width: 120px;
    text-decoration: none;
}

.nav-call-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--box-shadow-lg);
    color: var(--white);
}

.contact-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.9;
}

.contact-number {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(15, 76, 129, 0.3);
    }
    50% {
        box-shadow: 0 5px 25px rgba(15, 76, 129, 0.5);
    }
}
/* ===== Responsive ===== */

/* Tablet and below (991px and below) */
@media (max-width: 991px) {
    .navbar-buttons {
        display: none;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .sticky-call-mobile {
        display: flex;
    }
    
    .floating-whatsapp {
        bottom: 80px;
        left: 20px;
        padding: 12px 18px;
        font-size: 16px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .search-section {
        margin-top: -40px;
        padding: 30px 20px;
    }
    
    .search-form {
        flex-wrap: wrap;
    }
    
    .search-form .form-group {
        flex: 1 1 45%;
        min-width: 200px;
    }
    
    .search-form .btn {
        width: 100%;
        margin-top: 15px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-price {
        font-size: 20px;
    }
    
    .property-title {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .gallery-masonry {
        column-count: 2;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .google-map {
        height: 300px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
    
    .navbar-brand .logo {
        height: 35px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 500px;
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .search-section {
        margin-top: -30px;
        padding: 25px 15px;
        border-radius: var(--border-radius-sm);
    }
    
    .search-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-form .form-group {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .search-form .btn {
        margin-top: 0;
        height: 50px;
    }
    
    .search-form label {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .property-card {
        margin-bottom: 20px;
    }
    
    .property-image {
        height: 180px;
    }
    
    .property-content {
        padding: 15px;
    }
    
    .property-price {
        font-size: 18px;
    }
    
    .property-title {
        font-size: 15px;
    }
    
    .property-location {
        font-size: 13px;
    }
    
    .property-features {
        gap: 10px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .property-features span {
        font-size: 12px;
    }
    
    .property-footer {
        flex-direction: column;
        gap: 8px;
    }
    
    .property-footer .btn {
        width: 100%;
        text-align: center;
    }
    
    .property-footer .btn-whatsapp {
        flex: 1;
    }
    
    .statistics-section {
        padding: 50px 0;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .service-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-image {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 16px;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
    
    .gallery-masonry {
        column-count: 1;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .contact-info-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info-icon {
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .google-map {
        height: 250px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-widget h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .copyright {
        font-size: 13px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
        font-size: 13px;
    }
    
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-text h2 {
        font-size: 22px;
    }
    
    .newsletter-text p {
        font-size: 14px;
    }
    
    .newsletter-form .input-group {
        max-width: 100%;
    }
    
    .breadcrumb-section {
        padding: 30px 0;
    }
    
    .breadcrumb {
        font-size: 13px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .btn-sm {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
}

/* Small Mobile (575px and below) */
@media (max-width: 575px) {
    .navbar-brand {
        font-size: 16px;
    }
    
    .navbar-brand .logo {
        height: 30px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .property-image {
        height: 160px;
    }
    
    .property-price {
        font-size: 16px;
    }
    
    .property-title {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-icon {
        font-size: 32px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .blog-image {
        height: 140px;
    }
    
    .newsletter-content {
        text-align: center;
    }
    
    .newsletter-form .input-group {
        margin: 0 auto;
    }
    
    .floating-whatsapp {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .floating-whatsapp span {
        display: none;
    }
    
    .floating-whatsapp i {
        font-size: 20px;
    }
    
    .sticky-call-mobile {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 20px;
    }
    
    .hero-section {
        padding: 80px 0 50px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .property-badge,
    .property-type {
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .property-features span {
        font-size: 11px;
    }
    
    .stat-item {
        padding: 15px 10px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .service-card {
        padding: 20px 15px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .blog-content {
        padding: 12px;
    }
    
    .contact-form {
        padding: 20px 12px;
    }
    
    .search-section {
        padding: 20px 12px;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-section {
        min-height: 400px;
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* ===== Touch Optimizations ===== */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch targets for mobile devices */
    .btn,
    .navbar-nav .nav-link,
    .property-actions button,
    .footer-social a,
    .dark-mode-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .card:hover,
    .property-card:hover,
    .service-card:hover,
    .blog-card:hover {
        transform: none;
    }
    
    /* Improve tap feedback */
    .btn:active,
    .property-actions button:active,
    .footer-social a:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Better tap spacing for navigation */
    .navbar-nav .nav-link {
        padding: 15px 0;
    }
    
    /* Larger touch targets for property actions */
    .property-actions button {
        width: 44px;
        height: 44px;
    }
    
    /* Improve form input touch targets */
    .form-control,
    .form-select {
        min-height: 48px;
        padding: 12px 15px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Better tap targets for floating buttons */
    .floating-whatsapp,
    .sticky-call-mobile,
    .back-to-top {
        min-width: 56px;
        min-height: 56px;
    }
}

/* ===== iOS Safari Specific Fixes ===== */
@supports (-webkit-touch-callout: none) {
    /* Fix iOS viewport height */
    .hero-section {
        height: -webkit-fill-available;
        min-height: 100vh;
    }
    
    /* Prevent iOS elastic scrolling on fixed elements */
    .navbar {
        position: sticky;
    }
    
    /* Fix iOS input background */
    input,
    select,
    textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }
    
    /* Fix iOS button styling */
    .btn {
        -webkit-appearance: none;
        appearance: none;
    }
}

/* ===== High DPI/Retina Display Optimizations ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Crisper text rendering */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Better image rendering */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* ===== Safe Area for Notched Devices ===== */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(15px, env(safe-area-inset-left));
        padding-right: max(15px, env(safe-area-inset-right));
    }
    
    .footer-bottom {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .floating-whatsapp {
        left: max(30px, env(safe-area-inset-left));
    }
    
    .sticky-call-mobile {
        right: max(20px, env(safe-area-inset-right));
    }
    
    .back-to-top {
        right: max(30px, env(safe-area-inset-right));
    }
}

/* ===== Floating Contact Buttons ===== */
/* Keep both contact actions visible on every page and gently moving. */
.floating-whatsapp,
.sticky-call-mobile {
    display: flex;
    position: fixed;
    bottom: 30px;
    z-index: 1100;
    animation: floating-contact-bob 2.4s ease-in-out infinite;
    will-change: transform;
}

.floating-whatsapp {
    left: 30px;
}

.sticky-call-mobile {
    right: 30px;
    width: 58px;
    height: 58px;
    font-size: 25px;
    animation-delay: -1.2s;
}

.floating-whatsapp:hover,
.sticky-call-mobile:hover {
    animation-play-state: paused;
    transform: scale(1.08);
}

@keyframes floating-contact-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@media (max-width: 575px) {
    .floating-whatsapp,
    .sticky-call-mobile {
        bottom: 18px;
    }

    .floating-whatsapp {
        left: auto;
        right: 16px;
        bottom: 88px;
        padding: 12px;
    }

    .sticky-call-mobile {
        right: 16px;
        width: 54px;
        height: 54px;
        font-size: 23px;
    }
}

/* On phones and compact browser windows, keep both actions together on the right. */
@media (max-width: 991px) {
    .floating-whatsapp {
        left: auto !important;
        right: 20px !important;
        bottom: 92px !important;
    }

    .sticky-call-mobile {
        right: 20px !important;
        bottom: 20px !important;
    }
}

@media (max-width: 575px) {
    .floating-whatsapp {
        right: 16px !important;
        bottom: 86px !important;
    }

    .sticky-call-mobile {
        right: 16px !important;
        bottom: 16px !important;
    }
}

/* ===== Reduced Motion Preference ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-buttons {
        animation: none;
    }

    /* Keep the explicitly requested floating contact animation enabled. */
    .floating-whatsapp,
    .sticky-call-mobile {
        animation: floating-contact-bob 2.4s ease-in-out infinite !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    .top-bar,
    .navbar,
    .floating-whatsapp,
    .sticky-call-mobile,
    .back-to-top,
    .hero-section,
    .search-section,
    .newsletter-section,
    .footer-bottom {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .section {
        padding: 20px 0;
        page-break-inside: avoid;
    }
    
    .property-card,
    .service-card,
    .blog-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ===== Property Cards ===== */
.property-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    z-index: 2;
}

.property-badge.featured {
    background: var(--accent-color);
}

.property-badge:not(.featured) {
    background: var(--secondary-color);
}

.property-type {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    z-index: 2;
}

.property-actions {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.property-actions button {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-actions button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.property-content {
    padding: 20px;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.property-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.property-title a:hover {
    color: var(--primary-color);
}

.property-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

.property-features span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features i {
    color: var(--primary-color);
}

.property-footer {
    display: flex;
    gap: 10px;
}

.property-footer .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.property-footer .btn-whatsapp {
    flex: 0 0 auto;
    padding: 10px 15px;
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: relative;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.8), rgba(26, 188, 156, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Search Section ===== */
.search-section {
    background: var(--white);
    padding: 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
}

.search-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.search-form .form-group {
    flex: 1;
}

.search-form .btn {
    padding: 12px 30px;
    height: 48px;
}

/* ===== Home Action Panel ===== */
.action-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 22px;
}

.action-panel-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: var(--border-radius-sm);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.action-panel-enquiry {
    background: linear-gradient(135deg, var(--primary-color), #167aa8);
}

.action-panel-sell {
    background: linear-gradient(135deg, var(--secondary-color), #16a085);
}

.action-panel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}

.action-panel-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-size: 22px;
}

.action-panel-card strong,
.action-panel-card small {
    display: block;
}

.action-panel-card strong {
    margin-bottom: 4px;
    font-size: 20px;
}

.action-panel-card small {
    opacity: 0.9;
    font-size: 14px;
}

.action-panel-link {
    margin-left: auto;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.action-panel-link:hover {
    color: var(--primary-color);
    background: var(--white);
}

@media (max-width: 767px) {
    .action-panel {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .action-panel-card {
        padding: 18px;
    }
}

/* ===== Statistics Section ===== */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== Service Cards ===== */
.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Testimonial Cards ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-property {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== Blog Cards ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

/* ===== Gallery Masonry ===== */
.gallery-masonry {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 32px;
}

/* ===== Contact Form ===== */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-info-content p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Google Map ===== */
.google-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== Property Detail Page ===== */
.property-detail-gallery {
    margin-bottom: 30px;
}

.property-detail-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.property-detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.property-amenities {
    margin-bottom: 30px;
}

.amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gray-100);
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
}

.amenity-item i {
    color: var(--primary-color);
}

/* ===== Admin Styles ===== */
.admin-sidebar {
    background: var(--gray-900);
    min-height: 100vh;
    padding: 20px 0;
}

.admin-sidebar .nav-link {
    color: var(--gray-400);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background: var(--primary-color);
    color: var(--white);
}

.admin-sidebar .nav-link i {
    width: 20px;
}

.admin-content {
    padding: 30px;
}

.admin-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.admin-card-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-body {
    padding: 20px;
}

.data-table {
    width: 100%;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.data-table th {
    background: var(--gray-100);
    font-weight: 600;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.status-badge.active,
.status-badge.available,
.status-badge.published {
    background: #d4edda;
    color: #155724;
}

.status-badge.inactive,
.status-badge.sold,
.status-badge.draft {
    background: #f8d7da;
    color: #721c24;
}

.status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

/* ===== Final mobile overrides (kept last so desktop rules cannot override them) ===== */
@media (max-width: 767px) {
    .hero-section {
        height: min(680px, calc(100svh - 64px));
        min-height: 540px;
        padding: 0;
        align-items: center;
    }

    .hero-content {
        padding: 24px 20px;
    }

    .hero-content h1 {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .hero-content p {
        max-width: 34ch;
        margin: 0 auto 22px;
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-buttons {
        width: min(100%, 360px);
        margin: 0 auto;
    }

    .hero-buttons .btn {
        min-height: 52px;
        padding: 13px 18px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        transform: scale(0.72);
    }

    .action-panel.search-section {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: -32px 12px 0;
        padding: 12px;
        border-radius: 14px;
    }

    .action-panel-card {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        align-items: center;
        gap: 8px 12px;
        padding: 16px;
    }

    .action-panel-icon {
        grid-row: 1;
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 19px;
    }

    .action-panel-card > span:not(.action-panel-icon) {
        min-width: 0;
    }

    .action-panel-card strong {
        margin-bottom: 2px;
        font-size: 18px;
        line-height: 1.25;
    }

    .action-panel-card small {
        font-size: 13px;
        line-height: 1.4;
    }

    .action-panel-link {
        grid-column: 1 / -1;
        width: 100%;
        margin: 4px 0 0;
        padding: 10px 12px;
        font-size: 14px;
        line-height: 1.3;
        text-align: center;
    }

    .floating-whatsapp {
        left: auto;
        right: 16px;
        bottom: 76px;
        padding: 0;
        width: 52px;
        height: 52px;
        justify-content: center;
        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }

    .sticky-call-mobile {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 380px) {
    .navbar-brand {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 15px;
    }
}
