/* ══════════════════════════════════════════════════════════════
   NYA Retirement - Premium Tropical Retirement Website
   Warm tropical tones: sunset orange, palm green, sandy beige
   Accessible: larger fonts, high contrast for retirement audience
   Mobile-first responsive
   ══════════════════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --sunset: #e07a3a;
    --sunset-light: #f0944e;
    --sunset-dark: #c4612a;
    --sunset-glow: #f9a825;
    --palm: #2d7a4f;
    --palm-light: #3d9963;
    --palm-dark: #1e5c39;
    --palm-muted: #4a8c66;
    --sand: #f5efe6;
    --sand-dark: #e8dece;
    --sand-light: #faf7f2;
    --cream: #fdfcf9;
    --white: #ffffff;
    --navy: #1a2e44;
    --navy-light: #2a4565;
    --text: #2c3e50;
    --text-light: #5a6f82;
    --text-muted: #8e9daa;
    --border: #e2dbd0;
    --shadow-sm: 0 2px 8px rgba(44,62,80,0.06);
    --shadow-md: 0 8px 30px rgba(44,62,80,0.1);
    --shadow-lg: 0 20px 60px rgba(44,62,80,0.15);
    --shadow-warm: 0 8px 30px rgba(224,122,58,0.15);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.75;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.2;
    color: var(--navy);
}

/* ══════════════════════════════════════
   Navigation
   ══════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 0.8rem 4rem;
}

.nav-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-logo em {
    font-style: italic;
    color: var(--sunset-light);
    font-weight: 400;
    font-size: 0.7em;
    letter-spacing: 0;
}

nav.scrolled .nav-logo { color: var(--navy); }

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

.nav-links a {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sunset-light);
    transition: width 0.3s;
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: white; }

nav.scrolled .nav-links a { color: var(--text); }
nav.scrolled .nav-links a:hover { color: var(--sunset); }

.nav-cta {
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-dark) 100%);
    color: white !important;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(224,122,58,0.3);
    transition: var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(224,122,58,0.4); color: white !important; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s;
    border-radius: 2px;
}

nav.scrolled .nav-hamburger span { background: var(--navy); }

/* ══════════════════════════════════════
   Hero
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(26,46,68,0.5) 0%,
            rgba(44,62,80,0.35) 40%,
            rgba(26,46,68,0.65) 100%),
        url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(224,122,58,0.2);
    border: 1px solid rgba(224,122,58,0.5);
    color: var(--sunset-light);
    padding: 0.5rem 1.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2rem;
    animation: fadeDown 0.8s ease-out;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero h1 .highlight { color: var(--sunset-light); }

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease-out 0.4s both;
}

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

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeUp 1s ease-out 0.6s both;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(224,122,58,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(224,122,58,0.45);
}

.btn-green {
    background: linear-gradient(135deg, var(--palm) 0%, var(--palm-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(45,122,79,0.3);
}

.btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(45,122,79,0.4);
}

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

.btn-ghost:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

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

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

/* ── Hero Stats ── */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    overflow: hidden;
    animation: fadeUp 1s ease-out 0.8s both;
}

.hero-stat {
    padding: 1.5rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--sunset-light);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ══════════════════════════════════════
   Section Shared Styles
   ══════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--sunset);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

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

.accent-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sunset), var(--sunset-dark));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ══════════════════════════════════════
   Why Costa Rica Section
   ══════════════════════════════════════ */
.why-section {
    padding: 7rem 4rem;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    background: var(--sand-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sunset);
}

.why-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.why-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--sand-light));
}

.why-card-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--palm) 0%, var(--palm-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -27px auto 1rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 6px 20px rgba(45,122,79,0.25);
    transition: var(--transition);
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-dark) 100%);
    transform: scale(1.1);
    box-shadow: var(--shadow-warm);
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card-body {
    padding: 0.5rem 1.8rem 2rem;
    text-align: center;
}

.why-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.7rem;
    font-weight: 700;
}

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

/* ══════════════════════════════════════
   Services Section
   ══════════════════════════════════════ */
.services-section {
    padding: 7rem 4rem;
    background: var(--sand);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sunset), var(--palm));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--palm) 0%, var(--palm-dark) 100%);
    transform: scale(1.08) rotate(-3deg);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

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

/* ══════════════════════════════════════
   Cost of Living Comparison
   ══════════════════════════════════════ */
.cost-section {
    padding: 7rem 4rem;
    background: var(--white);
}

.cost-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cost-table thead {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
}

.cost-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.cost-table th:first-child { border-radius: 12px 0 0 0; }
.cost-table th:last-child { border-radius: 0 12px 0 0; }

.cost-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.cost-table tbody tr:last-child td { border-bottom: none; }

.cost-table tbody tr:hover {
    background: var(--sand-light);
}

.cost-table .category {
    font-weight: 600;
    color: var(--navy);
}

.cost-table .savings {
    color: var(--palm);
    font-weight: 700;
}

.cost-table .total-row {
    background: var(--sand);
    font-weight: 700;
}

.cost-table .total-row td {
    font-size: 1.05rem;
    color: var(--navy);
    border-bottom: none;
}

.cost-table .total-row .savings {
    font-size: 1.1rem;
    color: var(--sunset);
}

.cost-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ══════════════════════════════════════
   Lifestyle Banner
   ══════════════════════════════════════ */
.lifestyle-banner {
    position: relative;
    padding: 6rem 4rem;
    background:
        linear-gradient(135deg, rgba(26,46,68,0.88) 0%, rgba(30,92,57,0.8) 100%),
        url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1600&q=80') center/cover no-repeat;
    color: white;
    text-align: center;
}

.lifestyle-banner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.lifestyle-banner p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.lifestyle-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 920px;
    margin: 0 auto;
}

.lifestyle-feature {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}

.lifestyle-feature:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--sunset-light);
    transform: translateY(-4px);
}

.lifestyle-feature-icon { font-size: 2.2rem; margin-bottom: 0.5rem; }

.lifestyle-feature h4 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sunset-light);
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.lifestyle-feature p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.5;
}

/* ══════════════════════════════════════
   Communities Section
   ══════════════════════════════════════ */
.communities-section {
    padding: 7rem 4rem;
    background: var(--sand-light);
}

.communities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.community-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

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

.community-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.community-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(224,122,58,0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(4px);
}

.community-body {
    padding: 1.5rem 1.8rem 2rem;
}

.community-body h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.community-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.community-tag {
    font-size: 0.73rem;
    padding: 0.3rem 0.85rem;
    background: var(--sand);
    color: var(--text-light);
    border-radius: 20px;
    font-weight: 500;
}

/* ══════════════════════════════════════
   Testimonials
   ══════════════════════════════════════ */
.testimonials-section {
    padding: 6rem 4rem;
    background: var(--sand);
    text-align: center;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--sunset-glow);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.08rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--sunset);
}

.testimonial-author {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-author span {
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    font-size: 0.85rem;
    margin-top: 2px;
}

/* ══════════════════════════════════════
   FAQ Section
   ══════════════════════════════════════ */
.faq-section {
    padding: 7rem 4rem;
    background: var(--white);
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    gap: 1rem;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--sunset); }

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: inherit;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-light);
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    background: var(--sunset);
}

.faq-item.active .faq-toggle svg {
    stroke: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    padding-right: 3rem;
}

/* ══════════════════════════════════════
   Contact / CTA Section
   ══════════════════════════════════════ */
.contact-section {
    padding: 7rem 4rem;
    background: linear-gradient(135deg, var(--navy) 0%, #0f1f33 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224,122,58,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.contact-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-benefits {
    list-style: none;
}

.contact-benefits li {
    color: rgba(255,255,255,0.8);
    font-size: 0.98rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-benefits li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--sunset);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}

.contact-form-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.3rem;
}

.contact-form-card .form-sub {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--sunset);
    background: rgba(255,255,255,0.1);
}

.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: white; }
.form-group textarea { min-height: 90px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--sunset) 0%, var(--sunset-dark) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224,122,58,0.4);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-msg {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.92rem;
    display: none;
    padding: 0.8rem;
    border-radius: 8px;
}

.form-msg.success {
    display: block;
    background: rgba(45,122,79,0.15);
    color: #3d9963;
    border: 1px solid rgba(45,122,79,0.25);
}

.form-msg.error {
    display: block;
    background: rgba(255,71,87,0.1);
    color: #ff4757;
    border: 1px solid rgba(255,71,87,0.2);
}

/* ══════════════════════════════════════
   Footer
   ══════════════════════════════════════ */
footer {
    background: #0f1a28;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sunset);
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

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

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

.footer-bottom a {
    color: var(--sunset);
    text-decoration: none;
}

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

/* ══════════════════════════════════════
   Scroll Reveal Animations
   ══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════
   Responsive Breakpoints
   ══════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .why-grid,
    .communities-grid,
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-main { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3.2rem; }
    .section-title { font-size: 2.4rem; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}

/* Mobile */
@media (max-width: 768px) {
    body { font-size: 16px; }

    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 2rem;
        gap: 1.2rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open a { color: white !important; }

    .hero { min-height: 90vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stat { padding: 1rem; }

    .why-section,
    .communities-section,
    .services-section,
    .cost-section,
    .faq-section,
    .contact-section { padding: 4rem 1.5rem; }

    .lifestyle-banner { padding: 4rem 1.5rem; }
    .testimonials-section { padding: 4rem 1.5rem; }

    .why-grid,
    .communities-grid,
    .services-grid { grid-template-columns: 1fr; }

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

    .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 2rem; }
    .lifestyle-banner h2 { font-size: 2rem; }

    .cost-table { font-size: 0.88rem; }
    .cost-table th,
    .cost-table td { padding: 0.8rem 1rem; }

    .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }

    .faq-answer p { padding-right: 0; }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stat-num { font-size: 1.4rem; }
    .lifestyle-features { grid-template-columns: 1fr; }
    .cost-table th:nth-child(2),
    .cost-table td:nth-child(2) { display: none; }
}

/* ══════════════════════════════════════
   Accessibility
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hero-bg { animation: none; transform: scale(1); }
    .reveal { opacity: 1; transform: none; }
}

:focus-visible {
    outline: 3px solid var(--sunset);
    outline-offset: 2px;
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sunset);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}
