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

html {
    width: 100%;
    overflow-x: hidden;
}

:root {
    --primary-color: #0f1c2e;
    --secondary-color: #1a2332;
    --accent-color: #c8a35f;
    --dark-accent: #a17f43;
    --text-color: #ffffff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.65) 0%, rgba(26, 35, 50, 0.65) 100%), url('NSR0025.jpg');
    background-size: cover;
    background-position: 1500% 95%;
    background-attachment: fixed;
    position: relative;
    z-index: 100;
    box-shadow: none;
    border-bottom: none;
    backdrop-filter: none;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 220px;
    width: auto;
    transition: transform 0.3s;
    background: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    margin-left: 1.5rem;
    margin-top: -36px;
    min-width: 0;
    align-self: center;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 900;
    font-size: 0.95rem;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
    padding-bottom: 5px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.cta-button {
    padding: 12px 28px;
    background: #c8a35f;
    color: #1e3a5f;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(200, 163, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.mobile-cta-item {
    display: none;
}

.desktop-cta-item {
    display: inline-flex;
    align-items: center;
}

.cta-button:hover {
    background: #d4b470;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 163, 95, 0.6);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    margin-left: auto;
    z-index: 1001;
}

.hamburger-menu span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

/* Mobile Navigation Menu */
.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 28, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0 1rem 0;
    gap: 0;
    margin: 0;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-links.active li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    text-align: center;
    width: 100%;
    list-style: none;
}

.nav-links.active li:last-child {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.nav-links.active a {
    display: block;
    width: 100%;
    text-align: center;
    color: white !important;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    padding: 0.25rem 0;
}

.nav-links.active .mobile-cta-item {
    display: block !important;
}

.nav-links.active .mobile-cta-item {
    display: block !important;
    border-bottom: none !important;
}

.nav-links.active .cta-button {
    display: inline-block !important;
    margin: 0.5rem auto 0 auto;
    padding: 10px 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, rgba(26, 35, 50, 0.65) 0%, rgba(26, 35, 50, 0.70) 100%), url('NSR0025.jpg');
    background-size: cover;
    background-position: 1500% 95%;
    background-attachment: fixed;
    color: white;
    padding: 20px 20px 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
    transform: translateY(-40px);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    text-transform: capitalize;
}
.yellow-highlight {
    color: #ffffff;
    font-weight: 400;
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.btn-primary {
    padding: 14px 40px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #c8a35f;
    color: #1e3a5f;
    box-shadow: 0 2px 8px rgba(200, 163, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #d4b470;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 163, 95, 0.6);
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: #0f1c2e;
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.company-section {
    padding: 60px 20px;
    background: #0f1c2e;
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.company-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.company-overview {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.company-overview p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.company-section .features-grid {
    margin-top: 3rem;
}

.about-section {
    padding: 60px 20px;
    background: #0f1c2e;
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-bio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    text-align: left;
}

.about-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    aspect-ratio: 3/4;
    object-fit: cover;
    width: 320px;
    filter: saturate(1.2) contrast(1.15) brightness(1.05);
}

.about-photo img:hover {
    transform: scale(1.02);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 0;
}

.about-title {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.gold-text {
    color: var(--accent-color);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .about-bio {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-bio {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-photo img {
        aspect-ratio: 3/4;
    }

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

    .about-text h2 {
        text-align: center;
    }

    .about-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .about-bio {
        gap: 1.5rem;
    }

    .about-photo {
        max-width: 100%;
    }

    .about-photo img {
        max-width: 100%;
        aspect-ratio: 3/4;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-title {
        font-size: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

.gold-text {
    color: var(--accent-color);
    font-weight: 400;
}

.about-intro {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Properties Section */
.properties-section {
    padding: 60px 20px;
    background: #0f1c2e;
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.properties-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.properties-intro {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.property-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    max-width: 100%;
    display: block;
}

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

.view-all-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-secondary {
    padding: 14px 40px;
    background: #c8a35f;
    color: #1e3a5f;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(200, 163, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: #d4b470;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 163, 95, 0.6);
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #0f1c2e;
    color: white;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form input {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(15, 28, 46, 0.5);
    color: white;
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(15, 28, 46, 0.7);
    box-shadow: 0 0 0 4px rgba(200, 163, 95, 0.1);
}

.contact-cta {
    margin-top: 3rem;
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.contact-status {
    grid-column: 1 / -1;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--success-color);
    min-height: 1.5rem;
    text-align: center;
}

.contact-status.error {
    color: var(--warning-color);
}

/* Footer */
footer {
    background: #0f1c2e;
    color: white;
    text-align: center;
    padding: 2.5rem 20px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(200, 163, 95, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200, 163, 95, 0.3);
}

.footer-content > p {
    margin-top: 0.5rem;
}

.admin-link {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

.admin-link a {
    color: var(--accent-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.admin-link a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Chatbot Styles */
.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #c8a35f;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e3a5f;
    z-index: 1000;
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message, .user-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
}

.bot-message {
    background: white;
    color: #0f1c2e !important;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
}

.bot-message * {
    color: #0f1c2e !important;
}

.user-message {
    background: var(--accent-color);
    color: #000000 !important;
    align-self: flex-end;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-message * {
    color: #000000 !important;
}

.bot-message p, .user-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #0f1c2e !important;
}

.chatbot-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    font-family: inherit;
    font-size: 0.9rem;
}

.chatbot-input input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.chatbot-input button {
    background: var(--accent-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    background: var(--dark-accent);
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    animation: fadeIn 0.3s ease;
}

.quick-option {
    background: white;
    border: 2px solid var(--accent-color);
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: left;
}

.quick-option:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

@media (max-width: 480px) {
    .chatbot-container {
        width: calc(100vw - 40px);
        right: 20px;
        bottom: 90px;
        height: 450px;
    }
    
    .chatbot-toggle {
        bottom: 20px;
        right: 20px;
    }
}

/* ===== TABLET (768px and below) ===== */
@media (max-width: 768px) {
    .navbar {
        background: #0f1c2e;
        backdrop-filter: none;
    }

    .navbar .container {
        padding: 1rem 15px;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo-image {
        height: 85px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links li {
        white-space: nowrap;
    }

    .desktop-cta {
        display: none;
    }

    .desktop-cta-item {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1000;
    }

    .hero h1 {
        font-size: 2.2rem;
        overflow-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero {
        padding: 50px 15px 50px 15px;
        min-height: auto;
        background-position: 1500% 95%;
        background-size: cover;
        background-attachment: fixed;
    }

    .about-section h2,
    .properties-section h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .about-section,
    .properties-section,
    .company-section {
        padding: 60px 15px;
    }

    .contact {
        padding: 60px 15px;
    }

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

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

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

    .properties-intro {
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* ===== MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .navbar {
        background: #0f1c2e;
        backdrop-filter: none;
    }

    .navbar .container {
        padding: 1rem 10px;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        flex-shrink: 0;
        margin: 0;
    }

    .logo-image {
        height: 110px;
        flex-shrink: 0;
    }

    .nav-links {
        display: none;
    }

    .desktop-cta {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1000;
    }

    .hero h1 {
        font-size: 1.75rem;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
        line-height: 1.3;
        width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
        line-height: 1.5;
        overflow-wrap: break-word;
        word-wrap: break-word;
        width: 100%;
        text-align: center;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .hero {
        padding: 40px 5px 40px 5px;
        min-height: auto;
        width: 100%;
        overflow-x: hidden;
        background-position: 1500% 95%;
        background-attachment: scroll;
        background-size: cover;
    }

    .hero-content {
        transform: translateY(0);
        max-width: 100%;
        padding: 0 10px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
    }

    .about-section h2,
    .properties-section h2,
    .contact h2 {
        font-size: 1.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .properties-intro {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 10px;
    }

    .about-intro {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .company-overview {
        gap: 1rem;
    }

    .company-overview p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 0.95rem;
        width: calc(100% - 20px);
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }

    .about-section,
    .properties-section,
    .contact {
        padding: 40px 10px;
    }

    .contact-form input {
        padding: 12px 12px;
        font-size: 16px;
    }

    .property-card {
        aspect-ratio: 3/2;
        max-width: 100%;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}
