/**
 * SunrisePro Consulting - Main Stylesheet
 * Theme: Premium Trust (Navy + Gold)
 */

/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Deep Navy (Trust & Professionalism) */
    --primary: #1e3a5f;
    --primary-dark: #152a45;
    --primary-light: #2c4a6e;

    /* Accent Colors - Premium Gold (Luxury & Shine) */
    --accent: #d4af37;
    --accent-dark: #b8960c;
    --accent-light: #f0d875;
    --gold-gradient: linear-gradient(135deg, #f0d875 0%, #d4af37 25%, #b8960c 50%, #d4af37 75%, #f0d875 100%);
    --gold-shimmer: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);

    /* Secondary Accent - Keep green for success states */
    --green: #27ae60;
    --green-dark: #1e8449;

    /* Light Theme - Clean & Professional */
    --white: #ffffff;
    --light: #f8f9fa;
    --light-alt: #f5f7fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #495057;
    --dark: #212529;

    /* Section Backgrounds - Light Theme */
    --section-dark: #ffffff;
    --section-medium: #f8f9fa;
    --section-light: #ffffff;
    --card-bg: #ffffff;
    --card-bg-light: #f8f9fa;

    /* Text Colors for Light Theme */
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;

    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;

    /* Fonts - Premium Typography */
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;

    /* Shadows - Enhanced for premium feel */
    --shadow-sm: 0 2px 4px rgba(30, 58, 95, 0.08);
    --shadow: 0 4px 12px rgba(30, 58, 95, 0.12);
    --shadow-lg: 0 10px 30px rgba(30, 58, 95, 0.18);

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* Reserve scrollbar space so removing/adding scrollbar never shifts content */
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

/* Global Section Borders */
section {
    border-bottom: 1px solid #e0e0e0;
}

section:last-of-type {
    border-bottom: none;
}

/* Ensure dark text on light backgrounds */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark);
}

p {
    color: var(--gray);
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-accent {
    background: linear-gradient(135deg, #f0d875 0%, #d4af37 30%, #b8960c 60%, #d4af37 100%);
    color: #1e3a5f;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    border: 1px solid rgba(184, 150, 12, 0.3);
    text-shadow: 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.btn-accent:hover::before {
    left: 100%;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #ffe066 0%, #f0d875 30%, #d4af37 60%, #f0d875 100%);
    color: #152a45;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Green CTA button for actions like Call, WhatsApp */
.btn-green {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.btn-green:hover {
    background: linear-gradient(135deg, #2ecc71 0%, var(--green) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

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

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--accent-light);
}

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

.top-bar-left i {
    color: var(--accent-light);
    margin-right: 5px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--accent);
}

header.main-header {
    background: #f5f0e8 !important;
    box-shadow: 0 2px 15px rgba(30, 58, 95, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.logo-text span {
    background: linear-gradient(135deg, #f0d875 0%, #d4af37 40%, #b8960c 70%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo-tagline {
    font-size: 12px;
    color: var(--accent-light) !important;
    display: block;
    font-weight: 600;
    letter-spacing: 0.3px;
    opacity: 1;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--accent-light) !important;
    background-clip: unset !important;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 5px;
}

.main-nav a {
    display: block;
    padding: 10px 18px;
    color: var(--dark);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--primary);
    color: var(--white);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 20px;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
}

.header-phone i {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--accent);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    /* Light background - styles in index.php */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero-pattern.png') no-repeat center right;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Search Box */
.search-box {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.search-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-form .form-group {
    flex: 1;
    min-width: 180px;
}

.search-form select,
.search-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 14px;
    color: var(--dark);
}

.search-form select:focus,
.search-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-form .btn {
    min-width: 150px;
}

/* Filters Section */
.filters-section {
    background: white;
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
}

/* ===== Main Content Layout ===== */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
}

.content-area {
    min-width: 0;
}

/* ===== Property Cards ===== */
.section-title {
    font-size: 28px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.section-title span {
    color: var(--accent);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.property-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.13);
    border-color: transparent;
}

/* Image */
.property-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

.property-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

/* Gradient overlay on image bottom */
.property-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    pointer-events: none;
}

/* Badges */
.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 11px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.badge-new {
    background: rgba(212,175,55,0.92);
    color: #fff;
}

.badge-construction {
    background: rgba(249,115,22,0.92);
    color: #fff;
}

.badge-ready {
    background: rgba(22,163,74,0.92);
    color: #fff;
}

.badge-booking {
    background: rgba(30,58,95,0.92);
    color: #fff;
}

.property-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 2;
}

/* Price on image */
.property-image-price {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.property-image-price small {
    display: block;
    font-size: 10.5px;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 2px;
}

/* Content */
.property-content {
    padding: 14px 16px 10px;
    flex: 1;
}

.property-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.35;
}

.property-title a {
    color: #1a202c;
    text-decoration: none;
}

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

.property-location {
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-location i {
    color: var(--accent);
    font-size: 11px;
}

.property-price {
    display: none; /* now shown on image */
}

.property-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.property-specs span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 11.5px;
    color: #4b5563;
    font-weight: 500;
}

.property-specs i {
    color: var(--primary);
    font-size: 10px;
}

/* Footer */
.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 14px;
    border-top: 1px solid #f3f4f6;
    margin-top: 10px;
}

.property-developer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
    max-width: 55%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.property-developer img {
    height: 20px;
    width: 20px;
    object-fit: contain;
    border-radius: 3px;
    flex-shrink: 0;
}

.property-footer .btn-enquire {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.property-footer .btn-enquire:hover {
    background: var(--accent);
    transform: scale(1.04);
}

/* ===== Sidebar ===== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    color: var(--primary);
}

/* Featured Properties Widget */
.featured-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-item {
    display: flex;
    gap: 12px;
}

.featured-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.featured-item-content h4 {
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.3;
}

.featured-item-content h4 a {
    color: var(--dark);
}

.featured-item-content h4 a:hover {
    color: var(--primary);
}

.featured-item-content p {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.contact-widget .widget-title {
    color: var(--white);
    border-color: var(--accent-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.contact-item span {
    font-size: 14px;
}

.contact-widget .btn {
    width: 100%;
    margin-top: 15px;
    background: var(--accent);
}

.contact-widget .btn:hover {
    background: var(--accent-dark);
}

/* Categories Widget */
.categories-list a {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.categories-list a:last-child {
    border-bottom: none;
}

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

.categories-list .count {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 5px;
    background: var(--white);
    color: var(--dark);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.pagination a:hover {
    background: var(--primary);
    color: var(--white);
}

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

/* ===== Footer ===== */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-about p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--accent-light);
    width: 20px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s;
}

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

.footer-contact span {
    color: rgba(255,255,255,0.85);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: var(--accent-light);
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== Enquiry Popup Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--danger);
    color: var(--white);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.modal-header h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 5px;
}

.modal-header p {
    font-size: 14px;
    opacity: 0.9;
}

.modal-body {
    padding: 25px;
}

/* ===== Forms ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

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

.form-error {
    color: var(--danger);
    font-size: 12px;
    margin-top: 5px;
}

.form-success {
    color: var(--success);
    font-size: 14px;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 5px;
    margin-bottom: 20px;
}

/* ===== Property Detail Page ===== */
.property-detail {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.property-gallery {
    position: relative;
}

.gallery-main {
    height: 450px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: var(--dark);
    overflow-x: auto;
}

.gallery-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
}

.property-detail-content {
    padding: 30px;
}

.property-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.property-detail-title h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.property-detail-price {
    text-align: right;
}

.property-detail-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.property-detail-price .price-note {
    font-size: 13px;
    color: var(--gray);
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item i {
    width: 40px;
    height: 40px;
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-item .label {
    font-size: 12px;
    color: var(--gray);
}

.meta-item .value {
    font-weight: 600;
    color: var(--dark);
}

.property-tabs {
    margin-bottom: 25px;
}

.tab-buttons {
    display: flex;
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 25px;
    background: none;
    border: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--light);
    border-radius: 5px;
}

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

.property-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.property-actions .btn {
    flex: 1;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: 10px;
    color: var(--white);
}

.contact-info-wrapper h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent-light);
}

.contact-info-item h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 14px;
    opacity: 0.9;
    color: var(--white);
}

.contact-info-item p a {
    color: var(--white);
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== About Page ===== */
.about-section {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
    margin-top: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        padding-top: 15px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .filters-section {
        background: white;
        padding: 5px 0 !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    .filters-section .container {
        padding: 0 5px !important;
    }

    .search-form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: stretch !important;
    }

    .search-form .form-group {
        flex: 1 !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .search-form .form-group:nth-child(4) {
        display: none !important;
    }

    .search-form select,
    .search-form input,
    .search-form .form-control {
        padding: 4px 2px !important;
        font-size: 9px !important;
        height: 28px !important;
        border-radius: 0 !important;
        border: 1px solid #ddd !important;
        border-right: none !important;
        margin: 0 !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .search-form .form-group:nth-child(3) .form-control {
        border-right: 1px solid #ddd !important;
    }

    .search-form .btn {
        padding: 4px 8px !important;
        font-size: 9px !important;
        min-width: auto !important;
        height: 28px !important;
        border-radius: 0 3px 3px 0 !important;
        white-space: nowrap !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .search-form .btn i {
        margin-right: 0 !important;
    }

    .search-form .btn-outline {
        display: none !important;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .about-content {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-detail-header {
        flex-direction: column;
    }

    .property-detail-price {
        text-align: left;
    }

    .gallery-main {
        height: 300px;
    }

    .property-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Compact property cards for 2-column mobile */
    .properties-grid .property-card .property-content {
        padding: 6px;
    }

    .properties-grid .property-card .property-title {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .properties-grid .property-card .property-title a {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .properties-grid .property-card .property-location {
        font-size: 11px;
        margin-bottom: 5px;
    }

    .properties-grid .property-card .property-price {
        font-size: 11px;
    }

    .properties-grid .property-card .btn-whatsapp-card {
        padding: 8px 10px;
        font-size: 11px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gold {
    background: linear-gradient(135deg, #f0d875 0%, #d4af37 40%, #b8960c 60%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gold-shine {
    background: linear-gradient(90deg, #d4af37 0%, #f0d875 25%, #ffe066 50%, #f0d875 75%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s linear infinite;
}
@keyframes goldShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.text-gray { color: var(--gray); }
.bg-light { background: var(--light); }
.bg-white { background: var(--white); }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }

/* ===== Trust Badges ===== */
.badge-verified {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.badge-verified i {
    font-size: 10px;
}

.badge-rera {
    background: linear-gradient(135deg, #1976D2, #0D47A1);
    color: var(--white);
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.badge-hot {
    background: linear-gradient(135deg, #FF5722, #E64A19);
    color: var(--white);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Property Card Trust Elements */
.property-trust-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    background: var(--light);
    font-size: 11px;
    color: var(--gray);
    border-top: 1px solid rgba(0,0,0,0.05);
}

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

.property-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2E7D32;
    font-weight: 600;
}

.property-viewed-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #E65100;
    font-weight: 600;
}

.property-viewed-badge i {
    color: #FF5722;
    animation: fire-bounce 1s infinite;
}

@keyframes fire-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* ===== Trust Banner ===== */
.trust-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 20px 0;
}

.trust-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.trust-item i {
    font-size: 28px;
    color: var(--accent-light);
}

.trust-item .number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.trust-item .label {
    font-size: 13px;
    opacity: 0.9;
}

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

    .trust-banner-content {
        gap: 20px;
    }

    .trust-item {
        gap: 8px;
    }

    .trust-item i {
        font-size: 22px;
    }

    .trust-item .number {
        font-size: 22px;
    }

    .trust-item .label {
        font-size: 11px;
    }
}

/* ===== Blue/Primary Background Text Visibility ===== */
/* Ensure all text is white on blue/primary backgrounds */
/* Note: .hero removed - now uses light background with dark text */
.trust-banner h1,
.trust-banner h2,
.trust-banner h3,
.trust-banner p,
.trust-banner span,
.contact-widget h1,
.contact-widget h2,
.contact-widget h3,
.contact-widget h4,
.contact-widget p,
.contact-widget span,
.contact-widget a,
.contact-info-wrapper h1,
.contact-info-wrapper h2,
.contact-info-wrapper h3,
.contact-info-wrapper h4,
.contact-info-wrapper p,
.contact-info-wrapper span,
.contact-info-wrapper a,
.contact-info-wrapper li,
.modal-header h1,
.modal-header h2,
.modal-header h3,
.modal-header p,
[style*="background: linear-gradient"][style*="primary"] h1,
[style*="background: linear-gradient"][style*="primary"] h2,
[style*="background: linear-gradient"][style*="primary"] h3,
[style*="background: linear-gradient"][style*="primary"] p,
[style*="background: linear-gradient"][style*="primary"] span,
[style*="background: linear-gradient"][style*="primary"] a {
    color: var(--white) !important;
}

/* Page headers with blue background */
section[style*="primary"] h1,
section[style*="primary"] h2,
section[style*="primary"] h3,
section[style*="primary"] p,
section[style*="primary"] span,
section[style*="primary"] a:not(.btn) {
    color: white !important;
}

/* Generic utility class for blue/primary backgrounds */
.bg-primary-section,
.bg-primary-section h1,
.bg-primary-section h2,
.bg-primary-section h3,
.bg-primary-section h4,
.bg-primary-section p,
.bg-primary-section span,
.bg-primary-section li,
.bg-primary-section a:not(.btn):not(.btn-primary):not(.btn-accent) {
    color: white !important;
}

.bg-primary-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Force white text on any element with primary gradient inline style */
[style*="--primary"] h1,
[style*="--primary"] h2,
[style*="--primary"] h3,
[style*="--primary"] p {
    color: white !important;
}

/* ===== Trust Badges ===== */
.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-verified i {
    font-size: 10px;
}

.badge-rera {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-premium i {
    color: var(--primary-dark);
}

.badge-hot {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Property Trust Bar */
.property-trust-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(39, 174, 96, 0.08);
    border-left: 3px solid var(--green);
    border-radius: 0 8px 8px 0;
    margin-bottom: 15px;
}

.property-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dark-gray);
}

.property-trust-bar .trust-item i {
    color: var(--green);
}

.property-trust-bar .trust-item.viewing {
    color: var(--accent-dark);
}

.property-trust-bar .trust-item.viewing i {
    color: var(--accent);
}

/* Developer Partner Badge */
.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: 25px;
    font-size: 13px;
    color: var(--dark-gray);
    transition: var(--transition);
}

.developer-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.developer-badge img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== Partner Logos Section ===== */
.partners-section {
    padding: 50px 0;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

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

.partners-section .section-header h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}

.partners-section .section-header p {
    color: var(--gray);
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: var(--light);
    border-radius: 10px;
    transition: var(--transition);
    min-width: 150px;
    height: 80px;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.partner-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Experience Stats Section ===== */
.experience-stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    color: white;
}

.experience-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.experience-stats .stat-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-stats .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--primary-dark);
}

.experience-stats .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.experience-stats .stat-number span {
    color: var(--accent-light);
}

.experience-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .experience-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .experience-stats .stats-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        min-width: 120px;
        padding: 15px 20px;
    }
}

/* ===== Premium Card Styling ===== */
.property-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.property-card .badge-container {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

/* ===== Enhanced Pricing Display ===== */
.property-price-wrapper {
    margin-bottom: 10px;
}

.property-price-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.property-price-sqft {
    font-size: 11px;
    color: var(--gray);
    margin-top: 2px;
}

.price-on-request {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.price-on-request i {
    margin-right: 6px;
    color: var(--accent);
}

/* ===== Urgency Indicators ===== */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #FF5722, #E64A19);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.urgency-badge i {
    animation: flash-icon 1.5s infinite;
}

@keyframes flash-icon {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.limited-units-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FF5722, #E64A19);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.selling-fast {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FFF3E0;
    border: 1px solid #FF9800;
    color: #E65100;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ===== Enhanced CTA Buttons ===== */
.btn-cta-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    color: var(--white);
}

.btn-cta-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--light);
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 40px;
    color: var(--primary);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info .name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info .designation {
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* ===== Mobile-First Enhancements ===== */
@media (max-width: 768px) {
    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }

    .btn-sm {
        min-height: 40px;
        padding: 10px 16px;
    }

    /* Hero section mobile */
    .hero {
        padding: 35px 0 25px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
    }

    /* Property cards mobile */
    .property-card {
        border-radius: 12px;
    }

    .property-content {
        padding: 15px;
    }

    .property-title {
        font-size: 16px;
        line-height: 1.3;
    }

    .property-price {
        font-size: 20px;
    }

    /* Section titles */
    .section-title {
        font-size: 24px;
    }

    /* Forms */
    .form-control {
        min-height: 44px;
        padding: 12px 15px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }
}

/* ===== Breadcrumb Navigation ===== */
.breadcrumb-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 10px 0;
    font-size: 13px;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}
.breadcrumb-list li + li::before {
    content: " › ";
    color: #6c757d;
    padding: 0 6px;
}
.breadcrumb-list a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb-list a:hover {
    text-decoration: underline;
}
.breadcrumb-list li[aria-current] {
    color: #6c757d;
}
