:root {
    --primary: #1a1a2e;
    --primary-light: #2d2d44;
    --accent: #c9a961;
    --accent-dark: #b39650;
    --text-dark: #0f0f1e;
    --text-light: #666;
    --text-muted: #999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e5e5e5;
    --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);
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
}

.btn--ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn--light {
    background: var(--bg-white);
    color: var(--primary);
    font-weight: 600;
}

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

.btn--sm {
    padding: 10px 24px;
    font-size: 14px;
}

.link {
    color: var(--accent);
    font-weight: 500;
    position: relative;
}

.link::after {
    content: '→';
    margin-left: 6px;
    transition: var(--transition);
}

.link:hover::after {
    transform: translateX(4px);
}

.topbar {
    background: var(--primary);
    color: var(--bg-white);
    font-size: 14px;
    padding: 12px 0;
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar__contact {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar__contact a {
    color: var(--bg-white);
    opacity: 0.9;
}

.topbar__contact a:hover {
    opacity: 1;
    color: var(--accent);
}

.topbar__contact span {
    opacity: 0.5;
}

.topbar__social {
    display: flex;
    gap: 16px;
}

.topbar__social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-weight: 600;
    font-size: 12px;
}

.topbar__social a:hover {
    background: var(--accent);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

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

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

.nav a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,97,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content h1 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero__content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero__search {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.form-row label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.form-row input:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}

.section {
    padding: 80px 0;
}

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

.section__title {
    text-align: center;
    margin-bottom: 48px;
}

.section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.feature {
    text-align: center;
    padding: 48px 32px;
}

.feature__icon {
    font-size: 64px;
    margin-bottom: 24px;
    filter: grayscale(0.3);
}

.feature h3 {
    margin-bottom: 16px;
    color: var(--primary);
}

.feature p {
    color: var(--text-light);
    line-height: 1.7;
}

.property-card {
    position: relative;
    cursor: pointer;
}

.property-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e5e5 0%, #f0f0f0 100%);
}

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

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

.property-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-card__content {
    padding: 24px;
}

.property-card__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.property-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.property-card__location {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-card__location::before {
    content: '📍';
}

.property-card__details {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.property-card__details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,97,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--bg-white);
    margin-bottom: 12px;
}

.cta p {
    font-size: 18px;
    opacity: 0.9;
}

.site-footer {
    background: var(--primary);
    color: var(--bg-white);
    padding: 60px 0 24px;
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__about h3 {
    color: var(--accent);
    margin-bottom: 16px;
}

.footer__about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer__section h4 {
    color: var(--bg-white);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    opacity: 0.8;
    font-size: 15px;
    transition: var(--transition);
}

.footer__links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 4px;
}

.footer__bottom {
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
}

.footer__bottom p {
    margin: 0;
}

.footer__credit {
    margin-top: 8px;
    font-size: 13px;
}

.footer__credit a {
    color: var(--accent);
    font-weight: 500;
    transition: var(--transition);
}

.footer__credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__main {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header__inner {
        padding: 16px 24px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        padding: 80px 24px 24px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        align-items: flex-start;
        gap: 24px;
        z-index: 1000;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero__content h1 {
        font-size: 2rem;
    }
    
    .hero__search {
        padding: 20px;
    }
    
    .section {
        padding: 48px 0;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .grid--3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta__inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .topbar__inner {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
    }
    
    .topbar__contact {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .topbar__contact span {
        display: none;
    }
    
    .section__header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .property-card__image {
        height: 220px;
    }
    
    .property-card__content {
        padding: 20px;
    }
    
    .property-card__price {
        font-size: 20px;
    }
    
    .property-card__title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .topbar {
        padding: 8px 0;
    }
    
    .topbar__contact a {
        font-size: 13px;
    }
    
    .hero {
        padding: 32px 0 48px;
    }
    
    .hero__content h1 {
        font-size: 1.75rem;
    }
    
    .hero__content p {
        font-size: 16px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .hero__search {
        padding: 16px;
    }
    
    .search-form .form-row {
        gap: 12px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section__title {
        font-size: 1.5rem;
    }
    
    .feature {
        padding: 32px 20px;
    }
    
    .feature__icon {
        font-size: 48px;
    }
    
    .property-card__image {
        height: 200px;
    }
    
    .property-card__content {
        padding: 16px;
    }
    
    .property-card__details {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .cta p {
        font-size: 16px;
    }
    
    .footer__about {
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        font-size: 12px;
    }
    
    .footer__credit {
        font-size: 11px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    color: var(--bg-white);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.properties-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.properties-filters {
    position: sticky;
    top: 100px;
}

.filter-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-group input,
.filter-group select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}

.properties-list {
    min-height: 400px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.3;
}

.empty-state h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .properties-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .properties-filters {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .filter-card {
        padding: 20px;
    }
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.content-card h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.content-card h3 {
    color: var(--primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.content-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-card .lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-item a,
.contact-item p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-item a:hover {
    color: var(--accent);
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.hour-item span {
    color: var(--text-light);
    font-size: 14px;
}

.hour-item strong {
    color: var(--primary);
    font-size: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.value-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-item h4 {
    color: var(--primary);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    padding: 12px 0;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
    border-bottom: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.process-section {
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    gap: 48px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 18px;
}

.info-card p {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.info-card a {
    color: var(--accent);
}

.info-card a:hover {
    text-decoration: underline;
}

.info-detail {
    font-size: 13px;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}

.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    color: var(--primary);
    margin-bottom: 12px;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-form .required {
    color: var(--danger);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201,169,97,0.1);
}

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

.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #22c55e;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.faq-section {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .content-sidebar {
        position: static;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .content-card {
        padding: 24px;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

.about-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-hero__content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero__content .lead {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-inline {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.stat-inline:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.stat-inline__value {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-inline__label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.about-hero__image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,169,97,0.2) 0%, transparent 70%);
}

.placeholder-icon {
    font-size: 120px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.image-placeholder p {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.mv-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.mv-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

.mv-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.values-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.value-card__icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    transition: var(--transition);
}

.value-card:hover .value-card__icon {
    transform: scale(1.1);
}

.value-card h4 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 20px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-modern {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.feature-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-modern__number {
    font-size: 72px;
    font-weight: 700;
    color: var(--bg-light);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.feature-modern h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.feature-modern p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .about-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-inline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .values-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .features-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card {
        padding: 32px 24px;
    }
    
    .about-hero__content h2 {
        text-align: center;
    }
}

.property-detail {
    padding: 40px 0;
}

.property-detail__header {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.property-detail__header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    color: var(--primary);
}

.property-detail__location {
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-detail__price {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

.property-detail__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}

.property-detail__main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.property-detail__image {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.property-detail__image img {
    width: 100%;
    height: auto;
    display: block;
}

.property-detail__info {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.property-detail__info h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.property-detail__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.spec-item:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, var(--bg-light) 100%);
}

.spec-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.property-detail__description {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.property-detail__description h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.property-detail__description p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.property-detail__sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px 24px;
    text-align: center;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 20px;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.summary-card {
    padding: 24px;
}

.summary-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

.summary-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.summary-item span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.summary-item strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.property-card__new {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.property-card__date {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-card__date::before {
    content: '🕒';
}

@media (max-width: 1024px) {
    .property-detail__layout {
        grid-template-columns: 1fr;
    }
    
    .property-detail__sidebar {
        position: static;
    }
    
    .property-detail__header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .property-detail__price {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .property-detail {
        padding: 24px 0;
    }
    
    .property-detail__header {
        padding: 24px;
    }
    
    .property-detail__info,
    .property-detail__description {
        padding: 24px;
    }
    
    .property-detail__specs {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 24px;
    }
}
