/* ========================================
   BETTER DAYS REAL ESTATE - Modern CSS
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-bg: #ecf0f1;
    --dark-text: #2c3e50;
    --border-color: #bdc3c7;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: #f8f9fa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 47px;
    width: auto;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--light-bg);
    color: var(--accent-color);
    text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 3rem 0;
    color: white;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    width: 100%;
    max-width: 500px;
}

.hero-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 220px;
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    width: 100%;
    transform: scale(1.1);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.cta-button img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ========================================
   PAGE HEADER SECTION
   ======================================== */

.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.main-content {
    padding: 3rem 0;
    min-height: 60vh;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: block;
    padding: 0.75rem;
    background-color: var(--light-bg);
    border-radius: 4px;
    color: var(--dark-text);
    transition: var(--transition);
}

.sidebar-menu a:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.agent-card {
    text-align: center;
}

.agent-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.contact-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.contact-cta:hover {
    background-color: #c0392b;
    text-decoration: none;
    transform: scale(1.05);
}

/* Main Article */
.main-article {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.welcome-intro p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

/* Featured Services (Index Page) */
.featured-services {
    margin-top: 2.5rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    align-items: flex-start;
}

.feature-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-image {
    flex-shrink: 0;
}

.feature-image a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-image a:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.feature-content h3 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* ========================================
   RESOURCES SECTION (Buying Page)
   ======================================== */

.resources-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.resource-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-left-color: #e74c3c;
}

.resource-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.resource-item p {
    color: #555;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.resource-link:hover {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    text-decoration: none;
}

/* ========================================
   CTA SECTION (Buying Page & Other Pages)
   ======================================== */

.cta-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    border-radius: 8px;
    text-align: center;
}

.cta-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.cta-button-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
    text-decoration: none;
}

.cta-button-primary:active {
    transform: translateY(0);
}

/* ========================================
   BUYING INTRO SECTION
   ======================================== */

.buying-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.buying-intro a {
    color: #3498db;
    font-weight: 500;
}

.buying-intro a:hover {
    color: #e74c3c;
}

/* ========================================
   BENEFITS GRID (Selling Page)
   ======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   VALUATION SECTION (Selling Page)
   ======================================== */

.valuation-section {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 8px;
    text-align: center;
    color: white;
}

.valuation-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.valuation-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.valuation-section .cta-button-primary {
    background-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.valuation-section .cta-button-primary:hover {
    background-color: #c0392b;
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.5);
}

/* ========================================
   SELLING TIPS SECTION (Selling Page)
   ======================================== */

.selling-tips-section {
    margin-top: 3rem;
}

.selling-tips-section h2 {
    margin-bottom: 2rem;
}

/* ========================================
   SELLING INTRO SECTION
   ======================================== */

.selling-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.selling-intro a {
    color: #3498db;
    font-weight: 500;
}

.selling-intro a:hover {
    color: #e74c3c;
}

/* ========================================
   WHY SELL SECTION
   ======================================== */

.why-sell-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.why-sell-section h2 {
    margin-bottom: 1.5rem;
}

/* ========================================
   MANAGEMENT INTRO & VIDEO SECTION
   ======================================== */

.management-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.management-intro a {
    color: #3498db;
    font-weight: 500;
}

.management-intro a:hover {
    color: #e74c3c;
}

.management-video {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.management-video h2 {
    margin-bottom: 1.5rem;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   MANAGEMENT SERVICES SECTION
   ======================================== */

.management-services {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.management-services h2 {
    margin-bottom: 2rem;
}

/* ========================================
   MANAGEMENT BENEFITS SECTION
   ======================================== */

.management-benefits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.management-benefits h2 {
    margin-bottom: 2rem;
}

/* ========================================
   WHY MANAGE SECTION
   ======================================== */

.why-manage-section {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    border-radius: 8px;
}

.why-manage-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-manage-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-manage-section .cta-button-primary {
    display: block;
    margin: 2rem auto 0;
    width: fit-content;
}

/* ========================================
   PROPERTIES GALLERY (Rentals Page)
   ======================================== */

.properties-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.property-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.property-video {
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0;
    aspect-ratio: 16 / 9;
}

.property-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.property-info {
    padding: 1.5rem;
}

.property-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #2c3e50;
}

.property-location {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.property-link {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.property-link:hover {
    color: #e74c3c;
    border-bottom-color: #e74c3c;
    text-decoration: none;
}

/* ========================================
   RENTALS INTRO & BENEFITS SECTIONS
   ======================================== */

.rentals-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.rentals-intro a {
    color: #3498db;
    font-weight: 500;
}

.rentals-intro a:hover {
    color: #e74c3c;
}

.rentals-grid h2 {
    margin-bottom: 2rem;
}

.rental-benefits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.rental-benefits h2 {
    margin-bottom: 2rem;
}

.rental-interest {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    border-radius: 8px;
    text-align: center;
}

.rental-interest h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.rental-interest p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   RESOURCES INTRO SECTION
   ======================================== */

.resources-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.resources-intro a {
    color: #3498db;
    font-weight: 500;
}

.resources-intro a:hover {
    color: #e74c3c;
}

/* ========================================
   RESOURCES TIPS SECTION
   ======================================== */

.resources-tips {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.resources-tips h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #ecf0f1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tip-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.tip-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: white;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.separator {
    color: var(--border-color);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* ========================================
   CONTACT METHODS GRID
   ======================================== */

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.method-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.method-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.method-card .highlight {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.method-card .highlight a {
    color: #e74c3c;
    font-weight: 700;
    text-decoration: none;
}

.method-card .highlight a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.method-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */

.contact-form-section {
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-form-section h2 {
    margin-bottom: 1rem;
}

.contact-form-section > p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ========================================
   CONTACT MAP SECTION
   ======================================== */

.contact-map-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
}

.contact-map-section h2 {
    margin-bottom: 1rem;
}

.contact-map-section > p {
    margin-bottom: 1.5rem;
    color: #555;
}

.map-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        max-height: 500px;
        overflow-y: auto;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--light-bg);
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-radius: 0;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero .container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: row;
        gap: 1rem;
        max-width: 100%;
    }

    .hero-actions .cta-button {
        flex: 1;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .feature-card {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }

    .resources-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .valuation-section {
        padding: 2rem;
    }

    .valuation-content p {
        font-size: 1rem;
    }

    .cta-section {
        padding: 1.5rem;
    }

    .cta-button-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .main-article {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .method-card {
        padding: 1.5rem;
    }

    .method-card h3 {
        font-size: 1.15rem;
    }

    .method-card .highlight {
        font-size: 1rem;
    }

    .method-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-map-section {
        margin-top: 2rem;
    }

    .properties-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .property-info {
        padding: 1rem;
    }

    .property-info h3 {
        font-size: 1.1rem;
    }

    .rental-interest {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .rental-benefits {
        margin-top: 2rem;
    }

    .management-video {
        padding: 1.5rem;
    }

    .why-manage-section {
        padding: 1.5rem;
    }

    .tips-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .tip-item {
        padding: 1rem;
    }

    .tip-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 0.75rem;
    }

    .nav-menu {
        gap: 0;
    }

    .page-header {
        padding: 1.5rem 0;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-video {
        aspect-ratio: 16 / 9;
    }

    .hero-actions {
        flex-direction: column;
    }

    .feature-card {
        grid-template-columns: 80px 1fr;
        gap: 0.75rem;
    }

    .resource-item {
        padding: 1rem;
    }

    .resource-item h3 {
        font-size: 1.1rem;
    }

    .resource-item p {
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-card h3 {
        font-size: 1.05rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .benefit-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .valuation-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .valuation-content p {
        font-size: 0.95rem;
    }

    .selling-tips-section {
        margin-top: 2rem;
    }

    .sidebar {
        gap: 1.5rem;
    }

    .main-article {
        padding: 1rem;
    }

    .welcome-intro p {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 1rem;
    }

    .cta-button-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .method-card {
        padding: 1.25rem;
    }

    .method-card h3 {
        font-size: 1.1rem;
    }

    .method-card p {
        font-size: 0.9rem;
    }

    .method-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .contact-form-section {
        padding: 1rem;
        margin-top: 2rem;
    }

    .contact-form-section h2 {
        font-size: 1.3rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem;
        font-size: 0.9rem;
    }

    .contact-map-section {
        padding-top: 1.5rem;
    }

    .contact-map-section h2 {
        font-size: 1.3rem;
    }

    .properties-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .property-card {
        margin-bottom: 1rem;
    }

    .property-video {
        aspect-ratio: 16 / 9;
    }

    .property-info {
        padding: 1rem;
    }

    .property-info h3 {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .property-location {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .property-link {
        font-size: 0.9rem;
    }

    .rental-interest {
        padding: 1rem;
        margin-top: 2rem;
    }

    .rental-interest h2 {
        font-size: 1.3rem;
    }

    .rental-interest p {
        font-size: 0.95rem;
    }

    .management-video {
        padding: 1rem;
    }

    .management-video h2 {
        font-size: 1.3rem;
    }

    .why-manage-section {
        padding: 1rem;
    }

    .why-manage-section h2 {
        font-size: 1.3rem;
    }

    .why-manage-section p {
        font-size: 0.95rem;
    }

    .tips-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tip-item {
        padding: 1rem;
    }

    .tip-item h3 {
        font-size: 1.05rem;
    }

    .tip-item p {
        font-size: 0.9rem;
    }

    .resources-tips h2 {
        font-size: 1.3rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Mobile Menu Debug - Temporary Fix */
.nav-menu.active {
    max-height: 600px !important;
    overflow: visible !important;
}