input{
	outline: none !important;
}
/* css/style.css */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: #b8860b;
    color: white;
    border-color: #b8860b;
}

.btn-primary:hover {
    background-color: #9a7209;
    border-color: #9a7209;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: #b8860b;
    border-color: #b8860b;
}

.btn-outline:hover {
    background-color: #b8860b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.2);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo h1 {
    font-size: 28px;
    color: #222;
}

.logo span {
    color: #b8860b;
}

.nav-list {
    display: flex;
    list-style: none;
}
.nav-list li{
	display: flex;
	align-items: center;
}

.nav-link {
    margin: 0 7px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #b8860b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #b8860b;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 80px;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #b8860b;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-price {
    font-size: 36px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 30px;
}

.swiper-button-next, .swiper-button-prev {
    color: white;
    background-color: rgba(184, 134, 11, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(184, 134, 11, 0.9);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: gray;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: #b8860b;
}

/* Properties Section */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.property-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #b8860b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.property-badge.sold {
    background-color: #333;
}

.property-content {
    padding: 25px;
}

.property-type {
    font-size: 14px;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.property-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.property-features span {
    font-size: 14px;
    color: #666;
}

.property-features i {
    margin-right: 5px;
    color: #b8860b;
}

.property-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.property-location i {
    margin-right: 5px;
    color: #b8860b;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.section-footer {
    text-align: center;
}

/* Services Section */
.services {
    background-color: #f5f5f5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 36px;
    color: #b8860b;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.service-description {
    color: #666;
    font-size: 16px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Agents Section */
.agents-slider {
    padding-bottom: 60px;
}

.agent-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.agent-image {
    height: 300px;
    overflow: hidden;
}

.agent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.agent-card:hover .agent-image img {
    transform: scale(1.05);
}

.agent-content {
    padding: 30px;
}

.agent-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.agent-title {
    font-size: 16px;
    color: #b8860b;
    margin-bottom: 10px;
}

.agent-experience {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.agent-contact {
    margin-bottom: 20px;
}

.agent-contact a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.agent-contact a:hover {
    color: #b8860b;
}

.agent-contact i {
    margin-right: 10px;
    width: 20px;
    color: #b8860b;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 30px;
}

.quote-icon {
    font-size: 36px;
    color: #b8860b;
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.author-role {
    font-size: 14px;
    color: #b8860b;
}

/* Neighborhoods Section */
.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.tab-btn:hover {
    border-color: #b8860b;
    color: #b8860b;
}

.tab-btn.active {
    background-color: #b8860b;
    border-color: #b8860b;
    color: white;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-pane-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tab-text {
    flex: 1;
}

.neighborhood-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.neighborhood-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.neighborhood-stats {
    display: flex;
    justify-content: space-between;
}

.neighborhood-stat {
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Calculator Section */
.calculator {
    background-color: #f5f5f5;
}

.calculator-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.calculator-text {
    flex: 1;
}

.calculator-result {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-label {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.result-amount {
    font-size: 48px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.result-note {
    font-size: 14px;
    color: #999;
}

.calculator-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.form-group input[type="range"] {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    background-color: #eee;
    border-radius: 4px;
    outline: none;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background-color: #b8860b;
    border-radius: 50%;
    cursor: pointer;
}

.range-value {
    font-size: 18px;
    font-weight: 600;
    color: #b8860b;
    margin-top: 10px;
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-card {
    display: flex;
    margin-bottom: 30px;
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: #b8860b;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.info-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-form-container {
    flex: 1;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background-color: #222;
    color: #aaa;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #b8860b;
}

.footer-tagline {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.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%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #b8860b;
    transform: translateY(-5px);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column {
    min-width: 200px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #b8860b;
}

.footer-column ul li i {
    margin-right: 10px;
    color: #b8860b;
    width: 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom i {
    color: #b8860b;
    margin: 0 5px;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: #222;
    color: white;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #b8860b;
}

.modal-body {
    padding: 40px;
}

.property-modal-content {
    display: flex;
    gap: 30px;
}

.property-modal-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.property-modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.property-modal-details {
    flex: 1;
}

.property-modal-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.property-modal-location {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.property-modal-location i {
    margin-right: 10px;
    color: #b8860b;
}

.property-modal-price {
    font-size: 36px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.property-modal-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    margin-right: 10px;
    color: #b8860b;
    width: 20px;
}

.property-modal-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-modal-content {
    text-align: center;
    padding: 30px 0;
}

.modal-icon {
    font-size: 80px;
    color: #b8860b;
    margin-bottom: 25px;
}

.modal-message {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
    font-family: 'Playfair Display', serif;
}

.modal-details {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.modal-close-btn {
    margin-top: 20px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #b8860b;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #9a7209;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1250px) {
    .properties-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    

    
    .footer-links {
        gap: 40px;
    }
    .nav-link{
    	font-size: 14px;
    }
    .logo h1{
    	font-size: 18px;
    }
    .hero-slide .container{
    	padding: 0 50px;
    }
    .header-actions .btn{
    	padding: 12px;
    	font-size: 12px;
    }

}

@media (max-width: 992px) {
    .about-content,
    .calculator-content,
    .contact-content,
    .tab-pane-content {
        flex-direction: column;
    }
    .about,
    .agent-content{
    	text-align: center;
    }
    .nav {
        position: relative;
    }
    
    .nav-list {
        position: fixed;
        top: 67px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        margin: 15px 0;
        font-size: 18px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .logo h1{
    	font-size: 27px;
    }

}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .properties-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .property-modal-content {
        flex-direction: column;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .neighborhood-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .swiper-button-next, .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-price {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    .tab-pane-content{
    	padding: 30px;
    }
    .testimonial-card{
    	padding: 20px 15px;
    }
    .property-content{
    	padding: 15px;
    }
    .hero-slide .container{
    	padding: 0 15px;
    }
    .calculator-form{
    	width: 100%;
    }
}