/* Sirka Real Estate - Global Styles */

/* ===== CSS Custom Properties ===== */
:root {
    --primary: #d50000;
    --primary-dark: #b00000;
    --primary-light: #fde8e8;
    --primary-rgb: 213, 0, 0;
    --accent: #1a1a2e;
    --text-dark: #1a1a2e;
    --text-light: #555;
    --text-muted: #999;
    --bg-white: #fff;
    --bg-light: #f8f8fa;
    --bg-dark: #1a1a2e;
    --bg-darker: #12121f;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

p {
    margin-bottom: 1em;
    color: var(--text-light);
}

ul, ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.35em;
    color: var(--text-light);
}

/* ===== Layout ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section--light {
    background: var(--bg-light);
}

.section--dark {
    background: var(--bg-dark);
    color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
    color: #fff;
}

.section--dark p {
    color: rgba(255,255,255,0.85);
}

.section--primary {
    background: var(--primary);
    color: #fff;
}

.section--primary h2,
.section--primary h3,
.section--primary p {
    color: #fff;
}

/* ===== Header / Nav ===== */
.site-header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.logo:hover {
    color: var(--text-dark);
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-text .brand-tagline {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

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

.main-nav .btn--primary {
    color: #fff;
    margin-left: 8px;
}

.main-nav .btn--primary:hover {
    color: #fff;
    background: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a1a3e 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero--home {
    padding: 120px 0;
    background: linear-gradient(rgba(26,26,46,0.85), rgba(26,26,46,0.9)),
                url('/images/hero-home.jpg') center/cover no-repeat;
}

.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 0.6em;
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2em;
}

.hero--page {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a1a3e 100%);
}

.hero--page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.3em;
}

.hero--page p {
    margin-bottom: 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    font-family: inherit;
    line-height: 1.4;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

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

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

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

.btn--white:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
}

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

.btn--lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-group--center {
    justify-content: center;
}

/* ===== Grid ===== */
.grid {
    display: grid;
    gap: 30px;
}

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

/* ===== Cards ===== */
.card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    transition: all var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

.card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5em;
}

.card__text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.card--bordered {
    border: 1px solid var(--border-color);
    box-shadow: none;
}

.card--bordered:hover {
    border-color: var(--primary);
}

/* ===== Property Cards ===== */
.property-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    background: var(--bg-white);
}

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

.property-card__image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.property-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-card__price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
}

.property-card__body {
    padding: 20px;
}

.property-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.property-card__address {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.property-card__meta {
    display: flex;
    gap: 16px;
    color: var(--text-light);
    font-size: 0.85rem;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.property-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== Agent Cards ===== */
.agent-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
}

.agent-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.agent-card__photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--bg-light);
}

.agent-card__body {
    padding: 24px;
}

.agent-card__name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.agent-card__role {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.agent-card__languages {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.agent-card__contact {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.agent-card__contact a {
    color: var(--text-light);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.agent-card__contact a:hover {
    color: var(--primary);
}

/* ===== Search / Filter Bar ===== */
.search-bar {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 24px;
    margin: -40px auto 40px;
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.search-bar__form {
    display: flex;
    gap: 12px;
    align-items: end;
    flex-wrap: wrap;
}

.search-bar__group {
    flex: 1;
    min-width: 150px;
}

.search-bar__group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.search-bar__group select,
.search-bar__group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: border-color var(--transition);
}

.search-bar__group select:focus,
.search-bar__group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.search-bar .btn {
    white-space: nowrap;
    padding: 10px 28px;
}

/* ===== Listing Results ===== */
.listing-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results h3 {
    color: var(--text-light);
    margin-bottom: 8px;
}

/* ===== Two-column content ===== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

.split__image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 0.4em;
}

.section-header p {
    font-size: 1.1rem;
}

/* ===== Stats ===== */
.stat {
    text-align: center;
}

.stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Testimonials ===== */
.testimonial {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
}

.testimonial__text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.testimonial__author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0;
}

.testimonial__role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== Services Grid ===== */
.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-card__text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== Language Badges ===== */
.lang-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lang-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message--success {
    background: #e6f9ed;
    color: #1a7a3a;
    border: 1px solid #b3e6c7;
}

.form-message--error {
    background: #fde8e8;
    color: #c53030;
    border: 1px solid #f5b3b3;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-darker);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 16px;
}

.footer-brand .logo-text .brand-name {
    color: #fff;
}

.footer-brand .logo-text .brand-tagline {
    color: rgba(255,255,255,0.5);
}

.site-footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
}

/* ===== Map ===== */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 350px;
}

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

/* ===== News Cards ===== */
.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.news-card__image {
    height: 180px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.news-card__body {
    padding: 24px;
}

.news-card__date {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.news-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.news-card__excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===== Listing Detail Page ===== */
.listing-breadcrumb {
    background: var(--bg-light);
    padding: 12px 0;
    font-size: 0.85rem;
}

.listing-breadcrumb a {
    color: var(--text-muted);
}

.listing-breadcrumb a:hover {
    color: var(--primary);
}

.listing-breadcrumb span {
    color: var(--text-muted);
    margin: 0 6px;
}

.listing-breadcrumb .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* Gallery */
.listing-gallery {
    background: var(--bg-light);
    padding: 0 0 30px;
}

.gallery__main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    background: #e8e8e8;
    max-height: 500px;
}

.gallery__main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.gallery__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.gallery__status {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #16a34a;
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gallery__thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.gallery__thumb {
    flex-shrink: 0;
    width: 90px;
    height: 64px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    opacity: 0.6;
    transition: all var(--transition);
}

.gallery__thumb:hover {
    opacity: 0.9;
}

.gallery__thumb--active {
    border-color: var(--primary);
    opacity: 1;
}

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

/* Listing Header */
.listing-header {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.listing-header__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.listing-header__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    line-height: 1.1;
}

.listing-header__address {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.listing-header__city {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.listing-header__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.listing-header__stats {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.listing-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 28px;
    border-right: 1px solid var(--border-color);
}

.listing-stat:first-child {
    padding-left: 0;
}

.listing-stat:last-child {
    border-right: none;
}

.listing-stat__number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.listing-stat__half {
    font-size: 1rem;
    font-weight: 500;
}

.listing-stat__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Listing Layout */
.listing-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

.listing-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-color);
}

.listing-section:last-child {
    border-bottom: none;
}

.listing-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.listing-section p {
    line-height: 1.8;
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
    gap: 12px;
}

.detail-item__label {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-item__value {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
    color: var(--text-dark);
}

.detail-item__value--active {
    color: #16a34a;
    font-weight: 600;
}

.detail-item:nth-child(odd) {
    margin-right: 20px;
}

.detail-item:nth-child(even) {
    margin-left: 20px;
}

/* Feature Tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Sidebar */
.listing-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.sidebar-card p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.sidebar-card--muted {
    background: var(--bg-light);
    border-color: transparent;
}

.agent-info {
    margin-bottom: 12px;
}

.agent-info__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.agent-info__detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.mls-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 8px;
}

/* Listing Detail Responsive */
@media (max-width: 968px) {
    .listing-layout {
        grid-template-columns: 1fr;
    }

    .listing-sidebar {
        position: static;
    }

    .listing-header__stats {
        flex-wrap: wrap;
    }

    .listing-stat {
        padding: 12px 20px;
    }

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

    .detail-item:nth-child(odd) { margin-right: 0; }
    .detail-item:nth-child(even) { margin-left: 0; }

    .gallery__main img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .listing-header__top {
        flex-direction: column;
    }

    .listing-header__actions {
        width: 100%;
    }

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

    .listing-header__price {
        font-size: 2rem;
    }

    .gallery__main img {
        height: 260px;
    }

    .gallery__thumb {
        width: 70px;
        height: 50px;
    }

    .listing-stat {
        padding: 10px 14px;
    }

    .listing-stat__number {
        font-size: 1.3rem;
    }
}

/* ===== Utility ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-narrow { max-width: 700px; }

/* ===== Responsive ===== */
@media (max-width: 968px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .hero { padding: 70px 0; }
    .hero--home { padding: 80px 0; }
    .hero h1 { font-size: 2.2rem; }
    .section { padding: 60px 0; }

    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 30px; }
    .split--reverse { direction: ltr; }

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

    .search-bar__form {
        flex-direction: column;
    }

    .search-bar__group {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-inner { height: 70px; }
    .logo img { height: 38px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
    }

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

    .main-nav a {
        width: 100%;
        padding: 12px 16px;
    }

    .main-nav .btn--primary {
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .mobile-toggle {
        display: block;
    }

    .grid--2 { grid-template-columns: 1fr; }
    .grid--3 { grid-template-columns: 1fr; }
    .grid--4 { grid-template-columns: 1fr; }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero h1 { font-size: 1.8rem; }
    .hero p { font-size: 1rem; }
    .hero--page h1 { font-size: 1.8rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .search-bar {
        margin: -20px 16px 30px;
    }

    .property-card__image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 40px 0; }
    .hero { padding: 50px 0; }
    .hero--home { padding: 60px 0; }
    .hero h1 { font-size: 1.5rem; }
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
}
