/* Custom CSS for Daikoko */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* ============================================
   TOP BAR STYLES
   ============================================ */
.top-bar {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3142 100%);
    color: #e2e8f0;
    font-size: 0.875rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.top-bar-link:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.top-bar-link i {
    font-size: 0.875rem;
}

.top-bar-text {
    color: #cbd5e0;
    margin-right: 0.5rem;
    font-weight: 500;
}

.top-bar .social-icons {
    display: flex;
    gap: 0.75rem;
}

.top-bar .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.top-bar .social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ============================================
   MAIN NAVBAR STYLES
   ============================================ */
.navbar-main {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-main.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* Brand Styles */
.navbar-main .navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-main .navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-main .brand-logo {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
}

.navbar-main .navbar-brand:hover .brand-logo {
    transform: scale(1.1) rotate(5deg);
}

.navbar-main .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-main .brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.navbar-main .brand-tagline {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation Links */
.navbar-main .navbar-nav {
    gap: 0.5rem;
}

.navbar-main .navbar-nav .nav-link {
    color: #2d3748;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-main .navbar-nav .nav-icon {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.navbar-main .navbar-nav .nav-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-2px);
}

.navbar-main .navbar-nav .nav-link:hover .nav-icon {
    opacity: 1;
}

.navbar-main .navbar-nav .nav-link.active {
    color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
}

.navbar-main .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px 2px 0 0;
}

/* Navbar Toggler Styles */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28102, 126, 234, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Actions */
.navbar-main .navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-main .nav-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #667eea;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.navbar-main .nav-action-btn:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.navbar-main .user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
}

.navbar-main .user-dropdown {
    padding: 0.5rem 1rem;
}

.navbar-main .user-name {
    font-weight: 600;
    color: #2d3748;
}

/* Dropdown Menu */
.navbar-main .user-dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 200px;
}

.navbar-main .user-dropdown-menu .dropdown-item {
    padding: 0.65rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-main .user-dropdown-menu .dropdown-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateX(5px);
}

.navbar-main .user-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Button Styles */
.navbar-main .btn-nav {
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    border-radius: 8px;
    border-width: 2px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.navbar-main .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-main .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.navbar-main .btn-outline-danger:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* Badge for Favourites/Cart */
.badge-circle {
    background: #764ba2;
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    padding: 0.2em 0.5em;
    position: absolute;
    top: -7px;
    right: -10px;
    font-weight: bold;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf6 100%);
    padding: 4rem 0 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}
.hero-section p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}
.hero-section .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Hero Search Box */
.hero-search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stat-item {
    padding: 2rem 1rem;
    text-align: center;
}
.stat-item h3 {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.stat-item p {
    color: #718096;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}
.service-card h5 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 1rem;
}
.service-card p {
    color: #718096;
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.testimonial-card p {
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
}

/* Enhanced Property Cards */
.property-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}
.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}
.property-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.property-card:hover .card-img-top {
    transform: scale(1.05);
}

.property-image {
    transition: transform 0.3s ease;
    border-radius: 8px 8px 0 0;
}

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

.property-image-placeholder {
    border-radius: 8px 8px 0 0;
}
.property-card .card-body {
    padding: 1.5rem;
}
.property-price {
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 700;
}
.property-location {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.property-features {
    color: #718096;
    font-size: 0.85rem;
}
.property-features span {
    display: inline-block;
    margin-right: 1rem;
}
.property-badge, .property-price-badge {
    z-index: 2;
}

/* Team Cards */
.team-card {
    transition: all 0.3s ease;
}
.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.team-avatar img {
    transition: transform 0.3s ease;
}
.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

/* Office Cards */
.office-card {
    transition: all 0.3s ease;
}
.office-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.office-card img {
    transition: transform 0.3s ease;
}
.office-card:hover img {
    transform: scale(1.05);
}

/* About Image */
.about-image img {
    transition: transform 0.3s ease;
}
.about-image:hover img {
    transform: scale(1.02);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.btn-outline-primary {
    color: #667eea;
    border-color: #667eea;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-outline-primary:hover {
    background: #667eea;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Section Styles */
.section {
    padding: 4rem 0;
}
.bg-light {
    background-color: #f7fafc !important;
}

/* Text Colors */
.text-accent {
    color: #667eea;
}
.bg-accent {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.card-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #2d3748;
}

/* Form Controls */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}
.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
}
.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

/* Border Colors */
.border-left-primary {
    border-left: 4px solid #667eea;
}
.border-left-success {
    border-left: 4px solid #28a745;
}
.border-left-info {
    border-left: 4px solid #17a2b8;
}
.border-left-warning {
    border-left: 4px solid #ffc107;
}

/* Text Utilities */
.text-gray-300 {
    color: #e2e8f0;
}
.text-gray-800 {
    color: #2d3748;
}
.text-xs {
    font-size: 0.75rem;
}

/* Badge Styles */
.badge {
    font-weight: 600;
    padding: 0.5em 1em;
    border-radius: 6px;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.5rem;
}
.alert-success {
    background-color: #d4edda;
    color: #155724;
}
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}
.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}
.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Table Styles */
.table {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.table thead th {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #2d3748;
    padding: 1rem;
}
.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Search and Filter Styles */
.search-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 2rem;
}
.filter-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

/* Property Gallery */
.property-gallery {
    margin-bottom: 2rem;
}
.property-gallery img {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Property Info */
.property-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: 2rem;
}
.property-features {
    margin-top: 1.5rem;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}
.feature-item i {
    color: #667eea;
    margin-right: 0.75rem;
    width: 20px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: linear-gradient(135deg, #1a1d29 0%, #2d3142 100%);
    color: #cbd5e0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #667eea 100%);
}

.footer-main {
    padding: 4rem 0 2rem;
}

/* Footer Brand */
.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Footer Titles */
.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.footer-contact li i {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 6px;
    color: #667eea;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li div {
    flex: 1;
}

.footer-contact strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.footer-contact p {
    margin: 0;
    color: #a0aec0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #667eea;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-bottom-links li {
    display: inline-block;
}

.footer-bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.scroll-top-btn:active {
    transform: translateY(-3px) scale(1.05);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128c7e;
    color: #ffffff;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 60px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .property-card .card-img-top {
        height: 180px;
    }
    .search-box {
        padding: 1.5rem;
    }
    .property-info {
        padding: 1.5rem;
    }
    .contact-form {
        padding: 1.5rem;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    
    /* Mobile Top Bar */
    .top-bar {
        padding: 0.5rem 0;
        font-size: 0.8rem;
    }
    
    .top-bar-left,
    .top-bar-right {
        gap: 1rem;
    }
    
    .top-bar-link span {
        display: none;
    }
    
    .top-bar .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    /* Mobile Navbar Styles */
    .navbar-main {
        padding: 0.75rem 0;
    }
    
    .navbar-main .brand-name {
        font-size: 1.4rem;
    }
    
    .navbar-main .navbar-toggler {
        border: 2px solid #e5e7eb;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .navbar-main .navbar-collapse {
        background-color: #fff;
        border-top: 1px solid #e5e7eb;
        margin-top: 1rem;
        padding: 1.5rem 0;
        border-radius: 0 0 12px 12px;
    }
    
    .navbar-main .navbar-nav {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .navbar-main .navbar-nav .nav-link {
        margin: 0;
        padding: 0.85rem 1rem;
        justify-content: center;
    }
    
    .navbar-main .navbar-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .navbar-main .btn-nav {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }
    
    .navbar-main .user-dropdown {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Footer */
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-bottom-links li {
        font-size: 0.85rem;
    }
    
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 75px;
        right: 20px;
        font-size: 28px;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .top-bar-left {
        gap: 0.5rem;
    }
    
    .top-bar .social-icons {
        gap: 0.5rem;
    }
    
    .top-bar .social-link {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
    
    .navbar-main .navbar-toggler {
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-main .brand-name {
        font-size: 1.3rem;
    }
    
    .navbar-main .brand-logo {
        height: 40px;
    }
    
    .navbar-main .navbar-nav .nav-icon {
        font-size: 0.9rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .footer-social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 65px;
        right: 15px;
        font-size: 25px;
    }
}

/* Large devices and up */
@media (min-width: 992px) {
    .navbar-main .navbar-nav .nav-link::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transition: width 0.3s ease;
    }
    
    .navbar-main .navbar-nav .nav-link:hover::before {
        width: 60%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a67d8;
}

/* Custom Colors */
.text-primary-custom {
    color: #667eea !important;
}
.bg-primary-custom {
    background-color: #667eea !important;
}
.border-primary-custom {
    border-color: #667eea !important;
}
.shadow-sm-custom {
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.1) !important;
}
.shadow-custom {
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15) !important;
}
.rounded-custom {
    border-radius: 12px !important;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
    .card {
        border: 1px solid #000 !important;
        box-shadow: none !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a202c;
        color: #e2e8f0;
    }
    .card {
        background-color: #2d3748;
        color: #e2e8f0;
    }
    .form-control {
        background-color: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    .table {
        background-color: #2d3748;
        color: #e2e8f0;
    }
    .table thead th {
        background-color: #4a5568;
        color: #e2e8f0;
    }
}
