/* ============================================
   ZILLOW + TRULIA HYBRID DESIGN
   Inspired by industry leaders, uniquely Propertism
   ============================================ */

:root {
    /* Propertism Brand Colors */
    --brand-navy: #0A1628;
    --brand-gold: #C9A961;
    --brand-teal: #14B8A6;
    
    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-900: #111827;
    
    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

#home-section,
#about-section,
#properties-section,
#services-section,
#management-section,
#blog-section,
#contact-section {
    scroll-margin-top: 96px;
}

/* ============================================
   HERO SECTION - Zillow Style
   ============================================ */

.hero-hybrid {
    position: relative;
    width: 100%;
    min-height: 74vh;
    display: flex;
    align-items: flex-end;
    background: url('/static/images/propertism-hero-bg.jpg') center center/cover no-repeat;
    background-attachment: scroll;
    padding: 96px 24px 88px 24px;
    overflow: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-hybrid-has-image {
    display: block;
    min-height: 0;
    padding: 0;
    background: var(--brand-navy);
}

.hero-hybrid-media {
    display: flex;
    justify-content: center;
    width: 100%;
    background: var(--brand-navy);
}

.hero-hybrid-rotator {
    position: relative;
    width: 100%;
    min-height: 100%;
}

.hero-hybrid-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-height: min(78vh, 920px);
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-hybrid-image.is-active {
    opacity: 1;
}

/* Ensure sharp, high-quality image rendering */
.hero-hybrid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero-hybrid::after {
    content: '';
    position: absolute;
    inset: auto auto 40px 24px;
    width: min(580px, calc(100% - 48px));
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.7) 0%, rgba(201, 169, 97, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-hybrid-has-image::after {
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.82) 0%, rgba(201, 169, 97, 0) 100%);
    z-index: 1;
}

.hero-hybrid-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 720px;
    margin: 0;
    padding: 0;
}

.hero-hybrid-has-image .hero-hybrid-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: clamp(136px, 10vw, 176px);
    max-width: min(680px, calc(100% - 48px));
}

.hero-copy-zillow {
    max-width: 600px;
    margin-bottom: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

/* Hero Title - Zillow Style */
.hero-title-zillow {
    font-family: "Object Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
    max-width: 24ch;
    font-size: clamp(1.72rem, 3.2vw, 2.8rem);
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    letter-spacing: -0.035em;
    text-wrap: balance;
}

.hero-title-line {
    display: block;
    color: var(--white);
}

.hero-title-accent {
    color: var(--brand-gold);
}

.hero-quote-pill {
    position: absolute;
    right: 24px;
    bottom: clamp(2rem, 10vh, 5.5rem);
    min-width: 11.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.86rem 1.4rem 0.86rem 0.92rem;
    border-radius: 50rem;
    background: rgba(18, 31, 49, 0.95);
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
    animation: heroQuoteSlideIn 0.65s ease-out 0.18s both;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    z-index: 10;
}

.hero-quote-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    color: #E9D3A4;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.hero-quote-pill-icon svg {
    display: block;
}

.hero-quote-pill-label {
    display: inline-block;
    line-height: 1;
}

.hero-quote-pill:visited {
    color: #FFFFFF;
}

.hero-quote-pill:hover,
.hero-quote-pill:focus-visible {
    color: #FFFFFF;
    background: rgba(18, 31, 49, 0.98);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.28);
    transform: translateX(-1.15rem);
}

.hero-quote-pill:focus-visible {
    outline: 2px solid rgba(201, 169, 97, 0.48);
    outline-offset: 2px;
}

.hero-quote-pill.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(1.6rem);
}

.featured-properties-section {
    position: relative;
    padding: clamp(4rem, 7vw, 5.75rem) 0;
    background: #FFFFFF;
    overflow: visible;
}

.featured-properties-intro {
    width: min(100%, 1120px);
    margin: -1rem auto var(--space-8);
    text-align: center;
    overflow: visible;
}

.featured-properties-title {
    display: block;
    max-width: none;
    margin: 0 auto var(--space-4);
    font-family: var(--realtor-font-set);
    font-size: clamp(2rem, 3vw, 2.9rem);
    font-weight: 400;
    line-height: 1.18;
    color: var(--gray-900);
    overflow: visible;
}

.featured-properties-subtitle {
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.featured-properties-cta {
    text-align: center;
    margin-top: var(--space-12);
}

.empty-section-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-20) 0;
    color: var(--gray-600);
}

/* ============================================
   TRUST STRIP
   ============================================ */

.trust-strip-section {
    position: relative;
    margin-top: -112px;
    z-index: 10;
    background: #F5F5F2;
    border-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.96);
}

.trust-strip-card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
    padding: 14px 0 18px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-gold);
}

.trust-strip-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 100%;
    padding: 4px 28px 6px;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--gray-900);
    text-decoration: none;
    transition: none;
}

.trust-strip-item + .trust-strip-item {
    border-left: 0;
}

.trust-strip-item:hover {
    transform: none;
    border-color: rgba(17, 24, 39, 0.12);
    box-shadow: none;
}

.trust-strip-item-static:hover {
    transform: none;
    box-shadow: none;
}

.trust-strip-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(185, 149, 67, 0.95);
    margin-bottom: 0;
}

.trust-strip-item strong {
    max-width: 20ch;
    font-size: 0.94rem;
    line-height: 1.34;
    color: var(--gray-900);
    text-wrap: balance;
    margin-top: 2px;
}

.trust-strip-item small {
    max-width: 24ch;
    font-size: 0.845rem;
    line-height: 1.42;
    color: var(--gray-600);
    margin-top: 5px;
}

/* ============================================
   CREDIBILITY SECTION
   ============================================ */

.credibility-section {
    margin-top: 0;
    padding: clamp(4rem, 7vw, 5.75rem) 0;
    background: #F8FAFC;
}

.credibility-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: var(--space-10);
    align-items: stretch;
}

.credibility-story-card,
.credibility-proof-card {
    padding: clamp(1.5rem, 2vw, 2.1rem);
    border-radius: 28px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.credibility-story-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.credibility-proof-card {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.98) 0%, rgba(24, 37, 59, 0.96) 100%);
    color: rgba(255, 255, 255, 0.92);
}

.credibility-title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.08;
    color: var(--gray-900);
    max-width: 12ch;
}

.credibility-copy {
    margin: 0 0 16px;
    font-size: 1.05rem;
    line-height: 1.72;
    color: var(--gray-600);
    max-width: 58ch;
}

.credibility-copy-stack {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.credibility-mission-block {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.18);
}

.credibility-mission-label {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-navy);
}

.credibility-mission-copy {
    margin-bottom: 0;
    color: var(--gray-900);
}

.secondary-copy {
    margin-bottom: 24px;
}

.credibility-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.credibility-inline-link {
    color: var(--brand-navy);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 700;
}

.credibility-inline-link:visited {
    color: var(--brand-navy);
}

.credibility-inline-link:hover {
    color: var(--brand-gold);
}

.credibility-proof-title {
    margin: 0 0 18px;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.25;
    color: #FFFFFF;
}

.credibility-proof-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.credibility-proof-list li {
    position: relative;
    padding-left: 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.84);
}

.credibility-proof-list li strong {
    color: #FFFFFF;
}

.credibility-proof-list li::before {
    display: none;
}

.credibility-office-pills {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.credibility-office-pill {
    min-width: 180px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.credibility-office-pill span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
}

.credibility-office-pill strong {
    color: #FFFFFF;
    font-size: 1rem;
}

.credibility-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.credibility-stat-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.credibility-stat-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.25rem;
    color: #FFFFFF;
}

.credibility-stat-card span {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.72);
}

/* Stats Grid - Used in credibility proof card */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.stat-card {
    padding: 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.2s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
    margin: 0 0 8px 0;
    font-size: 1.75rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.2;
}

.stat-card p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* ============================================
   QUICK LINKS - Trulia-style
   ============================================ */

.quick-links-hybrid {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-8);
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s;
    padding: var(--space-2) var(--space-4);
    border-radius: 8px;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-gold);
}

.quick-link svg {
    flex-shrink: 0;
}

/* ============================================
   FEATURED NEIGHBORHOODS - Trulia-inspired
   ============================================ */

.neighborhoods-section {
    padding: var(--space-20) 0;
    background: var(--gray-50);
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.neighborhood-card {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.neighborhood-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.neighborhood-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.neighborhood-card:hover .neighborhood-image {
    transform: scale(1.05);
}

.neighborhood-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-8);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    color: var(--white);
}

.neighborhood-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.neighborhood-stats {
    display: flex;
    gap: var(--space-6);
    font-size: 0.875rem;
    opacity: 0.9;
}

.neighborhood-stat {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* ============================================
   PROPERTY GRID - Zillow-style cards
   ============================================ */

.property-grid-hybrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-8);
}

.property-card-hybrid {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: none;
    border: 1px solid #dbe3ea;
    cursor: pointer;
}

.property-card-hybrid:hover {
    transform: none;
    box-shadow: none;
}

.property-image-hybrid {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-bottom: 1px solid #dbe3ea;
}

.property-image-hybrid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card-hybrid:hover .property-image-hybrid img {
    transform: none;
}

.property-badge-hybrid {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    background: var(--brand-gold);
    color: var(--brand-navy);
    padding: var(--space-2) var(--space-4);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.property-save {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.property-save:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: scale(1.1);
}

.property-details-hybrid {
    padding: var(--space-6);
}

.property-price-hybrid {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: var(--space-3);
}

.property-price-words-hybrid {
    color: var(--gray-600);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.property-address {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: var(--space-4);
}

.property-features {
    display: flex;
    gap: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-200);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ============================================
   MARKET INSIGHTS - Trulia-style
   ============================================ */

.market-insights {
    padding: clamp(4rem, 7vw, 5.75rem) 0;
    background: var(--white);
}

.section-intro-center {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.section-intro-center h2 {
    margin: 0 0 var(--space-4);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--gray-900);
}

.section-intro-center p {
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.insight-card {
    background: var(--gray-50);
    padding: var(--space-8);
    border-radius: 12px;
    border-left: 4px solid var(--brand-gold);
    transition: all 0.3s;
}

.insight-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.insight-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    margin-bottom: var(--space-4);
}

.insight-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brand-navy);
    margin-bottom: var(--space-3);
}

.insight-description {
    color: var(--gray-600);
    line-height: 1.6;
}

.service-depth-card {
    display: flex;
    flex-direction: column;
}

.service-depth-link {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    padding-top: 18px;
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.service-depth-link:visited {
    color: var(--brand-navy);
}

.service-depth-link:hover {
    color: var(--brand-gold);
}

.management-preview-section {
    padding: var(--space-12) 0;
    background: #F8FAFC;
}

.journal-preview-section {
    padding: var(--space-12) 0;
    background: var(--white);
}

.management-preview-intro,
.journal-preview-intro {
    max-width: 760px;
    margin-bottom: var(--space-10);
}

.management-preview-intro h2,
.journal-preview-intro h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--gray-900);
}

.management-preview-intro p,
.journal-preview-intro p {
    margin: 0;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.72;
}

.management-preview-grid,
.journal-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-8);
}

.management-preview-card,
.journal-preview-card {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: #FFFFFF;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.management-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.management-preview-meta span,
.journal-preview-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(201, 169, 97, 0.14);
    color: #8A6A22;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.management-preview-card h3,
.journal-preview-card h3 {
    margin: 0 0 12px;
    font-size: 1.22rem;
    line-height: 1.35;
    color: var(--gray-900);
}

.management-preview-card p,
.journal-preview-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.7;
}

.journal-preview-card small {
    display: inline-block;
    margin-top: 18px;
    color: var(--gray-600);
    font-size: 0.88rem;
}

.service-depth-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: var(--space-10);
}

.service-depth-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.4;
}

.service-depth-tag.is-label {
    background: transparent;
    border-color: transparent;
    color: var(--gray-900);
    font-weight: 700;
}

/* ============================================
   CUSTOMER REVIEWS & CUSTOM CARD SECTIONS
   ============================================ */

.customer-reviews-section,
.custom-cards-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.customer-reviews-section {
    background:
        radial-gradient(circle at top, rgba(201, 169, 97, 0.14), transparent 38%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

.custom-cards-section {
    background: #FFFFFF;
}

.customer-reviews-intro,
.custom-cards-intro {
    max-width: 760px;
    margin: 0 auto clamp(1rem, 2.4vw, 1.5rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.customer-reviews-intro .section-kicker,
.custom-cards-intro .section-kicker {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.customer-reviews-intro h2,
.custom-cards-intro h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4vw, 3rem);
    line-height: 1.1;
    color: var(--gray-900);
}

.customer-reviews-intro p,
.custom-cards-intro p {
    margin: 0;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.72;
    text-align: center;
}

.customer-reviews-grid,
.custom-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.customer-reviews-carousel {
    position: relative;
}

.customer-reviews-viewport {
    overflow: hidden;
}

.customer-reviews-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.customer-reviews-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.customer-reviews-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
}

.customer-reviews-indicator {
    position: relative;
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.customer-reviews-indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.16);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.customer-reviews-indicator.is-active {
    transform: scale(1.05);
}

.customer-reviews-indicator.is-active::before {
    background: var(--brand-gold);
    transform: translate(-50%, -50%) scale(1.15);
}

.customer-review-card,
.custom-card-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.customer-review-stars {
    color: #C9A961;
    font-size: 0.92rem;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.customer-review-quote-mark {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(15, 23, 42, 0.08);
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.customer-review-copy {
    margin: 0;
    color: var(--gray-700);
    font-size: 0.98rem;
    line-height: 1.72;
}

.customer-review-tag,
.custom-card-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(201, 169, 97, 0.14);
    color: #8A6A22;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.customer-review-person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
}

.customer-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-navy);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
}

.customer-review-person-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.customer-review-person-meta strong {
    color: var(--gray-900);
    font-size: 0.98rem;
}

.customer-review-person-meta span {
    color: var(--gray-500);
    font-size: 0.88rem;
}

.customer-review-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin: clamp(1.25rem, 3vw, 2rem) auto 0;
    width: fit-content;
    max-width: 100%;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--gray-600);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.customer-review-badge-stars {
    color: #C9A961;
    letter-spacing: 0.16em;
}

.customer-review-badge strong {
    color: var(--gray-900);
}

.custom-card-panel h3 {
    margin: 16px 0 10px;
    font-size: 1.16rem;
    line-height: 1.32;
    color: var(--gray-900);
}

.custom-card-panel p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.72;
}

.custom-card-panel small {
    display: inline-block;
    margin-top: 18px;
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

.custom-card-link {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 18px;
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 700;
}

.custom-card-link:hover {
    color: var(--brand-gold);
}

@media (max-width: 1200px) {
    .customer-reviews-grid,
    .custom-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   NRI CONTACT SECTION
   ============================================ */

.nri-contact-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1a2942 100%);
    color: var(--white);
}

.nri-contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: var(--space-10);
    align-items: center;
}

.nri-contact-copy h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: #FFFFFF;
    max-width: 12ch;
}

.nri-contact-copy p {
    margin: 0;
    max-width: 54ch;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.84);
}

.nri-contact-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.nri-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.quote-request-form {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 50px rgba(3, 8, 18, 0.18);
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.quote-request-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-request-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.quote-request-field span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.72);
}

.quote-request-field input,
.quote-request-field select,
.quote-request-field textarea {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    background: #FFFFFF;
    color: var(--gray-900);
    font-size: 0.98rem;
    outline: none;
}

.quote-request-field input:focus,
.quote-request-field select:focus,
.quote-request-field textarea:focus {
    border-color: rgba(201, 169, 97, 0.62);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.14);
}

.quote-request-field textarea {
    resize: vertical;
    min-height: 128px;
}

.quote-request-field-full {
    grid-column: 1 / -1;
}

.quote-request-submit {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 0;
    border-radius: 12px;
    background: #0F172A;
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.quote-request-submit:hover {
    background: #172338;
    transform: translateY(-1px);
}

.nri-contact-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    color: #FFFFFF;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.nri-contact-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(201, 169, 97, 0.55);
}

.nri-contact-card-static:hover {
    transform: none;
}

.nri-contact-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.nri-contact-card strong {
    font-size: 1.2rem;
    line-height: 1.45;
    color: #FFFFFF;
}

.nri-contact-card small {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

/* ============================================
   ENRICHED FOOTER
   ============================================ */

.main-content {
    background: #F5F5F2;
}

.site-footer {
    padding: 8rem 0 8rem;
    background: #F5F5F2;
    border-top: none;
    margin-top: 0;
    margin-bottom: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    row-gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Row 2: 3 columns - Global Presence | Clocks | Office Hours */
.footer-presence-full {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-presence-header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-presence-header h3 {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.86);
    line-height: 1.2;
}

.footer-presence-dash {
    color: rgba(17, 24, 39, 0.3);
    font-size: 0.7rem;
    line-height: 1;
}

.footer-presence-sub {
    font-size: 0.82rem;
    color: rgba(17, 24, 39, 0.72);
    margin: 0;
    line-height: 1.45;
}

.footer-hours {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-hours h3 {
    margin-bottom: 0.6rem;
}

.footer-availability-status {
    font-size: 0.92rem;
}

.footer-hours .footer-availability-block {
    padding-top: 0;
    border-top: none;
}

/* Hybrid Minimal Clock Styles */
.world-clock-widget-card--hybrid {
    padding: 0.75rem 0.6rem;
    text-align: center;
}

.world-clock-widget-card--hybrid .world-clock-widget-card-header {
    text-align: center;
    padding-bottom: 0.35rem;
}

.world-clock-widget-card--hybrid .world-clock-widget-card-title {
    justify-content: center;
}

.world-clock-widget-card--hybrid .world-clock-widget-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.28rem;
}

/* Minimal analog dial - 50px, no ticks, 1.4px stroke */
.world-clock-widget-dial--mini {
    position: relative;
    width: 50px;
    height: 50px;
    border: 1.4px solid rgba(17, 24, 39, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Minimal hands - slightly thicker for visibility */
.world-clock-widget-hand-mini {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: 50% 100%;
    border-radius: 1px;
}

.world-clock-widget-hand-hour-mini {
    width: 2.5px;
    height: 15px;
    background: rgba(17, 24, 39, 0.6);
}

.world-clock-widget-hand-minute-mini {
    width: 2px;
    height: 21px;
    background: rgba(17, 24, 39, 0.42);
}

/* Numeric time - PRIMARY focus */
.world-clock-widget-card--hybrid .world-clock-widget-time {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(17, 24, 39, 0.9);
    margin-top: 0.15rem;
}

.world-clock-widget-card--hybrid .world-clock-widget-hours {
    font-weight: 600;
}

.world-clock-widget-card--hybrid .world-clock-widget-minutes {
    font-weight: 600;
}

/* AM/PM - lowercase, smaller (65% of time) */
.world-clock-widget-card--hybrid .world-clock-widget-meridiem {
    font-size: 0.6em;
    font-weight: 400;
    text-transform: lowercase;
    opacity: 0.65;
    margin-left: 0.25em;
}

/* Date - small, muted, centered */
.world-clock-widget-card--hybrid .world-clock-widget-inline-meta {
    text-align: center;
}

.world-clock-widget-card--hybrid .world-clock-widget-date {
    font-size: 0.72rem;
    color: rgba(17, 24, 39, 0.48);
}

/* Clocks wrapper */
.footer-clocks-wrapper {
    margin-top: 0.75rem;
}

.footer-clocks-wrapper .world-clock-strip {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.footer-clocks-wrapper .world-clock-cell {
    background: linear-gradient(180deg, #374151 0%, #2D3748 100%);
    border-color: rgba(255, 255, 255, 0.1);
    min-height: auto;
    padding: 10px 10px 8px;
    gap: 2px;
}

.footer-clocks-wrapper .world-clock-strip {
    gap: 6px;
}

.footer-clocks-wrapper .world-clock-date {
    padding-top: 3px;
}

.world-clock-widget--no-header .world-clock-widget-grid {
    margin-top: 0;
}

/* Compact India Office */
.footer-office-compact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-office-compact p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(17, 24, 39, 0.72);
}

.footer-office-address {
    line-height: 1.5;
}

.footer-office-city {
    font-weight: 500;
    color: rgba(17, 24, 39, 0.65);
}

.footer-office-phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.2rem;
}

.footer-office-phones .phone-sep {
    color: rgba(17, 24, 39, 0.35);
    font-size: 0.7rem;
    padding: 0 0.15rem;
}

.footer-office-phones a {
    color: rgba(17, 24, 39, 0.72);
    text-decoration: none;
    white-space: nowrap;
}

.footer-office-phones a:hover {
    color: rgba(17, 24, 39, 0.92);
}

.footer-office-email {
    margin-top: 0.1rem;
}

.footer-office-email a {
    color: rgba(17, 24, 39, 0.72);
    text-decoration: none;
}

.footer-office-email a:hover {
    color: rgba(17, 24, 39, 0.92);
}

.footer-section {
    min-width: 0;
}

.footer-section h3 {
    margin: 0 0 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.86);
}

.footer-brand h3 {
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(17, 24, 39, 0.9);
    margin-bottom: 0.5rem;
}

.footer-copy {
    margin: 0;
    max-width: 28ch;
    color: rgba(17, 24, 39, 0.72);
    font-size: 0.82rem;
    line-height: 1.45;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(17, 24, 39, 0.12);
    color: rgba(17, 24, 39, 0.82);
    text-decoration: none;
    box-shadow: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social-link:hover,
.footer-social-link:visited {
    color: rgba(17, 24, 39, 0.82);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(17, 24, 39, 0.22);
}

.footer-links {
    display: grid;
    gap: 0.35rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin: 0;
    color: rgba(17, 24, 39, 0.72);
    font-size: 0.82rem;
    line-height: 1.45;
}

.site-footer a,
.site-footer a:visited {
    color: rgba(17, 24, 39, 0.82);
    text-decoration: none;
}

.footer-links a,
.footer-links a:visited {
    color: rgba(17, 24, 39, 0.82);
}

.footer-links a:hover {
    color: var(--gray-900);
}

.footer-office .footer-links li:first-child {
    color: var(--gray-600);
}

.footer-office-secondary .footer-newsletter {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.footer-office-secondary {
    display: grid;
    gap: 1.15rem;
}

.footer-office-secondary > h3,
.footer-office-secondary > .footer-links {
    display: none;
}

.footer-presence-block,
.footer-availability-block,
.footer-engagement-block {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0;
    border-top: none;
}

.footer-presence-block {
    padding-top: 0;
    border-top: 0;
}

.world-clock-widget {
    margin-top: 0;
}

.world-clock-widget-header {
    display: grid;
    gap: 0.34rem;
    margin-bottom: 0.95rem;
}

.world-clock-widget-kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.86);
}

.world-clock-widget-subtitle {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.86rem;
    line-height: 1.58;
}

.world-clock-widget-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.world-clock-widget-card {
    position: relative;
    display: grid;
    gap: 0.55rem;
    min-width: 0;
    padding: 0.72rem 0.72rem 0.82rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
        rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 2px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(17, 24, 39, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.world-clock-widget-card:hover {
    transform: scale(1.02);
    border-color: rgba(201, 169, 97, 0.55);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 2px 8px rgba(17, 24, 39, 0.06);
}

.world-clock-widget-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.94) 0%, rgba(201, 169, 97, 0.18) 100%);
}

.world-clock-widget-card-header {
    min-width: 0;
    padding-bottom: 0.12rem;
}

.world-clock-widget-card-title {
    display: inline-flex;
    align-items: center;
    gap: 0.48rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.52);
}

.world-clock-widget-title-flag {
    width: 14px;
    height: 10px;
    flex-shrink: 0;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.12);
}

.world-clock-widget-card-body {
    display: grid;
    justify-items: center;
    gap: 0.72rem;
    text-align: center;
}

.world-clock-widget-dial {
    position: relative;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 1.5px solid rgba(17, 24, 39, 0.18);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0 45%, transparent 46%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow:
        inset 0 1px 2px rgba(17, 24, 39, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.8);
}

.world-clock-widget-dial::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.world-clock-widget-dial::after {
    content: "";
    position: absolute;
    inset: 50%;
    width: 4px;
    height: 4px;
    background: rgba(17, 24, 39, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.world-clock-widget-dial-hub {
    position: absolute;
    inset: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(17, 24, 39, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    z-index: 5;
    opacity: 0.9;
}

.world-clock-widget-tick {
    position: absolute;
    left: 50%;
    top: 3px;
    width: 1px;
    height: 6px;
    background: rgba(17, 24, 39, 0.25);
    transform-origin: 50% 43px;
}

.world-clock-widget-tick.major {
    top: 2px;
    width: 1.5px;
    height: 8px;
    background: rgba(17, 24, 39, 0.45);
}

.world-clock-widget-hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: 50% calc(100% - 3px);
    border-radius: 1px;
    box-shadow: 0 1px 1px rgba(17, 24, 39, 0.15);
}

.world-clock-widget-hand-hour {
    width: 3.5px;
    height: 22px;
    background: rgba(17, 24, 39, 0.92);
    border-radius: 2px;
}

.world-clock-widget-hand-minute {
    width: 2.5px;
    height: 32px;
    background: rgba(17, 24, 39, 0.75);
    border-radius: 1px;
}

.world-clock-widget-hand-second {
    width: 1px;
    height: 36px;
    background: rgba(201, 169, 97, 0.85);
}

/* Country flags after name */
.world-clock-widget-card[data-region="us"] .world-clock-widget-title-flag {
    background: linear-gradient(180deg, #B22234 0 14%, #FFFFFF 14% 28%, #B22234 28% 42%, #FFFFFF 42% 56%, #B22234 56% 70%, #FFFFFF 70% 84%, #B22234 84% 100%);
}

.world-clock-widget-card[data-region="uk"] .world-clock-widget-title-flag {
    background:
        linear-gradient(90deg, transparent 41%, #FFFFFF 41% 59%, transparent 59%),
        linear-gradient(transparent 36%, #FFFFFF 36% 64%, transparent 64%),
        linear-gradient(90deg, transparent 45%, #C8102E 45% 55%, transparent 55%),
        linear-gradient(transparent 42%, #C8102E 42% 58%, transparent 58%),
        linear-gradient(180deg, #012169 0%, #012169 100%);
}

.world-clock-widget-card[data-region="india"] .world-clock-widget-title-flag {
    background: linear-gradient(180deg, #FF9933 0 33.33%, #FFFFFF 33.33% 66.66%, #138808 66.66% 100%);
}

.world-clock-widget-card[data-region="gulf"] .world-clock-widget-title-flag {
    background:
        linear-gradient(90deg, #FF0000 0 26%, transparent 26%),
        linear-gradient(180deg, #00732F 0 33.33%, #FFFFFF 33.33% 66.66%, #000000 66.66% 100%);
}

.world-clock-widget-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.18rem;
    text-align: center;
}

.world-clock-widget-time {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
    font-family: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.96rem;
    line-height: 1;
    color: rgba(17, 24, 39, 0.75);
    white-space: nowrap;
}

.world-clock-widget-hours {
    font-weight: 600;
    color: rgba(17, 24, 39, 0.88);
}

.world-clock-widget-separator {
    font-weight: 300;
    opacity: 0.5;
}

.world-clock-widget-minutes {
    font-weight: 400;
}

.world-clock-widget-meridiem {
    margin-left: 0.32em;
    font-size: 0.58em;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: lowercase;
    opacity: 0.55;
}

.world-clock-widget-date {
    font-size: 0.7rem;
    color: rgba(17, 24, 39, 0.48);
    letter-spacing: 0.01em;
}

.world-clock-widget-inline-meta {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.world-clock-widget-inline-divider {
    display: none;
}

.footer-availability-block h3,
.footer-engagement-block h3 {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 24, 39, 0.86);
}

.footer-availability-status-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.12rem;
}

.footer-availability-status {
    display: inline-flex;
    align-items: center;
    gap: 0.52rem;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gray-900);
}

.footer-availability-status::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
    animation: availability-pulse 2s ease-in-out infinite;
}

.footer-availability-status[data-state="closed"]::before {
    background: #DC2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2);
    animation: none;
}

@keyframes availability-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25); }
    50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.15); }
}

.footer-availability-hours {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 0.78rem;
    border: 1px solid rgba(17, 24, 39, 0.08);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
}

.footer-availability-line {
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: 0.01em;
    color: rgba(17, 24, 39, 0.72);
}

.footer-engagement-block {
    margin-top: 0;
}

.footer-engagement-block p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 32ch;
}

.footer-newsletter h3 {
    margin: 0 0 0.7rem;
}

.footer-newsletter p {
    margin: 0 0 0.85rem;
    max-width: 30ch;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Standalone Newsletter Section */
.newsletter-section {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, #F8F8F6 0%, #F5F5F2 100%);
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.4rem;
    color: rgba(17, 24, 39, 0.9);
}

.newsletter-text p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(17, 24, 39, 0.6);
}

.newsletter-form {
    display: flex;
    gap: 0.6rem;
    min-width: 320px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 6px;
    font-size: 0.95rem;
    background: #FFFFFF;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(17, 24, 39, 0.25);
}

.newsletter-form button {
    padding: 0.85rem 1.4rem;
    background: #111827;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #1F2937;
}

@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    
    .newsletter-form {
        min-width: 0;
        width: 100%;
    }
}

.footer-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
}

/* Mini newsletter in footer Row 1 */
.footer-newsletter-mini p {
    font-size: 0.82rem;
    color: rgba(17, 24, 39, 0.72);
    margin: 0 0 0.6rem;
    line-height: 1.45;
}

.footer-newsletter-form-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-newsletter-form-mini input {
    padding: 0.65rem 0.75rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 4px;
    font-size: 0.85rem;
    background: #FFFFFF;
}

.footer-newsletter-form-mini input:focus {
    outline: none;
    border-color: rgba(17, 24, 39, 0.25);
}

.footer-newsletter-form-mini button {
    padding: 0.65rem 1rem;
    background: #111827;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
}

.footer-newsletter-form-mini button:hover {
    background: #1F2937;
}

.footer-newsletter-form input {
    min-width: 0;
    padding: 0.75rem 0.85rem;
    border-radius: 0.55rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #FFFFFF;
    color: var(--gray-900);
    font-size: 0.92rem;
    box-shadow: none;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: rgba(17, 24, 39, 0.24);
    box-shadow: none;
}

.footer-newsletter-form button {
    padding: 0.75rem 0.9rem;
    border-radius: 0.55rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #111827;
    color: #FFFFFF;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
}

.footer-newsletter-form button:hover {
    background: #1F2937;
    border-color: #1F2937;
    filter: none;
}

.footer-bottom {
    padding-top: 3.5rem;
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: rgba(75, 85, 99, 0.96);
}

.footer-bottom p {
    margin: 0;
}

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

.footer-bottom a,
.footer-bottom a:visited {
    color: rgba(75, 85, 99, 0.96);
}

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

@media (max-width: 1100px) {
    .trust-strip-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .credibility-grid,
    .nri-contact-shell {
        grid-template-columns: 1fr;
    }

    .management-preview-grid,
    .journal-preview-grid,
    .customer-reviews-grid,
    .custom-cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .footer-presence-full {
        grid-column: span 2;
    }

    .footer-hours {
        grid-column: span 2;
    }

    .footer-clocks-wrapper .world-clock-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .trust-strip-section {
        margin-top: -8px;
    }

    .trust-strip-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 16px 0 18px;
    }

    .trust-strip-item {
        padding: 10px 0;
    }

    .trust-strip-item + .trust-strip-item {
        border-left: 0;
        border-top: 0;
    }

    .credibility-section {
        margin-top: 0;
        padding: clamp(3.5rem, 10vw, 4.5rem) 0;
        background: #F8FAFC;
    }

    .credibility-grid {
        grid-template-columns: 1fr;
    }

    .credibility-actions {
        align-items: stretch;
        gap: 14px;
    }

    .credibility-mission-block {
        padding: 16px 18px;
    }

    .credibility-stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }

    .hero-hybrid {
        min-height: 60vh;
        padding: 72px 16px 64px;
        align-items: center;
    }

    .hero-hybrid-has-image {
        min-height: 0;
        padding: 0;
    }

    .hero-hybrid-image {
        max-height: 60vh;
    }

    .hero-hybrid-rotator {
        min-height: 60vh;
    }

    .hero-hybrid::after {
        left: 16px;
        width: calc(100% - 32px);
        bottom: 28px;
    }
    
    .hero-hybrid-content {
        max-width: 100%;
    }

    .hero-hybrid-has-image .hero-hybrid-content {
        left: 16px;
        right: 16px;
        bottom: 64px;
        max-width: calc(100% - 32px);
    }

    .hero-copy-zillow {
        padding: 0;
        margin-bottom: 0;
        border-left-width: 0;
    }
    
    .hero-title-zillow {
        max-width: 15ch;
        font-size: clamp(1.55rem, 6.4vw, 2.15rem);
        margin-bottom: 0;
    }

    .hero-quote-pill {
        right: -1.1rem;
        bottom: 1.15rem;
        min-width: 8.45rem;
        gap: 0.56rem;
        padding: 0.76rem 1.18rem 0.76rem 0.9rem;
        font-size: 0.92rem;
    }

    .hero-quote-pill-icon {
        width: 1.75rem;
        height: 1.75rem;
    }

    .hero-quote-pill:hover,
    .hero-quote-pill:focus-visible {
        transform: translateX(-0.9rem);
    }
    
    .featured-properties-section {
        position: relative;
        padding: clamp(3.5rem, 10vw, 4.5rem) 0;
        background: #FFFFFF;
        overflow: visible;
    }

    .featured-properties-intro {
        margin: -0.35rem auto var(--space-8);
    }

    .featured-properties-title {
        font-size: clamp(2.1rem, 9vw, 2.8rem);
        line-height: 1.24;
        padding-top: 0.1em;
        white-space: normal;
    }

    .featured-properties-subtitle {
        font-size: 1rem;
    }
    
    .search-input-hybrid {
        grid-template-columns: 1fr;
    }
    
    .search-button-hybrid {
        width: 100%;
        justify-content: center;
    }
    
    .search-filters-hybrid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-hybrid {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .property-grid-hybrid {
        grid-template-columns: 1fr;
    }

    .service-depth-tags {
        justify-content: flex-start;
    }

    .customer-reviews-grid {
        grid-template-columns: 1fr;
    }

    .customer-review-badge {
        width: 100%;
        border-radius: 24px;
        justify-content: center;
    }

    .nri-contact-shell {
        grid-template-columns: 1fr;
    }

    .nri-contact-grid {
        grid-template-columns: 1fr;
    }

    .quote-request-grid {
        grid-template-columns: 1fr;
    }

    .quote-request-field-full {
        grid-column: auto;
    }

    .nri-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-footer {
        padding: 2.75rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .footer-presence-full {
        grid-column: span 2;
    }

    .footer-hours {
        grid-column: span 2;
    }

    .footer-clocks-wrapper .world-clock-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-copy,
    .footer-newsletter p {
        max-width: none;
    }

    .footer-socials {
        margin-top: 0.8rem;
        margin-bottom: 0;
    }

    .world-clock-widget-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .world-clock-widget-dial {
        width: 68px;
        height: 68px;
    }

    .footer-newsletter-form {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (min-width: 769px) {
    .featured-properties-title {
        white-space: nowrap;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes heroQuoteSlideIn {
    from {
        opacity: 0;
        transform: translateX(2.5rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-quote-pill {
        animation: none;
        transition: background-color 0.2s ease, box-shadow 0.2s ease;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-delay-1 {
    animation-delay: 0.1s;
    animation-fill-mode: backwards;
}

.animate-delay-2 {
    animation-delay: 0.2s;
    animation-fill-mode: backwards;
}

.animate-delay-3 {
    animation-delay: 0.3s;
    animation-fill-mode: backwards;
}


/* ============================================
   ADDITIONAL FIXES
   ============================================ */

/* Ensure hero content is properly positioned */
.hero-hybrid .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

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


/* ============================================
   PREMIUM MODERN BUTTONS
   ============================================ */

/* View All Properties Button - Premium Dark */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    text-decoration: none;
    font-family: "Object Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:visited {
    color: var(--white);
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-view-all svg {
    transition: transform 0.3s;
}

.btn-view-all:hover svg {
    transform: translateX(4px);
}

/* Call Button - Premium Gold */
.btn-call-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #C9A961 0%, #B89A4A 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-family: "Object Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-call-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-call-premium:hover::before {
    left: 100%;
}

.btn-call-premium:visited {
    color: #1a1a1a;
}

.btn-call-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #D4B56D 0%, #C9A961 100%);
}

.btn-call-premium svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.btn-call-premium:hover svg {
    transform: scale(1.1);
}

/* Contact Us Button - Premium Outline */
.btn-contact-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-family: "Object Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-contact-premium:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-contact-premium:visited {
    color: var(--white);
}

.btn-contact-premium svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.btn-contact-premium:hover svg {
    transform: scale(1.1);
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .btn-view-all,
    .btn-call-premium,
    .btn-contact-premium {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}


/* ============================================
   WHATSAPP BUTTON - Green Theme
   ============================================ */

/* WhatsApp Button Styling */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    font-family: "Object Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    background: #20BA5A;
}

.btn-whatsapp svg {
    fill: #FFFFFF;
    transition: transform 0.3s;
}

.btn-whatsapp:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}


/* ============================================
   CONTACT CHAT PROMO SECTION
   ============================================ */

.contact-chat-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 50px rgba(3, 8, 18, 0.18);
}

.contact-chat-promo-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A961 0%, #B89A4A 100%);
    color: #FFFFFF;
}

.contact-chat-promo-icon svg {
    width: 48px;
    height: 48px;
}

.contact-chat-promo-title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--gray-900);
}

.contact-chat-promo-text {
    margin: 0 0 28px;
    max-width: 32ch;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--gray-600);
}

.btn-start-chat {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #C9A961 0%, #B89A4A 100%);
    color: #1a1a1a;
    text-decoration: none;
    font-family: "Object Sans", "Adjusted Arial", Tahoma, Geneva, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-start-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-start-chat:hover::before {
    left: 100%;
}

.btn-start-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #D4B56D 0%, #C9A961 100%);
}

.btn-start-chat svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.btn-start-chat:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-chat-promo {
        padding: 36px 24px;
    }

    .contact-chat-promo-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .contact-chat-promo-icon svg {
        width: 36px;
        height: 36px;
    }

    .contact-chat-promo-title {
        font-size: 1.5rem;
    }

    .contact-chat-promo-text {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .btn-start-chat {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}

/* ============================================
   HOMEPAGE RHYTHM + FLAT SURFACES
   ============================================ */

.management-preview-section,
.journal-preview-section,
.customer-reviews-section,
.custom-cards-section,
.nri-contact-section {
    padding: clamp(4rem, 7vw, 5.75rem) 0;
}

.customer-reviews-section {
    background:
        radial-gradient(circle at top, rgba(201, 169, 97, 0.12), transparent 38%),
        linear-gradient(180deg, #F8FAFC 0%, #F3F4F6 100%);
}

.management-preview-section {
    background: #FFFFFF;
}

.management-preview-section + .customer-reviews-section {
    background:
        radial-gradient(circle at top, rgba(201, 169, 97, 0.12), transparent 38%),
        linear-gradient(180deg, #F8FAFC 0%, #F3F4F6 100%);
}

.management-preview-section + .featured-properties-section {
    background: #F8FAFC;
}

.customer-reviews-section + .featured-properties-section {
    background: #FFFFFF;
}

.featured-properties-section + .journal-preview-section {
    background: #F8FAFC;
}

.management-preview-section + .featured-properties-section + .journal-preview-section {
    background: #FFFFFF;
}

section.custom-cards-section:nth-of-type(odd) {
    background: #FFFFFF;
}

section.custom-cards-section:nth-of-type(even) {
    background: #F8FAFC;
}

.hero-quote-pill,
.hero-quote-pill-icon,
.quick-link,
.credibility-story-card,
.credibility-proof-card,
.credibility-mission-block,
.credibility-office-pill,
.credibility-stat-card,
.property-badge-hybrid,
.property-save,
.insight-card,
.insight-icon,
.management-preview-card,
.journal-preview-card,
.customer-review-card,
.custom-card-panel,
.customer-review-badge,
.customer-reviews-indicator,
.customer-reviews-indicator::before,
.quote-request-form,
.quote-request-field input,
.quote-request-field select,
.quote-request-field textarea,
.quote-request-submit,
.nri-contact-card,
.footer-social-link,
.footer-newsletter-form input,
.footer-newsletter-form button,
.btn-view-all,
.btn-call-premium,
.btn-contact-premium,
.btn-whatsapp,
.contact-chat-promo,
.contact-chat-promo-icon,
.btn-start-chat {
    border-radius: 0;
}

/* ============================================
   STATISTICS GRID (replaces mid-page clock)
   ============================================ */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
    position: relative;
    padding: 16px 14px 14px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 28px rgba(5, 10, 22, 0.18);
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.95) 0%, rgba(201, 169, 97, 0.22) 55%, rgba(201, 169, 97, 0) 100%);
}

.stat-card h3 {
    margin: 0 0 6px;
    font-family: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
    color: #F8FAFC;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
}

.stat-card p {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

.world-clock-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.world-clock-cell {
    position: relative;
    display: grid;
    gap: 5px;
    padding: 13px 12px 12px;
    min-height: 100px;
    align-content: start;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 12px 28px rgba(5, 10, 22, 0.18);
}

.world-clock-cell::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.95) 0%, rgba(201, 169, 97, 0.22) 55%, rgba(201, 169, 97, 0) 100%);
}

.world-clock-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
}

.world-clock-label::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 11px;
    flex-shrink: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.world-clock-cell:nth-child(1) .world-clock-label::before {
    background-image: linear-gradient(180deg, #B22234 0 14%, #FFFFFF 14% 28%, #B22234 28% 42%, #FFFFFF 42% 56%, #B22234 56% 70%, #FFFFFF 70% 84%, #B22234 84% 100%);
    background-size: 100% 100%;
}

.world-clock-cell:nth-child(2) .world-clock-label::before {
    background-image:
        linear-gradient(90deg, transparent 41%, #FFFFFF 41% 59%, transparent 59%),
        linear-gradient(transparent 36%, #FFFFFF 36% 64%, transparent 64%),
        linear-gradient(90deg, transparent 45%, #C8102E 45% 55%, transparent 55%),
        linear-gradient(transparent 42%, #C8102E 42% 58%, transparent 58%),
        linear-gradient(180deg, #012169 0%, #012169 100%);
}

.world-clock-cell:nth-child(3) .world-clock-label::before {
    background-image: linear-gradient(180deg, #FF9933 0 33.33%, #FFFFFF 33.33% 66.66%, #138808 66.66% 100%);
}

.world-clock-cell:nth-child(4) .world-clock-label::before {
    background-image:
        linear-gradient(90deg, #FF0000 0 26%, transparent 26%),
        linear-gradient(180deg, #00732F 0 33.33%, #FFFFFF 33.33% 66.66%, #000000 66.66% 100%);
}

.world-clock-time {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    margin-top: 3px;
    font-family: "Roboto Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: clamp(1.12rem, 1.7vw, 1.42rem);
    line-height: 1;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum" 1;
    color: #F8FAFC;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.world-clock-hours {
    font-weight: 700;
}

.world-clock-separator {
    font-weight: 300;
    opacity: 0.72;
}

.world-clock-minutes {
    font-weight: 400;
}

.world-clock-meridiem {
    margin-left: 0.5em;
    font-size: 0.58em;
    font-weight: 400;
    letter-spacing: 0.04em;
    opacity: 0.66;
    vertical-align: baseline;
    transform: none;
}

.world-clock-date {
    margin-top: auto;
    padding-top: 7px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 768px) {
    .management-preview-section,
    .journal-preview-section,
    .customer-reviews-section,
    .custom-cards-section,
    .nri-contact-section {
        padding: clamp(3.5rem, 10vw, 4.5rem) 0;
    }

    .world-clock-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .world-clock-strip {
        grid-template-columns: 1fr;
    }

    .world-clock-widget-grid {
        grid-template-columns: 1fr;
    }
}







