/*
Theme Name: Paradise Lifestyle Home Watch
Theme URI: https://paradiselifestylehomewatch.com
Author: NetOne360
Author URI: https://netone360.com
Description: Custom WordPress theme for Paradise Lifestyle Home Watch - Venice, Florida
Version: 1.0.0
License: Private
Text Domain: paradise-hw
Tags: custom, home-watch, local-seo
*/

/* ============================================================
   GOOGLE FONTS - BARLOW
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary: #2a97d4;
    --primary-dark: #1f7ab0;
    --primary-light: #4db0e8;
    --alt: #2d2d2d;
    --alt-dark: #1a1a1a;
    --alt-light: #444444;
    --white: #ffffff;
    --off-white: #f7f8fa;
    --light-gray: #eef0f3;
    --mid-gray: #c4c8ce;
    --dark-gray: #6b7280;
    --text: #1a1a2e;
    --text-light: #4a4a5a;

    --font: 'Barlow', sans-serif;

    --max-width: 1280px;
    --section-pad: 100px;
    --section-pad-sm: 60px;

    --radius: 4px;
    --radius-lg: 8px;

    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
    --shadow-primary: 0 8px 32px rgba(42,151,212,0.25);

    --transition: all 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--alt);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-light);
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.container--narrow {
    max-width: 860px;
}

.container--wide {
    max-width: 1440px;
}

.section {
    padding: var(--section-pad) 0;
}

.section--sm {
    padding: var(--section-pad-sm) 0;
}

.section--dark {
    background: var(--alt);
    color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

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

.section--primary {
    background: var(--primary);
    color: var(--white);
}

.section--primary h1,
.section--primary h2,
.section--primary h3,
.section--primary h4 {
    color: var(--white);
}

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

.section--light {
    background: var(--off-white);
}

.grid {
    display: grid;
    gap: 32px;
}

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

.flex {
    display: flex;
    gap: 32px;
}

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

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

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

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn--white {
    background: var(--white);
    color: var(--alt);
    border: 2px solid var(--white);
}

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

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--alt);
    border-color: var(--white);
}

.btn--lg {
    padding: 20px 48px;
    font-size: 0.9rem;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

#site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

#site-header.header--transparent {
    background: transparent;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 90px;
    max-width: 100%;
}

.site-logo img {
    height: 56px;
    width: auto;
    transition: var(--transition);
}

#site-header.scrolled .site-logo img {
    height: 52px;
}

/* Top bar */
.header-topbar {
    background: var(--alt);
    color: var(--white);
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.header-topbar a {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-topbar a:hover {
    color: var(--primary);
}

.header-topbar svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Main nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--alt);
    padding: 8px 14px;
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.current {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.current::after {
    transform: scaleX(1);
}

#site-header.header--transparent .main-nav a {
    color: var(--white);
}

#site-header.header--transparent .main-nav a:hover {
    color: var(--primary-light);
}

/* Dropdown */
.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    border-top: 3px solid var(--primary);
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--alt) !important;
    letter-spacing: 0.08em;
}

.dropdown a:hover {
    background: var(--off-white);
    color: var(--primary) !important;
    padding-left: 26px;
}

.dropdown a::after {
    display: none;
}

.nav-cta {
    margin-left: 12px;
}

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

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--alt);
    transition: var(--transition);
}

#site-header.header--transparent .mobile-toggle span {
    background: var(--white);
}

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--alt);
    z-index: 999;
    padding: 100px 40px 40px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: block;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav-close {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(62, 53, 66, 0.85) 0%,
        rgba(62, 53, 66, 0.60) 50%,
        rgba(42, 151, 212, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 40px 100px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
}

.hero-content .eyebrow {
    color: var(--primary-light);
}

.hero-content h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    max-width: 700px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 560px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: var(--alt);
    padding: 160px 40px 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(42,151,212,0.15));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .sep {
    color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
    color: var(--primary);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(42,151,212,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--alt);
}

.service-card p {
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 560px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-left: 4px solid var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--alt);
    margin-top: 8px;
    margin-bottom: 28px;
}

/* ============================================================
   TEAM MEMBERS
   ============================================================ */
.team-member {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}

.team-member.reverse {
    grid-template-columns: 1fr 360px;
}

.team-member.reverse .team-photo {
    order: 2;
}

.team-member.reverse .team-info {
    order: 1;
}

.team-photo {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-info {
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.team-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--alt);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(42,151,212,0.2) 0%, transparent 70%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(42,151,212,0.15) 0%, transparent 70%);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.area-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.area-card:hover::after {
    transform: scaleX(1);
}

.area-card h3 {
    font-size: 1rem;
    color: var(--alt);
    margin-bottom: 8px;
}

.area-card p {
    font-size: 0.88rem;
    color: var(--dark-gray);
    margin: 0;
}

.area-arrow {
    position: absolute;
    top: 28px;
    right: 28px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.area-card:hover .area-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   TRUST BAR / STATS
   ============================================================ */
.trust-bar {
    background: var(--primary);
    padding: 48px 40px;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    color: var(--white);
}

.trust-stat .number {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.trust-stat .label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

.trust-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.3);
}

/* ============================================================
   COMMUNITY PAGE SPECIFIC
   ============================================================ */
.community-intro {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start;
}

.community-sidebar {
    position: sticky;
    top: 120px;
}

.contact-widget {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--light-gray);
}

.contact-widget h3 {
    font-size: 1rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--primary);
}

.contact-widget-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-widget-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-widget-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-widget-item a {
    color: var(--alt);
    font-weight: 600;
}

.contact-widget-item a:hover {
    color: var(--primary);
}

.communities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.community-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--alt);
    transition: var(--transition);
    text-decoration: none;
}

.community-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(4px);
}

.community-link svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.community-link:hover svg {
    color: var(--white);
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--alt);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--mid-gray);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42,151,212,0.1);
}

.form-control::placeholder {
    color: var(--mid-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    background: var(--alt-dark);
    color: var(--white);
}

.footer-main {
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.nhwa-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42,151,212,0.15);
    border: 1px solid rgba(42,151,212,0.3);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-top: 20px;
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-up {
    animation: fadeInUp 0.7s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --section-pad: 72px;
    }
    .main-nav, .nav-cta {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .about-split {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 380px;
    }
    .about-content {
        padding: 56px 40px;
    }
    .team-member,
    .team-member.reverse {
        grid-template-columns: 1fr;
    }
    .team-member.reverse .team-photo,
    .team-member.reverse .team-info {
        order: unset;
    }
    .team-photo {
        min-height: 320px;
    }
    .team-info {
        padding: 40px 36px;
    }
    .trust-bar-inner {
        gap: 48px;
    }
    .community-intro {
        grid-template-columns: 1fr;
    }
    .community-sidebar {
        position: static;
    }
    .header-topbar {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --section-pad: 56px;
    }
    .container {
        padding: 0 24px;
    }
    .header-inner {
        padding: 0 24px;
    }
    .hero-content {
        padding: 120px 24px 80px;
    }
    .grid--2, .grid--3 {
        grid-template-columns: 1fr;
    }
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .trust-bar-inner {
        flex-wrap: wrap;
        gap: 32px;
    }
    .trust-divider {
        display: none;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 48px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px;
    }
    .about-content {
        padding: 40px 24px;
    }
    .communities-list {
        grid-template-columns: 1fr;
    }
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
