/* ============================================
   Anand Properties - Main Stylesheet
   Aesthetic: Refined luxury real estate
   Fonts: Playfair Display + DM Sans
   Colors: Deep Navy + Warm Gold + Off-White
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --navy:       #1C1C1C;
    --navy-light: #2D2D2D;
    --navy-mid:   #3A3A3A;
    --gold:       #D2521A;
    --gold-light: #E0724A;
    --gold-dark:  #B0400F;
    --cream:      #FAF7F2;
    --white:      #FFFFFF;
    --gray-100:   #F4F1EC;
    --gray-200:   #E8E4DC;
    --gray-400:   #ABA79E;
    --gray-600:   #6B6760;
    --gray-800:   #2D2B28;
    --red:        #C0392B;
    --green:      #1E6B45;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, system-ui, sans-serif;

    --shadow-sm:  0 2px 8px rgba(13,27,42,0.08);
    --shadow-md:  0 8px 32px rgba(13,27,42,0.12);
    --shadow-lg:  0 20px 60px rgba(13,27,42,0.18);

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width:  1220px;
    --header-h:   76px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }

/* ---- Top Bar ---- */
.top-bar {
    background: var(--navy);
    padding: 9px 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-contact {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.top-contact:hover { color: var(--gold); }
.top-contact i { color: var(--gold); font-size: 0.72rem; }
.top-bar-right { color: rgba(255,255,255,0.7); font-size: 0.75rem; }

/* ---- Header ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(13,27,42,0.1);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--header-h);
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-800);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--navy);
    background: var(--gray-100);
}
.nav-link.active { color: var(--gold-dark); font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all var(--transition);
    border-top: 3px solid var(--gold);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.87rem;
    color: var(--gray-800);
    transition: all var(--transition);
    border-left: 3px solid transparent;
}
.dropdown li a:hover {
    background: var(--gray-100);
    color: var(--navy);
    border-left-color: var(--gold);
    padding-left: 24px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-sm);
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(200,169,110,0.35);
}
.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 38px; font-size: 1rem; }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    transition: opacity 0.5s;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.65) 60%, rgba(13,27,42,0.45) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    animation: fadeSlideUp 0.9s ease both;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,169,110,0.15);
    border: 1px solid rgba(200,169,110,0.4);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-badge i { font-size: 0.7rem; }
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
    flex-wrap: wrap;
}
.hero-stat {}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ---- Search/Filter Bar ---- */
.search-bar-section {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin: -40px 0 0;
    position: relative;
    z-index: 10;
}
.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,110,0.15);
}
select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6760' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* ---- Section Base ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.section-navy { background: var(--navy); color: var(--white); }
.section-cream { background: var(--cream); }
.section-gray { background: var(--gray-100); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    background: rgba(200,169,110,0.12);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 16px;
    border-radius: 40px;
    margin-bottom: 12px;
    border: 1px solid rgba(200,169,110,0.25);
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.section-navy .section-title { color: var(--white); }
.section-navy .section-tag { background: rgba(200,169,110,0.2); color: var(--gold-light); border-color: rgba(200,169,110,0.3); }
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 0 auto;
}
.section-navy .section-subtitle { color: rgba(255,255,255,0.7); }
.title-line {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 16px auto 0;
}
.section-header.left .section-tag,
.section-header.left .title-line { margin-left: 0; }
.section-header.left { text-align: left; }
.section-header.left .section-subtitle { margin-left: 0; }

/* ---- Property Cards ---- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}
.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.property-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--gray-100);
}
.property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.property-card:hover .property-card-img img { transform: scale(1.05); }
.property-card-img .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}
.property-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.badge {
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.badge-sale { background: var(--navy); color: var(--white); }
.badge-rent { background: var(--green); color: var(--white); }
.badge-commercial { background: var(--gold); color: var(--navy); }
.badge-residential { background: rgba(255,255,255,0.9); color: var(--navy); }
.badge-featured { background: var(--gold); color: var(--navy); }
.property-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.property-type-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}
.property-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
}
.property-locality {
    font-size: 0.82rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 14px;
}
.property-locality i { color: var(--gold-dark); font-size: 0.7rem; }
.property-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 14px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 16px;
}
.spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray-600);
}
.spec-item i { color: var(--gold-dark); font-size: 0.75rem; }
.property-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.property-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}
.price-sub { font-size: 0.72rem; color: var(--gray-600); font-family: var(--font-body); font-weight: 400; }

/* ---- Feature Grid (Why Choose Us) ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-light);
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(13,27,42,0.2);
}
.feature-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}
.feature-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* ---- Stats Bar ---- */
.stats-bar {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 52px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.stat-item { padding: 20px; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- Testimonials ---- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold-light);
    opacity: 0.3;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 14px; font-size: 0.85rem; }
.testimonial-text {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-type { font-size: 0.75rem; color: var(--gray-400); }

/* ---- CTA Banner ---- */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy-mid) 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200,169,110,0.06);
    top: -100px;
    right: -100px;
}
.cta-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(200,169,110,0.06);
    bottom: -80px;
    left: -60px;
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 14px;
}
.cta-banner h2 span { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Blog Cards ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-100);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--gold-dark); }
.blog-excerpt { font-size: 0.86rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: var(--gray-400);
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}
.blog-date { display: flex; align-items: center; gap: 5px; }
.read-more { color: var(--gold-dark); font-weight: 600; display: flex; align-items: center; gap: 4px; }
.read-more:hover { color: var(--navy); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(200,169,110,0.08);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.35); font-size: 0.7rem; }
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold); }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 600px; }

/* ---- Forms ---- */
.contact-form, .enquiry-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 6px;
}
.form-group label .req { color: var(--red); margin-left: 2px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.03em;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,169,110,0.4); }
.form-note { font-size: 0.76rem; color: var(--gray-400); margin-top: 10px; text-align: center; }
.form-note i { color: var(--green); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: background var(--transition);
}
.faq-question:hover, .faq-item.open .faq-question { background: var(--gray-100); }
.faq-icon {
    font-size: 0.75rem;
    color: var(--gold-dark);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ---- Content Pages (About, Blog post) ---- */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.content-main h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--navy);
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
}
.content-main h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--navy); margin: 24px 0 10px; }
.content-main p { margin-bottom: 18px; color: var(--gray-600); line-height: 1.8; }
.content-main ul { padding-left: 20px; margin-bottom: 18px; }
.content-main ul li { list-style: disc; color: var(--gray-600); margin-bottom: 6px; line-height: 1.7; }
.content-main strong { color: var(--navy); }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
}
.sidebar-widget-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold-light);
}
.sidebar-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}
.sidebar-contact-item i { color: var(--gold-dark); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-info-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}
.contact-info-card .subtitle { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 36px; }
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}
.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(200,169,110,0.15);
    border: 1px solid rgba(200,169,110,0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.contact-item-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-item-value { color: var(--white); font-size: 0.92rem; line-height: 1.5; }
.contact-item-value a { color: var(--white); transition: color var(--transition); }
.contact-item-value a:hover { color: var(--gold); }
.maps-embed { border-radius: var(--radius-md); overflow: hidden; margin-top: 28px; }
.maps-embed iframe { width: 100%; height: 220px; border: 0; }

/* ---- Success / Error Message ---- */
.alert { padding: 14px 20px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #e6f7ee; border: 1px solid #a3d9b8; color: #1a5c36; }
.alert-error { background: #fce8e6; border: 1px solid #f4b4ae; color: #8c2018; }

/* ---- WhatsApp & Call Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 86px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.wa-tooltip {
    position: absolute;
    right: 68px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: all var(--transition);
    pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.call-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    z-index: 900;
    transition: all var(--transition);
    display: none; /* Show only on mobile */
}

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1.4fr;
    gap: 48px;
}
.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}
.footer-desc { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin: 16px 0 16px; }
.footer-association {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}
.since-badge {
    display: inline-block;
    border: 1px solid rgba(200,169,110,0.35);
    color: var(--gold-light);
    padding: 4px 12px;
    border-radius: 40px;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
}
.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mt-20 { margin-top: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-links span {
    font-size: 0.86rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 7px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--gold-dark); }
.footer-contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Pagination ---- */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination ul { display: flex; gap: 8px; }
.pagination ul li a, .pagination ul li.active a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    font-size: 0.88rem;
    color: var(--gray-800);
    transition: all var(--transition);
}
.pagination ul li.active a { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination ul li a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ---- Animations ---- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 1;                              /* FIXED: was 0, cards were invisible */
    transform: translateY(0);               /* FIXED: was translateY(24px) */
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Mobile Overlay ---- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13,27,42,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ---- Utility ---- */
.text-gold { color: var(--gold-dark); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.pb-0 { padding-bottom: 0 !important; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .content-with-sidebar { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .search-form { grid-template-columns: 1fr 1fr; }
    .search-form .btn { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --header-h: 66px; }
    .top-bar { display: none; }
    .hamburger { display: flex; }

    /* Full-screen slide-in nav panel */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        padding: 66px 0 100px 0;
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.3s ease;
        box-shadow: none;
    }
    .main-nav.open { right: 0; }

    /* Nav list — full width column */
    .nav-list {
        flex-direction: column !important;
        gap: 0 !important;
        align-items: stretch !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Each top-level nav item */
    .nav-list > li {
        width: 100% !important;
        border-bottom: 1px solid #e8e4dc !important;
        position: relative !important;
    }
    .nav-list > li:first-child { border-top: 1px solid #e8e4dc !important; }

    /* Kill desktop position:relative on has-dropdown */
    .has-dropdown { position: static !important; }

    /* Nav links */
    .nav-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 18px 24px !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        color: #2D2B28 !important;
        background: var(--white) !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        text-decoration: none !important;
    }
    .nav-link.active { color: #D2521A !important; background: rgba(210,82,26,0.05) !important; }
    .nav-link:hover { background: #f4f1ec !important; }

    /* DROPDOWN — kill desktop styles, go full-width inline block */
    .has-dropdown { position: static !important; }

    /* KILL desktop dropdown positioning at the source selector */
    .dropdown {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        min-width: 0 !important;
        display: none !important;
    }

    .has-dropdown .dropdown {
        position: static !important;
        top: auto !important; left: auto !important; right: auto !important;
        transform: none !important;
        min-width: 0 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: #f4f1ec !important;
        border: none !important;
        border-top: 2px solid #D2521A !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    /* Kill hover trigger on mobile — only JS .open class works */
    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown { display: none !important; transform: none !important; }
    .has-dropdown.open .dropdown { display: block !important; }

    /* Dropdown list */
    .has-dropdown .dropdown li {
        width: 100% !important;
        border-bottom: 1px solid #e8e4dc !important;
        display: block !important;
    }
    .has-dropdown .dropdown li:last-child { border-bottom: none !important; }

    /* Dropdown links — FORCE full width and visible text */
    .has-dropdown .dropdown li a {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px 24px 15px 32px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: #2D2B28 !important;
        background: #f4f1ec !important;
        text-decoration: none !important;
        border-left: 3px solid #D2521A !important;
        white-space: normal !important;
        overflow: visible !important;
    }
    .has-dropdown .dropdown li a:hover { background: rgba(210,82,26,0.1) !important; color: #B0400F !important; }
    .has-dropdown .dropdown li a i { color: #D2521A !important; font-size: 0.75rem !important; flex-shrink: 0 !important; }

    .header-cta .btn { display: none; }
    
    .hero { min-height: 70vh; }
    .hero-stats { gap: 20px; }
    .search-bar-section { margin: 0; border-radius: 0; padding: 24px; }
    .search-form { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr; }
    .properties-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-top { padding: 48px 0 32px; }
    
    .form-row { grid-template-columns: 1fr; }
    .contact-form, .enquiry-form { padding: 24px; }
    .contact-info-card { padding: 28px; }
    
    .call-float { display: flex; }
    .whatsapp-float { bottom: 94px; }
    
    .cta-banner { padding: 52px 0; }
    .cta-banner-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 56px 0; }
    .hero h1 { font-size: 1.9rem; }
    .stat-num { font-size: 2.2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ================================================
   GLOBAL MOBILE FIXES — Added for all pages
   ================================================ */

/* Fix any inline 2-col grid that doesn't stack on mobile */
@media (max-width: 768px) {

    /* Content with sidebar → full width stacked */
    .content-with-sidebar {
        grid-template-columns: 1fr !important;
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    /* Agent section */
    .agent-section-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Areas grid */
    .areas-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .areas-grid > div {
        padding: 24px 20px !important;
    }

    /* Enquiry grid */
    .enquiry-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Search bar */
    .search-bar-section {
        padding: 20px 16px !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    /* Owner/seller form inside search bar */
    #owner-form > form > div:first-child {
        grid-template-columns: 1fr !important;
    }

    /* About page agent intro box */
    [style*="grid-template-columns:210px 1fr"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    /* Property specs wrap */
    .property-specs {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    /* Blog card meta */
    .blog-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Buttons full width in hero */
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Fix any 3-col grids */
    [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Sell page benefits grid */
    [style*="grid-template-columns:repeat(3,1fr)"].benefits-grid {
        grid-template-columns: 1fr !important;
    }

    /* Properties page search form */
    .search-form {
        grid-template-columns: 1fr 1fr !important;
    }
    .search-form button[type="submit"] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {

    /* Very small screens — everything single column */
    .search-form {
        grid-template-columns: 1fr !important;
    }

    /* Hero stats 2x2 grid */
    .hero-stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        margin-top: 28px !important;
        padding-top: 20px !important;
    }
    .hero-stat-num {
        font-size: 1.6rem !important;
    }

    /* Agent stats 3-col smaller */
    .agent-section-grid [style*="repeat(3,1fr)"] {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 8px !important;
    }

    /* Reduce section padding */
    .section {
        padding: 48px 0 !important;
    }

    /* Page hero */
    .page-hero {
        padding: 36px 0 !important;
    }
    .page-hero h1 {
        font-size: 1.7rem !important;
    }

    /* Property card price + button */
    .property-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .property-card-footer .btn {
        width: 100%;
        justify-content: center;
    }

    /* Feature cards */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
    }

    /* Blog grid */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ================================================
   COMPREHENSIVE MOBILE FIX — Round 2
   All pages, all issues identified in audit
   ================================================ */

/* Mobile nav improvements */
@media (max-width: 768px) {
    .mobile-nav-close {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .mobile-nav-cta {
        display: none; /* shown by JS on open */
    }
    .mobile-nav-cta .btn {
        display: flex !important;
    }
    /* Dropdown items on mobile - better touch targets */
    .has-dropdown .dropdown li a {
        padding: 12px 16px !important;
        font-size: 0.95rem !important;
        display: flex !important;
        align-items: center;
    }
    /* Properties chevron rotate handled by JS */
    .mobile-dropdown-arrow {
        margin-left: auto;
        font-size: 0.75rem;
    }
}

/* About page - agent intro box */
@media (max-width: 640px) {
    [style*="grid-template-columns:210px 1fr"] {
        display: block !important;
        text-align: center;
    }
    [style*="grid-template-columns:210px 1fr"] > div:first-child {
        margin-bottom: 20px;
    }
    [style*="grid-template-columns:210px 1fr"] img {
        margin: 0 auto 12px !important;
    }
}

/* Property detail page - specs grid & features */
@media (max-width: 640px) {
    /* Quick specs bar - wrap to 2 cols */
    [style*="display:flex"][style*="flex-wrap:wrap"][style*="gap:24px"] {
        gap: 14px !important;
    }
    /* Property details table - single column */
    [style*="grid-template-columns:1fr 1fr"][style*="gap:16px"] {
        grid-template-columns: 1fr !important;
    }
    /* Features grid - 1 col */
    [style*="grid-template-columns:1fr 1fr"][style*="gap:10px"] {
        grid-template-columns: 1fr !important;
    }
    /* Gallery thumbnails - smaller */
    #gallery-thumbs {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
        gap: 6px !important;
    }
    #gallery-thumbs img {
        height: 70px !important;
    }
    /* Main property image height */
    #main-property-img {
        height: 260px !important;
    }
}

/* Sell property page - 3 benefit cards */
@media (max-width: 768px) {
    [style*="grid-template-columns:repeat(3,1fr)"][style*="gap:20px"] {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    /* Steps layout */
    [style*="display:flex"][style*="gap:18px"][style*="margin-bottom:20px"] {
        gap: 14px !important;
    }
}

/* Contact page - info card padding */
@media (max-width: 640px) {
    .contact-info-card {
        padding: 24px 20px !important;
    }
    .contact-form, .enquiry-form {
        padding: 20px 16px !important;
    }
}

/* Blog post page - share buttons */
@media (max-width: 480px) {
    [style*="display:flex"][style*="gap:10px"][style*="flex-wrap:wrap"] .btn {
        font-size: 0.82rem;
        padding: 8px 14px;
    }
}

/* Properties listing page - search form */
@media (max-width: 640px) {
    .search-form[style*="grid-template-columns:1fr 1fr 1fr 1fr 1fr auto"] {
        grid-template-columns: 1fr 1fr !important;
    }
    .search-form[style*="grid-template-columns:1fr 1fr 1fr 1fr 1fr auto"] button {
        grid-column: 1 / -1;
    }
}

/* Footer - on very small screens */
@media (max-width: 380px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .since-badge {
        font-size: 0.65rem;
        padding: 3px 10px;
    }
}

/* WhatsApp + Call float buttons - adjust position on very small screens */
@media (max-width: 380px) {
    .whatsapp-float {
        right: 14px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    .call-float {
        right: 14px;
        width: 50px;
        height: 50px;
    }
}

/* Agent section on mobile - fix badge overlap */
@media (max-width: 480px) {
    .agent-section-grid [style*="position:absolute;bottom:8px"] {
        bottom: -8px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
        font-size: 0.65rem !important;
        padding: 5px 10px !important;
    }
}

/* Sidebar widgets on mobile - in content-with-sidebar layout */
@media (max-width: 768px) {
    .sidebar-widget {
        margin-bottom: 16px;
    }
}

/* Fix top bar hidden on mobile but keep nav accessible */
@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* Page hero on mobile */
@media (max-width: 480px) {
    .page-hero {
        padding: 32px 0 !important;
    }
    .breadcrumb {
        font-size: 0.72rem;
    }
    .page-hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.25 !important;
    }
    .page-hero-sub {
        font-size: 0.9rem;
    }
}
