/* styles.css */

:root {
    --color-primary: #2c2c2c;
    --color-secondary: #c9a961;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-background: #ffffff;
    --color-background-alt: #f8f8f8;
    --color-border: #e5e5e5;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-text);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
    border-bottom-color: var(--color-secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    padding: 0.75rem 1.75rem;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--color-primary);
}

/* Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
}

/* Listings Section */
.listings {
    background-color: var(--color-background-alt);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-md);
}

.listing-card {
    background-color: white;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--color-border);
}

.listing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}

.listing-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.08);
}

.listing-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background-color: var(--color-secondary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.listing-content {
    padding: var(--spacing-md);
}

.listing-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.listing-location {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

.listing-details {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.detail-separator {
    color: var(--color-text-light);
}

.listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listing-price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-secondary);
}

/* Services Section */
.services {
    background-color: var(--color-background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    text-align: center;
    padding: var(--spacing-md);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* About Section */
.about {
    background-color: var(--color-background-alt);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat {
    text-align: center;
    padding: var(--spacing-md);
    background-color: white;
    border: 1px solid var(--color-border);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

.about-image {
    height: 600px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background-color: var(--color-background-alt);
    padding: var(--spacing-lg);
    border-left: 3px solid var(--color-secondary);
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    font-weight: 500;
    color: var(--color-primary);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(44, 44, 44, 0.92), rgba(44, 44, 44, 0.92)), 
                url('https://images.unsplash.com/photo-1600607687644-c7171b42498b?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer .logo {
    color: white;
}

.footer-tagline {
    margin-top: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.footer-section p {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 0.5rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 400px;
    }
    
    .listings-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 400px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid var(--color-border);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .listing-footer {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* listings-page.css */

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80');
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-md);
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Filters Section */
.filters-section {
    background-color: white;
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.filters-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-light);
}

.filter-select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background-color: var(--color-background-alt);
    border: 1px solid var(--color-border);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.filter-select:hover {
    border-color: var(--color-secondary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.filter-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: end;
}

.btn-filter {
    padding: 0.875rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-apply {
    background-color: var(--color-secondary);
    color: white;
}

.btn-apply:hover {
    background-color: #b8954e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-reset {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-reset:hover {
    background-color: var(--color-background-alt);
    border-color: var(--color-text-light);
}

/* Results Summary */
.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.results-summary p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

#results-count {
    font-weight: 600;
    color: var(--color-secondary);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text-light);
}

.view-btn:hover {
    background-color: var(--color-background-alt);
    color: var(--color-text);
}

.view-btn.active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

/* Listings Main Section */
.listings-main {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-background-alt);
}

/* Favorite Button */
.favorite-btn {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text-light);
    backdrop-filter: blur(10px);
}

.favorite-btn:hover {
    background-color: white;
    color: var(--color-secondary);
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #e74c3c;
}

.favorite-btn.active svg {
    fill: #e74c3c;
}

/* Listing Description */
.listing-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
}

/* Feature Tags */
.listing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.4rem 0.75rem;
    background-color: var(--color-background-alt);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-xl);
}

.pagination-btn {
    padding: 0.75rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    background-color: white;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.pagination-btn.active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* List View Styles */
.listings-grid.list-view {
    grid-template-columns: 1fr;
}

.listings-grid.list-view .listing-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-md);
}

.listings-grid.list-view .listing-image {
    height: 100%;
    min-height: 300px;
}

.listings-grid.list-view .listing-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listings-grid.list-view .listing-footer {
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .filters-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .filter-actions {
        grid-column: 1 / -1;
    }
    
    .listings-grid.list-view .listing-card {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .filters-section {
        position: relative;
        top: 0;
    }
    
    .filters-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-filter {
        width: 100%;
    }
    
    .results-summary {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: flex-start;
    }
    
    .view-toggle {
        align-self: flex-end;
    }
    
    .listings-grid.list-view .listing-card {
        grid-template-columns: 1fr;
    }
    
    .listings-grid.list-view .listing-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .filters-wrapper {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        grid-column: 1;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
    }
}

/* Loading State */
.listings-grid.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-xl);
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

/* Filter Chip (Mobile) */
@media (max-width: 768px) {
    .active-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .filter-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        background-color: var(--color-secondary);
        color: white;
        border-radius: 20px;
    }
    
    .filter-chip button {
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
    }
}

/* detail-page.css */

/* property-detail.css */

/* Reset specific to detail page */
.detail-page {
    margin-top: 70px;
}

/* ========================================
   DETAIL HEADER SECTION
   ======================================== */

.detail-header {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c9a961;
}

.breadcrumb-separator {
    color: #e5e5e5;
}

.breadcrumb-current {
    color: #333333;
}

.detail-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.detail-title-section {
    flex: 1 1 auto;
    min-width: 0;
}

.detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.detail-location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    color: #666666;
    line-height: 1.5;
}

.detail-location svg {
    color: #c9a961;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-price-actions {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.detail-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #c9a961;
    margin: 0;
}

.detail-actions {
    display: flex;
    gap: 1rem;
}

.detail-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    background-color: white;
    color: #333333;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.detail-action-btn:hover {
    background-color: #f8f8f8;
    border-color: #c9a961;
    color: #c9a961;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.detail-gallery {
    background-color: #f8f8f8;
    padding: 2rem 0;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    height: 600px;
}

.gallery-main-image {
    width: 840px;
    height: 640px;
    overflow: hidden;
    cursor: pointer;
    background-color: black;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-main-image:hover img {
    transform: scale(1.05);
}

.gallery-thumbnails {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-thumb {
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    background-color: black;
    position: relative;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

.gallery-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.gallery-thumb-more:hover .gallery-thumb-overlay {
    background-color: rgba(0, 0, 0, 0.8);
}

.gallery-thumb-overlay span {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    letter-spacing: 1px;
}

/* ========================================
   DETAIL CONTENT SECTION
   ======================================== */

.detail-content {
    padding: 6rem 0;
    background-color: white;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

/* ========================================
   DETAIL STATS
   ======================================== */

.detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    margin-bottom: 4rem;
}

.detail-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.detail-stat svg {
    color: #c9a961;
}

.detail-stat-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    line-height: 1;
}

.detail-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
}

/* ========================================
   DETAIL SECTIONS
   ======================================== */

.detail-section {
    margin-bottom: 4rem;
}

.detail-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #c9a961;
}

.detail-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333333;
    margin: 0 0 2rem 0;
}

.detail-description p:last-child {
    margin-bottom: 0;
}

/* ========================================
   FEATURES
   ======================================== */

.detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.detail-feature-group {
    background-color: #f8f8f8;
    padding: 2rem;
    border: 1px solid #e5e5e5;
}

.detail-feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #c9a961;
    margin: 0 0 1rem 0;
}

.detail-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-feature-list li {
    font-size: 0.95rem;
    color: #333333;
    padding-left: 1.5rem;
    position: relative;
}

.detail-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c9a961;
    font-weight: bold;
}

/* ========================================
   MAP AND NEARBY
   ======================================== */

.detail-map {
    position: relative;
    height: 400px;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: black;
}

.detail-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 44, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.detail-map-overlay:hover {
    background-color: rgba(44, 44, 44, 0.9);
}

.detail-map-overlay p {
    font-size: 1.25rem;
    color: white;
    font-weight: 500;
    margin: 0;
}

.detail-nearby {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail-nearby-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    font-size: 0.9rem;
    color: #333333;
}

.detail-nearby-item svg {
    color: #c9a961;
    flex-shrink: 0;
}

/* ========================================
   VIDEO
   ======================================== */

.detail-video {
    position: relative;
    height: 450px;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.detail-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detail-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    margin: 0;
}

.detail-video-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* ========================================
   SIDEBAR
   ======================================== */

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background-color: white;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ========================================
   AGENT PROFILE
   ======================================== */

.agent-profile {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.agent-profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.agent-profile-info {
    flex: 1;
}

.agent-profile-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 0.25rem 0;
}

.agent-profile-role {
    font-size: 0.9rem;
    color: #666666;
    margin: 0 0 0.5rem 0;
}

.agent-profile-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.agent-rating-stars {
    color: #c9a961;
    font-size: 1rem;
}

.agent-rating-count {
    font-size: 0.85rem;
    color: #666666;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-agent-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #c9a961;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.contact-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333333;
    cursor: pointer;
}

.contact-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c9a961;
}

.contact-submit,
.contact-call {
    width: 100%;
}

/* ========================================
   MORTGAGE CALCULATOR
   ======================================== */

.mortgage-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 2rem 0;
}

.mortgage-field {
    margin-bottom: 1rem;
}

.mortgage-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666666;
    margin-bottom: 0.5rem;
}

.mortgage-input {
    width: 100%;
    padding: 0.875rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    background-color: #f8f8f8;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.mortgage-input:focus {
    outline: none;
    border-color: #c9a961;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.mortgage-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.mortgage-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: #c9a961;
    color: white;
    text-align: center;
    margin-top: 2rem;
}

.mortgage-result-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.mortgage-result-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
}

.mortgage-disclaimer {
    font-size: 0.8rem;
    color: #666666;
    margin-top: 1rem;
    font-style: italic;
}

/* ========================================
   SHARE CARD
   ======================================== */

.share-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c2c2c;
    margin: 0 0 2rem 0;
}

.share-card-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.share-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background-color: #2c2c2c;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.share-social-btn:hover {
    background-color: #c9a961;
    transform: translateY(-3px);
}

/* ========================================
   SIMILAR LISTINGS
   ======================================== */

.similar-listings {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .detail-header-content {
        flex-direction: column;
    }
    
    .detail-price-actions {
        align-self: stretch;
        align-items: flex-start;
    }
    
    .detail-actions {
        width: 100%;
    }
    
    .detail-action-btn {
        flex: 1;
    }
    
    .gallery-wrapper {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .gallery-main-image {
        height: 400px;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        height: 120px;
    }
    
    .detail-nearby {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .detail-title {
        font-size: 1.75rem;
    }
    
    .detail-price {
        font-size: 1.75rem;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .detail-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 200px;
    }
    
    .agent-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        max-height: 500px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }
    
    .nav-link:hover {
        padding-left: 0.5rem;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}


@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 250px;
        margin-top: 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    /* Filters */
    .filters-section {
        padding: 1.5rem 0;
    }

    .filters-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-actions {
        flex-direction: column;
    }

    .btn-filter {
        width: 100%;
    }

    .results-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-toggle {
        align-self: flex-end;
    }

    /* Listings Grid */
    .listings-main {
        padding: 2rem 0;
    }

    .listings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Listing Card */
    .listing-image {
        height: 200px;
    }

    .listing-content {
        padding: 1rem;
        gap: 0.75rem;
    }

    .listing-title {
        font-size: 1.25rem;
    }

    .listing-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
        line-clamp: inherit;
    }

    .listing-details {
        font-size: 0.85rem;
        gap: 0.35rem;
    }

    .listing-price {
        font-size: 1.5rem;
    }

    .listing-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* List View on Mobile */
    .listings-grid.list-view .listing-card {
        grid-template-columns: 1fr;
    }

    .listings-grid.list-view .listing-image {
        height: 200px;
    }

    .listings-grid.list-view .listing-content {
        padding: 1rem;
    }

    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 35vh;
        min-height: 220px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .filters-section {
        padding: 1rem 0;
    }

    .filter-select {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .listings-grid {
        gap: 1rem;
    }

    .listing-image {
        height: 180px;
    }

    .listing-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.7rem;
    }

    .favorite-btn {
        width: 40px;
        height: 40px;
    }

    .listing-title {
        font-size: 1.15rem;
    }

    .listing-price {
        font-size: 1.35rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.35rem 0.65rem;
    }
}

/* Touch-friendly improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .filter-select {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-filter {
        padding: 1rem;
        font-size: 16px;
    }

    .view-btn {
        width: 48px;
        height: 48px;
    }

    .favorite-btn {
        width: 48px;
        height: 48px;
    }

    .listing-card:active {
        transform: scale(0.98);
    }
}

/* Landscape orientation on phones */
@media (max-width: 896px) and (orientation: landscape) {
    .page-hero {
        height: 60vh;
    }

    .filters-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-actions {
        grid-column: span 2;
        flex-direction: row;
    }
}


@media (max-width: 1024px) {
    .detail-gallery .container {
        padding: 0 1rem; /* Restore padding but keep controlled */
    }
    
    .gallery-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    /* Gallery Mobile Fixes */
    .detail-gallery {
        padding: 1rem 0;
    }

    .detail-gallery .container {
        padding: 0; /* Remove all padding for gallery on mobile */
    }

    .gallery-wrapper {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0.5rem;
    }

    .gallery-main-image {
        height: 250px;
        width: 100%;
    }

    .gallery-main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        height: 80px;
        gap: 0.5rem;
    }

    .gallery-thumb {
        height: 80px;
    }

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Map Mobile Fixes */
    .detail-section iframe {
        width: 100%;
        height: 300px;
        border: none;
        border-top: 1px solid #e5e5e5;
        border-bottom: 1px solid #e5e5e5;
        margin: 0;
    }

    /* Form Mobile Fixes */
    .sidebar-card {
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-input,
    .contact-textarea {
        width: 100%;
        font-size: 16px; /* Prevent iOS zoom */
        padding: 1rem;
    }

    .contact-submit,
    .contact-call {
        width: 100%;
        padding: 1rem;
        font-size: 16px;
    }

    /* Agent Photo */
    .agent-profile-photo {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    /* Gallery Extra Small Screens */
    .gallery-main-image {
        height: 200px;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 120px;
        gap: 0.5rem;
    }

    .gallery-thumb {
        height: 60px;
    }

    /* Map Extra Small */
    .detail-section iframe {
        height: 250px;
    }

    /* Form Extra Small */
    .sidebar-card {
        padding: 1rem;
    }

    .agent-profile {
        gap: 0.75rem;
    }

    .agent-profile-photo {
        width: 60px;
        height: 60px;
    }

    .agent-profile-name {
        font-size: 1.1rem;
    }

    .contact-input,
    .contact-textarea {
        padding: 0.875rem;
    }
}

/* ========================================
   CONTAINER OVERRIDE FOR GALLERY
   ======================================== */

.detail-gallery .container {
    max-width: 100%;
}

@media (min-width: 769px) {
    .detail-gallery .container {
        max-width: 1400px;
        padding: 0 2rem;
    }
}