/* ===================================
   RESET & BASE - Minimalist Design
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #007bff;
    color: #fff;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
    font-size: 14px;
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   FOCUS STYLES - Accessibility
   =================================== */
:focus-visible {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #007bff;
    outline-offset: 2px;
}

/* ===================================
   CONTAINER - Minimalist
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid system */
.grid {
    display: grid;
    gap: 20px;
}

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

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

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

@media (max-width: 992px) {
    .grid--3, .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid--2, .grid--3, .grid--4 {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TYPOGRAPHY - Minimalist
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #111;
}

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

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
}

p {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* ===================================
   BUTTONS - Professional Real Estate
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn--primary {
    background: #007bff;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn--primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn--small {
    padding: 12px 24px;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
}

/* ===================================
   HEADER & NAV - Professional Real Estate
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav__logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.nav__logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #111;
}

.nav__logo-subtitle {
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav__link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s;
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link--active {
    color: #007bff;
}

.nav__link--cta {
    background: #007bff;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.nav__link--cta:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.nav__link--cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav__toggle span {
    width: 26px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .nav__toggle {
        display: flex;
    }
    
    .nav__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    .nav__menu.nav__menu--open {
        transform: translateY(0);
    }
    
    .nav__link--cta {
        width: 100%;
        text-align: center;
    }
}

/* ===================================
   HERO SECTION - Modern & Elegant
   =================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23f8f9fa" width="100" height="100"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero__title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero__title-line {
    display: block;
    margin-bottom: 8px;
}

.hero__title-line--accent {
    color: #fff;
    font-weight: 300;
    font-size: 2.8rem;
}

.hero__subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

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

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
        min-height: 85vh;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__title-line--accent {
        font-size: 1.8rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
}

/* ===================================
   SECTIONS - Professional Real Estate
   =================================== */
.section {
    padding: 80px 0;
}

.section--gray {
    background: #f8f9fa;
}

.section--primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.section--primary .section__title,
.section--primary .section__subtitle {
    color: #fff;
}

.section__header {
    margin-bottom: 50px;
    text-align: center;
}

.section__header--center {
    text-align: center;
}

.section__title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    font-weight: 400;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   ESTIMATION SECTION - Minimalist
   =================================== */
.estimation {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.estimation__title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #111;
}

.section--primary .estimation__title {
    color: #fff;
}

.estimation__benefits {
    list-style: none;
}

.estimation__benefits li {
    padding: 20px;
    background: #fff;
    border-left: 3px solid #007bff;
    margin-bottom: 15px;
}

.section--primary .estimation__benefits li {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #fff;
}

.estimation__benefit-title {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111;
    font-weight: 600;
}

.section--primary .estimation__benefit-title {
    color: #fff;
}

.estimation__benefits p {
    font-size: 0.95rem;
    color: #555;
}

.section--primary .estimation__benefits p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .estimation {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }

    .estimation__title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #111;
    }
}

.section--primary .form {
    background: #fff;
    color: #333;
}

.form__title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #111;
    font-weight: 600;
}

.form__field {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #333;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
    background: #fff;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #007bff;
    background: #fff;
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* ===================================
   FORMS - High Tech Modern
   =================================== */
.form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form__title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #111;
    font-weight: 700;
    text-align: center;
}

.form__field {
    margin-bottom: 25px;
}

.form__label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: #007bff;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    transform: translateY(-2px);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #999;
}

.form__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23666'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 20px;
    font-style: italic;
    font-weight: 400;
}

/* ===================================
   SERVICE CARDS - Professional Real Estate
   =================================== */
.services {
    margin-top: 40px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-card:hover {
    border-color: #007bff;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    transform: translateY(-8px);
}

.service-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.service-card__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.service-card__description {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-card__features {
    list-style: none;
    margin-bottom: 25px;
}

.service-card__features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-card__features li::before {
    content: '✓';
    color: #007bff;
    font-weight: bold;
}

.service-card__features li:last-child {
    border-bottom: none;
}

.service-card__link {
    display: inline-block;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
}

.service-card__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s;
}

.service-card__link:hover::after {
    width: 100%;
}

/* ===================================
   ZONE SECTION - Modern Cards
   =================================== */
.zone {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.zone__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
}

.zone__description {
    margin-bottom: 50px;
    line-height: 1.8;
    color: #666;
    font-size: 1.15rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.zone__departments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.zone__city-card {
    background: #fff;
    padding: 30px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.zone__city-card:hover {
    border-color: #007bff;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.15);
    transform: translateY(-8px);
}

.zone__city-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.zone__city-distance {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.zone__city-dept {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 15px;
    margin-top: 12px;
}

.zone__local {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.zone__local-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    text-align: center;
}

.zone__local-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.zone__local-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.zone__city-tag {
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    border: 2px solid #e8e8e8;
    transition: all 0.3s;
}

.zone__city-tag:hover {
    border-color: #007bff;
    color: #007bff;
    transform: translateY(-2px);
}

.zone__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.zone__info-card {
    background: #fff;
    padding: 40px;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone__info-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.zone__info-card--highlight {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
}

.zone__info-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #111;
    font-weight: 700;
}

.zone__info-card--highlight .zone__info-title {
    color: #fff;
}

.zone__info-list {
    list-style: none;
}

.zone__info-list li {
    padding: 18px 0;
    padding-left: 40px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.zone__info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
    font-size: 1.4rem;
}

.zone__info-card--highlight .zone__info-list li {
    color: rgba(255, 255, 255, 0.9);
}

.zone__info-card--highlight .zone__info-list li::before {
    color: #fff;
}

.zone__info-text {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.zone__info-card--highlight .zone__info-text {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
    .zone__departments {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zone__info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zone__departments {
        grid-template-columns: 1fr;
    }
    
    .zone__title {
        font-size: 1.8rem;
    }
    
    .zone__description {
        font-size: 1rem;
    }
    
    .zone__city-name {
        font-size: 1.1rem;
    }
    
    .zone__city-distance {
        font-size: 0.9rem;
    }
    
    .zone__local {
        padding: 30px;
    }
}

/* ===================================
   ABOUT SECTION - Professional Real Estate
   =================================== */
.about {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about__image {
    width: 100%;
    position: relative;
}

.about__image-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about__title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about__subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.about__text {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
    font-size: 1.1rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 35px 0;
}

.about__stat {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
}

.about__stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.about__stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about__network {
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #111;
    text-align: center;
    border-radius: 16px;
    border: 2px solid #e8e8e8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.about__network:hover {
    border-color: #007bff;
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
    transform: translateY(-3px);
}

.about__network-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #007bff;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .about {
        grid-template-columns: 1fr;
    }
    
    .about__title {
        font-size: 1.8rem;
    }
    
    .about__subtitle {
        font-size: 1rem;
    }
    
    .about__text {
        font-size: 1rem;
    }
    
    .about__stats {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TESTIMONIALS - Professional Real Estate
   =================================== */
.testimonials {
    margin-top: 40px;
}

.testimonial {
    background: #fff;
    padding: 35px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: all 0.3s;
}

.testimonial:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial__rating {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial__text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial__author {
    font-style: normal;
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
}

/* ===================================
   CONTACT SECTION - Professional Real Estate
   =================================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact__info-title {
    font-size: 1.8rem;
    margin-bottom: 35px;
    color: #fff;
    font-weight: 700;
}

.contact__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
}

.contact__icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.contact__value {
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
}

.contact__value:hover {
    text-decoration: underline;
}

.contact__label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.contact__social {
    margin-top: 35px;
}

.contact__social-title {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.contact__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    margin-right: 12px;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact__social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.contact__social-link svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

@media (max-width: 992px) {
    .contact {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        order: 2;
    }
    
    .contact__form {
        order: 1;
    }
}

/* ===================================
   FOOTER - Modern Light
   =================================== */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
    padding: 60px 0 30px;
    border-top: 2px solid #e8e8e8;
}

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

.footer__brand-text {
    font-weight: 700;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 8px;
    color: #111;
}

.footer__brand-subtitle {
    font-size: 0.75rem;
    color: #666;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer__brand-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

.footer__links-title,
.footer__services-title,
.footer__contact-title {
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
}

.footer__links-list,
.footer__services-list,
.footer__contact-list {
    list-style: none;
}

.footer__links-list li,
.footer__services-list li,
.footer__contact-list li {
    margin-bottom: 12px;
}

.footer__links-list a,
.footer__services-list a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer__links-list a:hover,
.footer__services-list a:hover {
    color: #007bff;
}

.footer__contact-list li {
    color: #555;
    font-size: 0.9rem;
}

.footer__contact-list a {
    color: #007bff;
    font-weight: 600;
}

.footer__bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    font-size: 0.85rem;
    color: #666;
}

.footer__legal {
    display: flex;
    gap: 25px;
}

.footer__legal a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer__legal a:hover {
    color: #007bff;
}

@media (max-width: 992px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
    
    .btn--large {
        padding: 16px 35px;
    }
}
