:root {
    --primary: #8B7D6B;
    --secondary: #D2C1B0;
    --accent: #C37B57;
    --background: #FAF7F2;
    --text: #463F3A;
    --light-text: #8A817C;
    --white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

/* Bootstrap Color Overrides */
.bg-primary {
    background-color: var(--primary) !important;
}

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

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

.btn-accent:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

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

.nav-link {
    color: var(--text) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    left: 50%;
    bottom: -5px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), 
                url('../images/Cover.JPG') center/  cover no-repeat;
    margin-bottom: 0;
}

.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Property Cards */
.property-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.property-card img {
    transition: transform 0.5s ease;
}

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

/* Section Animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/Cover.JPG') center/  cover no-repeat;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.page-header h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Form Styles */
.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(195, 123, 87, 0.2);
}

.form-control.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
    animation: shake 0.4s linear;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(2px); }
    30%, 70% { transform: translateX(-2px); }
    40%, 60% { transform: translateX(2px); }
    50% { transform: translateX(0); }
}

/* Button Loading States */
.btn-loading {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.btn-loading svg {
    width: 20px;
    height: 20px;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.btn-icon {
    margin-left: 10px;
}

/* Testimonial Styles */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-rating {
    color: #ffc107;
}

/* Contact Page Styles */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 1.5rem;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Floating Action Button */
.floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(195, 123, 87, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
    color: white;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(195, 123, 87, 0.4);
    color: white;
}

.floating-btn i {
    font-size: 1.5rem;
}

/* Enhanced Service Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Image Hover Effects */
.image-hover-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.image-hover-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(195, 123, 87, 0.8), rgba(139, 125, 107, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
}

.image-hover-overlay:hover::after {
    opacity: 1;
}

.image-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.image-hover-overlay:hover .image-hover-content {
    opacity: 1;
}

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size:   cover;
    position: relative;
}

/* Enhanced Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    font-size: 6rem;
    color: var(--accent);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
    opacity: 0.1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

/* Social Proof Notifications */
.social-proof {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateX(-400px);
    transition: transform 0.5s ease;
    max-width: 300px;
}

.social-proof.show {
    transform: translateX(0);
}

.social-proof .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 10px;
}

/* Loading Animations */
.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; }
}

/* Interactive Map Markers */
.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.map-marker:hover {
    transform: scale(1.2);
}

.map-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.map-marker:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Progress Indicators */
.progress-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #f0f0f0;
    border-top: 3px solid var(--accent);
    margin: 0 auto 1rem;
    position: relative;
}

.progress-circle.completed {
    border: 3px solid var(--accent);
    background: var(--accent);
}

.progress-circle.completed::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

.text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.rounded-lg {
    border-radius: 15px !important;
}

.shadow-lg-custom {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Multi-step Form Styles */
.progress-steps {
    margin-bottom: 2rem;
}

.step-indicator {
    text-align: center;
    position: relative;
    flex: 1;
}

.step-indicator .progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e9ecef;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #6c757d;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-indicator.active .progress-circle {
    border-color: var(--accent);
    color: var(--accent);
}

.step-indicator .progress-circle.completed {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

.step-line {
    height: 3px;
    background: #e9ecef;
    flex: 1;
    margin: 0 -10px;
    position: relative;
    top: -25px;
    z-index: 1;
}

.step-indicator.active ~ .step-indicator .step-line,
.step-indicator.active .step-line {
    background: var(--accent);
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

.service-option, .budget-option {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-option:hover, .budget-option:hover {
    border-color: var(--accent);
    background: rgba(195, 123, 87, 0.05);
}

.service-option .form-check-input:checked ~ .form-check-label,
.budget-option .form-check-input:checked ~ .form-check-label {
    color: var(--accent);
}

.service-option .form-check-input:checked,
.budget-option .form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.booking-summary {
    border-left: 4px solid var(--accent);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
    color: var(--text);
}

.summary-value {
    color: var(--accent);
    font-weight: 600;
}

/* Form validation enhancements */
.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.72-.13 1.77-3.8 1.76 3.8.72.13-.88-3.86L5.54 2 4.77 5.86z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 6.5.4-.7.4.7h-.8z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Image Gallery & Lightbox Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #f8f9fa;
    aspect-ratio: 4/3;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit:   cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

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

.gallery-info h6 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Lightbox Modal */
.lightbox-modal .modal-dialog {
    max-width: 90vw;
    margin: 1.75rem auto;
}

.lightbox-modal .modal-content {
    background: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 0;
}

.lightbox-modal .modal-body {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.lightbox-title {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    color: white;
    text-align: center;
}

/* Interactive Map Enhancements */
.interactive-map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.map-overlay-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-control-btn {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    color: var(--text);
}

.map-control-btn:hover {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
}

.attraction-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.attraction-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--accent);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    animation: pulse-marker 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.attraction-marker:hover {
    transform: scale(1.3);
    z-index: 10;
}

@keyframes pulse-marker {
    0% { box-shadow: 0 0 0 0 rgba(195, 123, 87, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(195, 123, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(195, 123, 87, 0); }
}

.marker-tooltip {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.marker-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

.attraction-marker:hover .marker-tooltip {
    opacity: 1;
    visibility: visible;
}

/* 360 Virtual Tour */
.virtual-tour-container {
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-placeholder {
    text-align: center;
    color: var(--text);
}

.tour-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.tour-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

/* Image Comparison Slider */
.image-comparison {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.comparison-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.comparison-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:   cover;
}

.comparison-after {
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 10;
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '⟷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent);
    font-weight: bold;
}

/* Image Lazy Loading */
.lazy-image {
    opacity: 1;
    transition: opacity 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit:   cover;
}

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

.lazy-image:not(.loaded) {
    opacity: 0.7;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    animation: pulse-hotspot 2s infinite;
}

@keyframes pulse-hotspot {
    0% { box-shadow: 0 0 0 0 rgba(195, 123, 87, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(195, 123, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(195, 123, 87, 0); }
}

.hotspot-popup {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-popup {
    opacity: 1;
    visibility: visible;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.75rem;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .virtual-tour-container {
        height: 350px;
    }
    
    .comparison-container {
        height: 300px;
    }
}