/* Property Website Styles */

:root {
    --primary-color: hsl(0, 65%, 67%);
    --secondary-color: hsl(188, 68%, 52%);
    --background-color: hsl(0, 0%, 100%);
    --text-dark: hsl(195, 25%, 15%);
    --text-muted: hsl(0, 0%, 60%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Custom Bootstrap Colors */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: hsl(0, 65%, 57%);
    border-color: hsl(0, 65%, 57%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 87, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-secondary-outline {
    background-color: var(--secondary-color);
    color: white;
    border-radius: 25px;
    padding: 8px 16px;
    text-decoration: none;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Navigation - Enhanced with proper z-index hierarchy */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    z-index: 9999;
    transition: all 0.3s ease;
    min-height: 70px;
}

.nav-enhanced {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-enhanced:hover {
    background-color: rgba(255, 255, 255, 0.98) !important;
}

/* Enhanced Navigation Links */
.nav-link-enhanced {
    position: relative;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link-enhanced:hover {
    color: var(--primary-color) !important;
    background-color: rgba(255, 87, 87, 0.05);
    transform: translateY(-1px);
}

.nav-link-enhanced:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    background-color: rgba(255, 87, 87, 0.1);
}

/* Enhanced Dropdown */
.dropdown-menu-enhanced {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 10000;
}

.dropdown-item-enhanced {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item-enhanced:hover {
    background-color: rgba(255, 87, 87, 0.08);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-item-enhanced:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
    background-color: rgba(255, 87, 87, 0.1);
}

/* iwocaPay Button */
.iwocapay-btn {
    background-color: #5ABBC4 !important;
    border: 2px solid #5ABBC4;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.iwocapay-btn:hover {
    background-color: #4aa9b2 !important;
    border-color: #4aa9b2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(90, 187, 196, 0.4);
}

.iwocapay-btn:focus {
    outline: 3px solid rgba(90, 187, 196, 0.5);
    outline-offset: 2px;
}

.iwocapay-btn:active {
    transform: translateY(0);
}

/* Create Account Button */
.create-account-btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.create-account-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 87, 87, 0.3);
}

.create-account-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Mobile Navigation Improvements */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link-enhanced {
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .iwocapay-btn {
        margin: 1rem 0;
        text-align: center;
    }
    
    .create-account-btn {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
}

/* Keyboard Navigation Focus Visible */
.navbar *:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Content Spacing for Fixed Header */
.main-content {
    padding-top: 90px; /* Account for fixed navbar height */
}

/* Z-index hierarchy fixes */
.hero-content {
    position: relative;
    z-index: 100; /* Much higher than before */
}

.hero-overlay {
    z-index: 50;
}

.hero-video {
    z-index: 10;
}

.floating-elements {
    z-index: 80;
}

/* Map container z-index fix */
.leaflet-container {
    z-index: 1 !important;
}

.leaflet-control-container {
    z-index: 1000 !important;
}

/* Comprehensive Footer Styles */
.site-footer {
    position: relative;
    z-index: 50;
    background-color: #1f2937 !important;
    color: white;
    margin-top: auto;
}

.text-light-gray {
    color: #d1d5db !important;
}

/* Footer Logo */
.footer-logo-img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
}

/* Footer Tagline */
.footer-tagline {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-tagline .text-primary {
    color: var(--primary-color) !important;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

/* Social Media Icons */
.footer-social-icons {
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #374151;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: rgba(255, 87, 87, 0.1);
    transform: translateY(-2px);
}

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

/* Footer Headers */
.footer-header {
    font-size: 1.125rem;
    font-weight: 300;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

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

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(4px);
}

.footer-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Contact Information */
.footer-contact-info {
    margin-top: 0;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Footer Bottom Section */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    margin-top: 1rem;
}

.copyright-text {
    color: #d1d5db;
    font-size: 0.875rem;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

/* Responsive Footer Design */
@media (max-width: 767.98px) {
    .site-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .footer-bottom .row > div:last-child {
        margin-bottom: 0;
    }
    
    .legal-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 991.98px) {
    .site-footer .row.g-4 {
        gap: 2rem;
    }
    
    .footer-section,
    .footer-company-info {
        text-align: center;
    }
    
    .footer-tagline {
        max-width: none !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .footer-section,
    .footer-company-info {
        text-align: left;
    }
}

/* Enhanced Accessibility */
.footer-link:focus-visible,
.social-icon:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Footer Animation on Scroll */
.site-footer {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease-out;
}

/* Hover Effects for Contact Items */
.contact-item:hover .contact-icon {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.contact-item:hover .text-light-gray {
    color: white !important;
    transition: color 0.2s ease;
}

.logo-heart {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heartBreathe 3s ease-in-out infinite;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-muted);
    font-weight: 300;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(255, 87, 87, 0.3);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-heart {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    animation: heartBreathe 7s ease-in-out infinite;
    transition: transform 0.1s ease-out;
}

.heart-1 { top: 15%; left: 15%; animation-delay: 0s; }
.heart-2 { top: 25%; right: 20%; animation-delay: 1s; }
.heart-3 { bottom: 30%; left: 25%; animation-delay: 2s; }
.heart-4 { top: 45%; left: 10%; animation-delay: 3s; }
.heart-5 { bottom: 20%; right: 15%; animation-delay: 4s; }
.heart-6 { top: 35%; right: 35%; animation-delay: 5s; }
.heart-7 { bottom: 45%; left: 45%; animation-delay: 6s; }

/* Glass Morphism */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 38, 135, 0.5);
}

/* Search Section */
.search-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group-text {
    border: none;
}

.form-control, .form-select {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 87, 87, 0.25);
}

/* Property Cards */
.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.property-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    transition: opacity 0.3s ease-in-out;
    position: relative;
}

/* Lazy loading states */
.lazy-bg {
    opacity: 0;
}

.lazy-bg.loaded {
    opacity: 1;
}

.property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.property-content {
    padding: 20px;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.property-location {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.property-feature {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.property-feature i {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

/* Support Card */
.support-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.support-icon i {
    width: 32px;
    height: 32px;
    color: white;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-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;
    color: white;
}

.feature-icon i {
    width: 32px;
    height: 32px;
}

/* Animations */
@keyframes heartBreathe {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 1; 
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-heart {
        width: 40px;
        height: 40px;
    }
    
    .search-card {
        margin-top: 20px;
    }
    
    .property-card {
        margin-bottom: 20px;
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.skeleton-image {
    height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-text {
    height: 20px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 10px;
    margin-bottom: 10px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

/* Property Toast Styles */
.property-toast {
    position: fixed;
    top: 0;
    right: -600px;
    width: 600px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.property-toast.show {
    right: 0;
}

.toast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.toast-overlay.show {
    opacity: 1;
    visibility: visible;
}

.toast-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-color);
    color: white;
}

.toast-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.toast-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.toast-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.property-gallery {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.2s;
}

.gallery-dot.active {
    background: white;
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.property-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.property-meta-item {
    display: flex;
    flex-direction: column;
}

.property-meta-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.property-description h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.property-description p {
    line-height: 1.6;
    color: var(--text-muted);
}

.property-map {
    height: 300px !important;
    min-height: 300px;
    width: 100% !important;
    margin-bottom: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #f8f9fa;
}

/* Ensure Leaflet map renders properly */
.property-map .leaflet-container {
    height: 100% !important;
    width: 100% !important;
}

.property-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.property-contact h5 {
    margin-bottom: 15px;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

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

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.2s;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .property-toast {
        width: 100%;
        right: -100%;
    }
    
    .property-meta {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
    }
}
/* Select2 Bootstrap Integration */
.select2-container--default .select2-selection--single {
    height: 38px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
    line-height: 22px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px;
}

.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.select2-dropdown {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--primary-color);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
}

/* Share Property Section */
.share-property-section {
    margin: 24px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.share-property-section h5 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}

.share-property-section h5 svg {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn.copy-link {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
}

.share-btn.copy-link:hover {
    background: hsl(0, 65%, 57%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 114, 114, 0.3);
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
    width: 42px;
    height: 42px;
    padding: 0;
}

.share-btn.facebook:hover {
    background: #0d6efd;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
    width: 42px;
    height: 42px;
    padding: 0;
}

.share-btn.twitter:hover {
    background: #0d8ddc;
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
    width: 42px;
    height: 42px;
    padding: 0;
}

.share-btn.whatsapp:hover {
    background: #1eb855;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background: #0a66c2;
    color: white;
    width: 42px;
    height: 42px;
    padding: 0;
}

.share-btn.linkedin:hover {
    background: #0855a5;
    transform: translateY(-2px);
}

/* Copy Notification Toast */
.copy-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: linear-gradient(135deg, var(--primary-color) 0%, hsl(0, 65%, 57%) 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(230, 114, 114, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10001;
}

.copy-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.copy-notification svg {
    width: 20px;
    height: 20px;
}

/* Mobile responsive for share buttons */
@media (max-width: 576px) {
    .share-property-section {
        padding: 16px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn.copy-link {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .share-btn.copy-link span {
        display: inline;
    }
}
