/* ====================
   CSS VARIABLES - NEW LAKE WYLIE BRAND
   ==================== */
:root {
    --red: #C41230;
    --red-dark: #A00E27;
    --orange: #E8611A;
    --orange-light: #F4A020;
    --navy: #0A3D7A;
    --navy-dark: #061E40;
    --blue: #1B6FBF;
    --sand: #FDF6EE;
    --sand-dark: #F5EAD8;
    --white: #FFFFFF;
    --text-dark: #1A2332;
    --text-mid: #3D4F63;
    --text-light: #6B7F94;
    --border-light: #E8DDD0;
    --shadow-sm: 0 2px 8px rgba(10, 61, 122, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 61, 122, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 61, 122, 0.16);
    --shadow-warm: 0 8px 32px rgba(196, 18, 48, 0.14);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-lg: 20px;
}

/* ====================
   GLOBAL RESETS
   ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    background: var(--sand);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ====================
   UTILITY
   ==================== */
.container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.7;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    text-align: center;
    display: block;
    margin-bottom: 0.75rem;
}

.warm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

/* ====================
   HEADER
   ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(10, 61, 122, 0.1);
}

.header-accent-bar {
    height: 5px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 30%, var(--orange) 65%, var(--red) 100%);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { height: 100px; width: auto; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--red); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    transform: translateY(100%);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 230px;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    border-top: 3px solid var(--orange);
    margin-top: 0;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--sand);
    color: var(--red);
    padding-left: 1.75rem;
}

/* CTA Buttons in nav */
.cta-button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.65rem 1.3rem;
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.cta-pay {
    background: var(--navy);
    color: var(--white);
}

.cta-pay:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cta-contact {
    background: var(--red);
    color: var(--white);
}

.cta-contact:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-warm);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ====================
   HERO
   ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 2rem 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/lake-wylie-6.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-logo-wrap {
    margin-bottom: 1.25rem;
}

.hero-logo {
    height: auto;
    width: 350px;
    max-width: 90%;
    margin: 0 auto;
    filter: drop-shadow(0 3px 16px rgba(0,0,0,0.45));
}

/* Homepage header - no logo, nav centred */
.header-home .nav-container {
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 30, 64, 0.38) 0%, rgba(10, 61, 122, 0.18) 50%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 160, 32, 0.25);
    border: 1px solid rgba(244, 160, 32, 0.6);
    color: var(--orange-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero h1 span { color: var(--orange-light); }

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: var(--red);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(196, 18, 48, 0.4);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(196, 18, 48, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 120px;
}

.hero-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--orange-light);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    display: block;
}

/* ====================
   TRUST BAR
   ==================== */
.trust-bar {
    background: var(--navy);
    padding: 1.25rem 2rem;
    overflow: hidden;
}

.trust-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
}

.trust-icon {
    font-size: 1.2rem;
    color: var(--orange-light);
}

/* ====================
   SECTIONS - GENERAL
   ==================== */
.section-pad { padding: 5rem 2rem; }
.section-pad-sm { padding: 3.5rem 2rem; }
.bg-white { background: var(--white); }
.bg-sand { background: var(--sand); }
.bg-sand-dark { background: var(--sand-dark); }
.bg-navy { background: var(--navy); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ====================
   LOCATIONS SECTION
   ==================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.location-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border-light);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(10, 61, 122, 0.2);
}

.location-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image-wrap img { transform: scale(1.04); }

.location-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 30, 64, 0.75) 0%, transparent 60%);
}

.location-image-label {
    position: absolute;
    bottom: 1.25rem;
    left: 1.5rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.location-image-label small {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.location-card-body {
    padding: 1.75rem 2rem 2rem;
}

.location-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.location-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--text-mid);
}

.location-meta-item .meta-icon { color: var(--orange); font-size: 1rem; }

.unit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.unit-tag {
    background: var(--sand);
    border: 1px solid var(--border-light);
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.location-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ====================
   BUTTONS - GENERAL
   ==================== */
.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 9px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    padding: 0.875rem 2rem;
    border-radius: 9px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 9px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-orange:hover {
    background: #D4560F;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-rent {
    background: var(--red);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 9px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-rent:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
}

/* ====================
   FEATURES GRID
   ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-light);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.icon-red { background: rgba(196, 18, 48, 0.1); color: var(--red); }
.icon-navy { background: rgba(10, 61, 122, 0.1); color: var(--navy); }
.icon-orange { background: rgba(232, 97, 26, 0.1); color: var(--orange); }
.icon-blue { background: rgba(27, 111, 191, 0.1); color: var(--blue); }

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ====================
   ABOUT / CTA BANDS
   ==================== */
.band-navy {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 2rem;
}

.band-orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    color: var(--white);
    padding: 4rem 2rem;
}

.band-navy .section-title,
.band-orange .section-title { color: var(--white); }

.band-navy .section-subtitle { color: rgba(255, 255, 255, 0.8); }
.band-orange .section-subtitle { color: rgba(255, 255, 255, 0.9); }

/* ====================
   UNIT CARDS
   ==================== */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.unit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-light);
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(10, 61, 122, 0.18);
}

.popular-banner {
    position: absolute;
    top: 16px;
    right: -30px;
    background: var(--orange);
    color: var(--white);
    padding: 4px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    letter-spacing: 1px;
}

.unit-card-content { padding: 2rem; flex: 1; }

.unit-card-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.unit-image {
    width: 220px;
    height: 220px;
    background: var(--sand);
    border-radius: var(--radius);
    flex-shrink: 0;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.unit-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 0.4rem;
}

.unit-dimensions {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.unit-amenities {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
}

.unit-amenities h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.unit-amenities p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.unit-card-footer {
    padding: 1.5rem 2rem;
    background: var(--sand);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.unit-pricing { display: flex; gap: 1.75rem; align-items: center; }

.price-option { text-align: center; }

.price-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
}

.price-period { font-size: 1rem; color: var(--text-light); }

/* ====================
   LOCATION PAGE SPECIFICS
   ==================== */
.main-content { padding-top: 120px; min-height: 100vh; background: var(--sand); }

.location-header {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
}

.location-header-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2rem;
    align-items: start;
}

.location-map {
    width: 100%;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--sand);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.location-address { color: var(--text-light); font-size: 1rem; margin-bottom: 1.5rem; }

.location-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.detail-item { display: flex; align-items: flex-start; gap: 0.75rem; }

.detail-icon {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.detail-icon svg { width: 18px; height: 18px; }

.detail-content strong {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.detail-content span { font-weight: 600; color: var(--text-dark); font-size: 0.92rem; }

.location-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Section specifics on location pages */
.features-section {
    padding: 3.5rem 2rem;
    background: var(--white);
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.section-header { text-align: center; margin-bottom: 2.5rem; }

.feature-item { text-align: center; padding: 1.5rem; }

.feature-item .feature-icon { margin: 0 auto 1rem; }

.feature-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.feature-item p { color: var(--text-light); font-size: 0.9rem; }

.content-section { padding: 3rem 0; }

.glass-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1.5rem 0;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.solution-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-light); }

.solution-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--red);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.solution-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 1rem; font-size: 0.95rem; }
.solution-card ul { color: var(--text-dark); line-height: 1.8; margin-left: 1.5rem; list-style: disc; }

.service-area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
    margin: 2rem 0;
}

.area-column h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.88rem;
}

.area-column ul { list-style: none; color: var(--text-dark); line-height: 2.2; }

.faq-item {
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
    border-left: 4px solid var(--orange);
    border-top: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.faq-item p { color: var(--text-dark); line-height: 1.75; font-size: 0.95rem; }

.why-choose-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.why-choose-item { text-align: center; padding: 1.5rem; }

.why-choose-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--white);
}

.why-choose-item p { color: rgba(255, 255, 255, 0.82); line-height: 1.65; font-size: 0.95rem; }

.coming-soon {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-left: 0.4rem;
    vertical-align: middle;
}

/* ====================
   BLOG
   ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

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

.blog-card-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 2.5rem 1.75rem 1.5rem;
    position: relative;
}

.blog-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange-light);
    margin-bottom: 0.6rem;
}

.blog-card-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.35;
}

.blog-card-body { padding: 1.5rem 1.75rem 2rem; }
.blog-card-body p { color: var(--text-light); line-height: 1.7; font-size: 0.95rem; margin-bottom: 1.25rem; }

.blog-read-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-read-more:hover { color: var(--red-dark); gap: 0.7rem; }

/* Blog Article Pages */
.blog-article { padding-top: 120px; background: var(--sand); min-height: 100vh; }

.article-container {
    max-width: 880px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.article-header {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.article-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 0.75rem;
}

.article-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.article-meta { color: var(--text-light); font-size: 0.88rem; }

.article-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1rem;
}

.article-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--navy);
    margin: 2rem 0 1rem;
    padding-top: 0.5rem;
    border-top: 2px solid var(--sand-dark);
}

.article-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--red);
    margin: 1.5rem 0 0.75rem;
}

.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1rem 0 1.25rem 1.75rem; }
.article-body li { margin-bottom: 0.5rem; }

.article-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--white);
}

.article-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.article-cta p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ====================
   SHORT HERO (inner pages)
   ==================== */
.hero-short {
    min-height: 42vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 2rem 4rem;
}

.hero-short::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/lake-wylie-6.jpg') center 40%/cover no-repeat;
    z-index: 0;
}

.hero-short::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 30, 64, 0.78) 0%, rgba(10, 61, 122, 0.6) 60%, rgba(232, 97, 26, 0.2) 100%);
    z-index: 1;
}

.hero-short-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-short h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-short p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* ====================
   CONTACT
   ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    text-align: center;
}

.contact-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--red);
}

.contact-card p { margin-bottom: 0.6rem; font-size: 1rem; color: var(--text-dark); }
.contact-card a { color: var(--navy); font-weight: 700; font-size: 1.15rem; }

.map-container { margin-top: 1.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-container iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ====================
   HIGHLIGHT BOX
   ==================== */
.highlight-box {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin: 2.5rem 0;
    box-shadow: var(--shadow-warm);
}

.highlight-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.highlight-box ul { list-style: none; }
.highlight-box li { padding: 0.6rem 0 0.6rem 2rem; position: relative; opacity: 0.93; }
.highlight-box li::before { content: '&#10003;'; position: absolute; left: 0; font-weight: 700; font-size: 1.1rem; color: rgba(255,255,255,0.8); }

/* ====================
   FOOTER
   ==================== */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding-top: 0;
}

.footer-wave {
    height: 60px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.footer-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 3rem;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    max-width: 280px;
}

.footer-logo { height: 70px; width: auto; }

.footer-phone {
    margin-top: 1.25rem;
}

.footer-phone a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--orange-light);
    display: inline-block;
}

.footer-phone a:hover { color: var(--white); }

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--orange-light);
    margin-bottom: 1.25rem;
}

.footer-section ul { list-style: none; }

.footer-section li {
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.72);
    transition: var(--transition);
}

.footer-section a:hover { color: var(--white); }

.footer-cta {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 1.25rem;
    transition: var(--transition);
}

.footer-cta:hover { background: var(--red); color: var(--white); }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    max-width: 1320px;
    margin: 0 auto;
}

.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: var(--white); }

/* ====================
   BUSINESS DIRECTORY
   ==================== */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.biz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.biz-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange-light); }

.biz-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.biz-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.biz-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ====================
   RESPONSIVE
   ==================== */
@media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        width: 85%;
        max-width: 360px;
        padding: 5rem 2rem 2rem;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
        transition: left 0.3s ease;
        gap: 0.25rem;
        align-items: flex-start;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active { left: 0; }

    .nav-menu li { width: 100%; }

    .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1rem;
        display: block;
        margin-top: 0.25rem;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--sand);
        border-radius: var(--radius);
        margin-top: 0.25rem;
        border-top: none;
        display: none;
        padding: 0.25rem 0;
    }

    .dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu a { padding: 0.6rem 1rem; font-size: 0.92rem; }

    .logo { height: 70px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-short h1 { font-size: 2rem; }
    .section-title { font-size: 1.9rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-wave { display: none; }
    .footer { padding-top: 3rem; }
    .locations-grid { grid-template-columns: 1fr; }
    .units-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .location-header-content { grid-template-columns: 1fr; }
    .unit-card-footer { flex-direction: column; align-items: stretch; }
    .unit-pricing { justify-content: space-around; }
    .btn-rent { width: 100%; text-align: center; }
    .unit-image { width: 160px; height: 160px; }
    .hero-stats { gap: 0.75rem; }
    .hero-stat { min-width: 90px; }
    .article-body { padding: 1.75rem; }
    .article-header { padding: 1.75rem; }
}

@media (max-width: 480px) {
    .nav-container { padding: 0.75rem 1rem; }
    .hero h1 { font-size: 1.9rem; }
    .unit-card-header { flex-direction: column; }
    .unit-image { width: 100%; height: 180px; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-secondary { text-align: center; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .feature-icon { width: 56px; height: 56px; font-size: 1.5rem; }
}
