:root {
    --primary: #3a829a; /* Teal from Bird */
    --primary-dark: #2c6275;
    --secondary: #d17a52; /* Terracotta from House */
    --secondary-dark: #b5643f;
    --accent-green: #4a7c44; /* Green from Nest/Text */
    --accent-gold: #e6b15d; /* Gold from Nest */
    --dark-blue: #2c4a70; /* Dark Indigo from Nest */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-main: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-container img {
    height: 85px;
    transition: transform 0.3s ease;
}

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

.logo-container span {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    -webkit-text-fill-color: var(--primary-dark);
    background: none;
    line-height: 1.2;
}

/* Footer variant — sits on dark background */
.logo-container--footer span {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--secondary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: transform 0.3s, background 0.3s !important;
}

.nav-cta:hover {
    background: var(--secondary-dark);
    transform: none;
}

/* --- Hero Section --- */
.hero {
    min-height: auto;
    display: block;
    padding: 108px 5% 56px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.hero-content {
    max-width: 720px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(1.85rem, 4.5vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 1.75rem;
    max-width: 560px;
    line-height: 1.65;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 1.75rem;
    max-width: 560px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(58, 130, 154, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

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

.btn-secondary:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
}

.hero-image {
    display: none;
}

.hero-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* --- Glimpse / Categories Section --- */
.glimpse {
    padding: 56px 5%;
    background: var(--gray-50);
}

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

.category-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid var(--gray-100);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-img {
    height: 250px;
    overflow: hidden;
}

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

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-info {
    padding: 2rem;
}

.category-info h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.category-info p {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--primary);
    border: 1px solid var(--gray-200);
}

.category-card:nth-child(1) .tag { background: rgba(58, 130, 154, 0.1); color: var(--primary); }
.category-card:nth-child(2) .tag { background: rgba(209, 122, 82, 0.1); color: var(--secondary); }
.category-card:nth-child(3) .tag { background: rgba(74, 124, 68, 0.1); color: var(--accent-green); }

/* --- Features Section --- */
.features {
    padding: 56px 5%;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    margin-bottom: 0.65rem;
    color: var(--gray-900);
}

.section-header p {
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.55;
}

.section-header h2 span {
    color: var(--primary);
}

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

.feature-card {
    background: var(--gray-50);
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    box-shadow: none;
    border: 1px solid var(--gray-200);
    text-align: left;
    opacity: 1;
    transform: none;
}

.feature-card:hover {
    border-color: rgba(58, 130, 154, 0.35);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0;
    font-size: 1.35rem;
}

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

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.55;
    margin: 0;
}

/* --- CTA Section --- */
.cta-banner {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary));
    color: var(--white);
    text-align: center;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-accent {
    background: var(--secondary);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-accent:hover {
    background: var(--secondary-dark);
    transform: none;
}

/* --- Footer --- */
footer {
    padding: 48px 5% 24px;
    background: radial-gradient(circle at top right, rgba(58, 130, 154, 0.12), transparent),
                radial-gradient(circle at bottom left, rgba(209, 122, 82, 0.08), transparent),
                var(--gray-900);
    color: var(--white);
    position: relative;
    border-top: 2px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-col h4 {
    margin-bottom: 1.8rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
}

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

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-col ul a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-col ul a::before {
    content: '→';
    color: var(--primary);
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-5px);
}

.footer-col ul a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Styled City Lists in Footer */
.footer-city-pills {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-city-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-city-pill span {
    color: var(--accent-green);
    font-weight: 900;
}

/* Footer Social Icons Row */
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(58, 130, 154, 0.4);
}

.footer-social-btn.insta-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.footer-social-btn.wa-btn:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Navigation Toggle Button --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-800);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

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

/* --- Premium Revamp Extensions --- */

/* Hero Search Mockup */
.search-mockup-container {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    padding: 1.25rem;
    margin-top: 0;
    box-shadow: var(--shadow-sm);
    max-width: 640px;
    width: 100%;
}

.search-mockup-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-mockup-group {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-mockup-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-800);
    text-transform: none;
    letter-spacing: 0;
}

.search-mockup-group select,
.search-mockup-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-800);
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s;
}

.search-mockup-group select:focus,
.search-mockup-group input:focus {
    border-color: var(--primary);
}

.search-mockup-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    min-height: 48px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}

.search-mockup-btn:hover {
    background: var(--primary-dark);
    transform: none;
    box-shadow: none;
}

/* Static region label — no pulse animation */
.region-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary-dark);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
}

/* Accommodations Layout */
.accommodations-section {
    padding: 56px 5%;
    background: var(--gray-50);
}

.services-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.service-premium-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-premium-card:hover {
    border-color: rgba(58, 130, 154, 0.35);
    box-shadow: var(--shadow-sm);
    transform: none;
    background: var(--white);
}

.service-premium-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-premium-card .tag-pill {
    background: rgba(209, 122, 82, 0.1);
    color: var(--secondary-dark);
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 1.5rem;
}

.service-premium-card:nth-child(1) .tag-pill { background: rgba(58, 130, 154, 0.1); color: var(--primary); }
.service-premium-card:nth-child(3) .tag-pill { background: rgba(74, 124, 68, 0.1); color: var(--accent-green); }

.service-premium-card p {
    color: var(--gray-800);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.service-checklist {
    list-style: none;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-800);
}

.service-checklist li::before {
    content: "•";
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

/* Regional Cities Grid */
.regional-section {
    padding: 56px 5%;
    background: var(--white);
}

.city-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

.city-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.city-card::after {
    display: none;
}

.city-card:hover {
    border-color: rgba(58, 130, 154, 0.35);
    box-shadow: var(--shadow-sm);
    transform: none;
}

.city-card h3 {
    font-size: 1.35rem;
    color: var(--gray-900);
    margin-bottom: 0.65rem;
    font-weight: 700;
}

.city-card p {
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.city-subheading {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.uni-badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
}

.uni-badge {
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid var(--gray-200);
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, color 0.2s;
}

.uni-badge:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: none;
}

.uni-badge.highlight {
    background: rgba(58, 130, 154, 0.08);
    border-color: rgba(58, 130, 154, 0.25);
    font-weight: 600;
}

/* Audiences (Professionals & Families) Section */
.audiences-section {
    padding: 56px 5%;
    background: var(--gray-50);
}

.audiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0;
}

@media (max-width: 480px) {
    .audiences-grid {
        grid-template-columns: 1fr;
    }
}

.audience-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.audience-card:hover {
    border-color: rgba(58, 130, 154, 0.35);
    box-shadow: var(--shadow-sm);
    transform: none;
    background: var(--white);
}

.audience-icon {
    font-size: 1.75rem;
    line-height: 1;
    background: var(--gray-50);
    padding: 0.65rem;
    border-radius: 12px;
    flex-shrink: 0;
}

.audience-card:nth-child(2) .audience-icon {
    background: var(--gray-50);
}

.audience-details h3 {
    font-size: 1.15rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.audience-details p {
    color: var(--gray-800);
    margin: 0;
    line-height: 1.55;
    font-size: 0.95rem;
}

/* Property Owners Portal */
.owners-portal {
    background: var(--gray-900);
    color: var(--white);
    padding: 56px 5%;
}

.owners-portal .section-header h2 span {
    color: var(--accent-gold);
}

.owners-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    text-align: left;
}

.benefit-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin: 0;
}

.benefit-card .icon-bubble {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
}

.owners-portal .section-header h2 {
    color: var(--white);
}

.owners-portal .section-header p {
    color: rgba(255, 255, 255, 0.75);
}

.owners-cta-row {
    text-align: center;
    margin-top: 1.75rem;
}

.owners-cta-row .btn-accent {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 1rem;
}

.owners-cta-row .btn-accent:hover {
    background: var(--primary-dark);
    transform: none;
}

/* Presence Showcase */
.presence-section {
    padding: 100px 5%;
    background: var(--gray-50);
}

.presence-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.presence-text {
    flex: 1.2;
    min-width: 320px;
}

.presence-text h3 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.presence-text p {
    font-size: 1.1rem;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.presence-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.presence-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
}

.presence-list li span {
    font-size: 1.4rem;
}

.presence-box {
    flex: 0.8;
    background: var(--white);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    min-width: 300px;
}

.presence-box h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.presence-box ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 250px;
    margin: 0 auto;
}

.presence-box ul li {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: var(--gray-800);
}

.presence-box ul li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.4rem;
    line-height: 1;
    top: -2px;
}

/* Frequently Searched Tag Cloud */
.seo-cloud-section {
    padding: 48px 5%;
    background: var(--gray-50);
    text-align: center;
}

.seo-cloud-wrapper {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.seo-cloud-wrapper a {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.seo-cloud-wrapper a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: none;
    box-shadow: none;
}

.assam-seo-footer {
    padding: 48px 5%;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}

.assam-seo-content {
    max-width: 720px;
    margin: 0 auto;
}

.assam-seo-content h2 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.assam-seo-content p {
    font-size: 1rem;
    color: var(--gray-800);
    line-height: 1.65;
    margin: 0;
}

.assam-seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-tagline {
    margin-top: 1rem;
    opacity: 0.75;
    font-size: 0.95rem;
    line-height: 1.55;
}

.footer-city-pill span {
    display: none;
}

/* --- Need Assistance Styling (legacy light theme — not premium pages) --- */
body:not(.premium-page) .assistance-hero {
    padding: 140px 5% 60px;
    background: radial-gradient(circle at top right, rgba(58, 130, 154, 0.15), transparent),
                radial-gradient(circle at bottom left, rgba(209, 122, 82, 0.15), transparent);
    text-align: center;
}

body:not(.premium-page) .assistance-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 800;
}

body:not(.premium-page) .assistance-hero h1 span {
    color: var(--primary);
}

body:not(.premium-page) .assistance-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--gray-800);
    opacity: 0.9;
}

body:not(.premium-page) .assistance-section {
    padding: 20px 5% 100px;
    background: var(--white);
}

body:not(.premium-page) .assistance-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

body:not(.premium-page) .assistance-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

body:not(.premium-page) .form-toggle-bar {
    display: flex;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 6px;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 1px solid var(--gray-200);
}

body:not(.premium-page) .toggle-tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--gray-800);
    transition: all 0.3s ease;
}

body:not(.premium-page) .toggle-tab-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(58, 130, 154, 0.25);
}

body:not(.premium-page) .toggle-tab-btn.active.owner-active {
    background: var(--secondary);
    box-shadow: 0 4px 10px rgba(209, 122, 82, 0.25);
}

body:not(.premium-page) .assistance-form-block {
    display: none;
}

body:not(.premium-page) .assistance-form-block.active {
    display: block;
}

body:not(.premium-page) .form-grid-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

body:not(.premium-page) .assistance-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

body:not(.premium-page) .assistance-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
}

body:not(.premium-page) .assistance-form-group input,
body:not(.premium-page) .assistance-form-group select,
body:not(.premium-page) .assistance-form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    background: var(--white);
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: all 0.3s;
}

body:not(.premium-page) .assistance-form-group input:focus,
body:not(.premium-page) .assistance-form-group select:focus,
body:not(.premium-page) .assistance-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(58, 130, 154, 0.1);
}

body:not(.premium-page) .assistance-form-group.owner-focus input:focus,
body:not(.premium-page) .assistance-form-group.owner-focus select:focus,
body:not(.premium-page) .assistance-form-group.owner-focus textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(209, 122, 82, 0.1);
}

body:not(.premium-page) .assistance-submit-btn {
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

body:not(.premium-page) .assistance-submit-btn.tenant-btn {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(58, 130, 154, 0.2);
}

body:not(.premium-page) .assistance-submit-btn.tenant-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 130, 154, 0.3);
}

body:not(.premium-page) .assistance-submit-btn.owner-btn {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(209, 122, 82, 0.2);
}

body:not(.premium-page) .assistance-submit-btn.owner-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(209, 122, 82, 0.3);
}

/* Alternative Support Links */
body:not(.premium-page) .support-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

body:not(.premium-page) .support-glass-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.3s;
}

body:not(.premium-page) .support-glass-card:hover {
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

body:not(.premium-page) .support-glass-card .support-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

body:not(.premium-page) .support-glass-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

body:not(.premium-page) .support-glass-card p {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 968px) {
    .logo-container img {
        height: 68px;
    }
    .logo-container span {
        font-size: 1.5rem;
    }
    .nav-toggle {
        display: block; /* Show hamburger button on mobile */
    }
    .hero {
        padding: 96px 5% 40px;
        text-align: left;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: clamp(1.65rem, 6vw, 2.25rem);
    }
    .hero-lead,
    .hero-content p {
        font-size: 1rem;
        max-width: 100%;
    }
    .search-mockup-form {
        flex-direction: column;
    }
    .search-mockup-btn {
        width: 100%;
    }
    header {
        padding: 1rem 5%;
        z-index: 99999 !important; /* Ensure header stacking context is above all other components */
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff !important; /* Solid white background to prevent text bleed-through */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99998 !important; /* Float completely on top of other content */
    }
    nav.active {
        max-height: min(70vh, 420px); /* Expand dropdown — room for all nav links */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: 2px solid var(--gray-100) !important;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 5%;
        width: 100%;
    }
    nav ul li {
        width: 100%;
        text-align: center;
    }
    nav ul li a {
        display: block;
        padding: 12px 0;
        width: 100%;
        font-size: 1.05rem;
        font-weight: 600;
        border-bottom: 1px solid var(--gray-100);
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .nav-cta {
        margin-top: 8px;
        display: inline-block !important;
        width: auto !important;
        padding: 8px 32px !important;
        border-radius: 30px !important;
    }
}

/* Landing page: show all content immediately, no decorative motion */
main section,
main .feature-card,
main .service-premium-card,
main .city-card,
main .audience-card,
main .benefit-card {
    opacity: 1;
    transform: none;
    animation: none !important;
}
