@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

:root {
    --primary: #C83828;
    --primary-hover: #85251B;
    --bg-main: #FAF7F2;
    --card-bg: #FFFFFF;
    --text-heading: #222222;
    --font-heading: 'Poppins', sans-serif;
    --text-body: #666666;
    --border-color: #E8E3DC;
    --white: #ffffff;
    --text-main: #222222;
    --text-muted: #666666;
    --accent: #C83828;
    --accent-hover: #85251B;
    --gold: #FFCD05;
    --secondary: #E35106;
    
    /* Modern Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.04);
    --shadow-hover: 0 24px 48px rgba(200, 56, 40, 0.08);
}

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

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', sans-serif; /* Clean, modern body font */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: 'Poppins', sans-serif; /* Premium geometric heading font */
    color: var(--text-main);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ======== PREMIUM BUTTONS ======== */
.btn-primary {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    box-shadow: 2.5px 4.3px 0px 0px #43130d;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 3.5px 6.3px 0px 0px #43130d;
}
.btn-outline-primary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}
.btn-outline-primary:hover {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 2.5px 4.3px 0px 0px #43130d;
}
.w-100 { width: 100%; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* ======== NAVBAR (Glassmorphism) ======== */
.navbar {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 252, 248, 0.85); /* Matches bg-main with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 24px;
}
.logo h1 {
    font-size: 26px; font-weight: 800; letter-spacing: -0.5px;
    color: var(--primary);
}
.nav-right {
    display: flex; align-items: center; gap: 30px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* ======== CALLBACK MODAL OVERLAY ======== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background: var(--card-bg, #fff);
    border-radius: 20px;
    padding: 36px 32px 32px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
    transform: translateY(20px);
    transition: transform 0.35s ease;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--text-body, #666);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
    background: rgba(0,0,0,0.07);
    color: var(--text-heading, #111);
}
.modal-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading, #111);
    margin-bottom: 6px;
}
.modal-header p {
    font-size: 13.5px;
    color: var(--text-body, #666);
    line-height: 1.5;
    margin-bottom: 22px;
}
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.modal-form label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-heading, #111);
    font-family: 'Poppins', sans-serif;
}
.modal-form .form-control {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color, #e5e7eb);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--bg-main, #fff);
    color: var(--text-heading, #111);
    outline: none;
    transition: border-color 0.2s;
}
.modal-form .form-control:focus {
    border-color: var(--primary, #C83828);
}
.modal-form .btn-primary.w-100,
.modal-form button[type="submit"] {
    width: 100%;
    margin-top: 6px;
}
/* Modal Success State Premium Styles */
.modal-success-state {
    display: none;
    text-align: center;
    padding: 30px 16px 20px;
    animation: scale-up-success 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scale-up-success {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
}

.success-icon-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary, #C83828) 0%, #E55C3E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(200, 56, 40, 0.35);
    position: relative;
    z-index: 2;
    animation: pop-in-circle 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
    transform: scale(0);
}

@keyframes pop-in-circle {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

.success-icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(200, 56, 40, 0.25);
    z-index: 1;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.success-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.success-subtitle {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.success-advisor-badge {
    background: #FFF5F4;
    border: 1px solid rgba(200, 56, 40, 0.15);
    border-radius: 12px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary, #C83828);
    margin: 0 auto 20px;
    box-shadow: 0 2px 6px rgba(200, 56, 40, 0.04);
}

.success-advisor-badge i {
    font-size: 14px;
    animation: icon-float 2s ease-in-out infinite alternate;
}

@keyframes icon-float {
    0% { transform: translateY(-1px); }
    100% { transform: translateY(1.5px); }
}

.btn-success-close {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 11px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
    display: inline-block;
    outline: none;
}

.btn-success-close:hover {
    background: var(--primary, #C83828);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(200, 56, 40, 0.25);
}

.query-success-icon {
    width: 54px;
    height: 54px;
    background: rgba(200, 56, 40, 0.1);
    color: var(--primary, #C83828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}


/* Sidebar overlay and drawer */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-main);
    z-index: 1002;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sidebar.open {
    right: 0;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}
.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-main);
}
.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-links a {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-main);
    transition: all 0.3s ease;
}
.sidebar-links a:hover,
.sidebar-links a.active {
    color: var(--accent);
    padding-left: 8px;
}
.contact-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 600; font-size: 18px;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.3s;
}
.contact-number i { color: var(--accent); }
.contact-number:hover { color: var(--primary); }
.hamburger {
    display: none; font-size: 24px; cursor: pointer; color: var(--text-main);
}
.hamburger-text {
    display: none;
}

/* ======== HERO V2 ======== */
.hero-v2 {
    display: flex;
    align-items: center;
    min-height: 380px; /* Layout properties at the top */
    position: relative;
    padding: 106px 80px 15px;
    background-image: linear-gradient(90deg, 
                        #E8DDD4 0%, 
                        #E8DDD4 45%, 
                        rgba(232, 221, 212, 0.8) 58%, 
                        rgba(232, 221, 212, 0.2) 72%, 
                        rgba(232, 221, 212, 0) 85%),
                      url('images/woman_sofa_hero.jpg');
    background-size: 100% 100%, cover; /* Corrected multiple background syntax */
    background-position: left center, right -120px top;
    background-repeat: no-repeat, no-repeat;
}
.hero-v2__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-v2__text {
    position: relative;
    z-index: 2;
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
}
.hero-v2__title {
    font-family: 'Poppins', sans-serif;
    font-size: 45px; /* Reduced size to optimize vertical screen real estate */
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    margin-bottom: 10px; /* Reduced margin */
}

/* Character reveal animation styles */
@keyframes char-reveal {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-v2__title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    animation: char-reveal 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--char-index) * 0.045s);
}
.hero-v2__actions {
    display: flex;
    gap: 14px;
    margin-bottom: 0;
}

/* Hero V2 Badge */
.hero-v2__badge {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    background: rgba(255,255,255,0.92);
    padding: 7px 18px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 12px; /* Reduced margin */
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.highlight-red {
    color: #C83828;
}
.hero-v2__sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 18px; /* Reduced margin */
}

/* Hero Explore Button (pill with arrow circle) */
.btn-hero-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #C83828;
    color: #fff;
    padding: 12px 20px 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 2px 4px 0px 0px #43130d;
    animation: heroExplorePulse 2.5s infinite;
}
.btn-hero-explore:hover {
    background: #85251B;
    transform: translateY(-2px);
    box-shadow: 3px 6px 0px 0px #43130d;
}
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #C83828 !important;
    border: 2px solid #C83828;
    padding: 10px 20px 10px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 2px 4px 0px 0px rgba(200, 56, 40, 0.15);
    outline: none;
}
.btn-hero-secondary:hover {
    background: #C83828;
    color: #fff !important;
    box-shadow: 3px 6px 0px 0px #43130d;
    transform: translateY(-2px);
}
.btn-hero-secondary .btn-arrow-circle {
    background: #C83828;
    color: #fff;
    transition: all 0.3s ease;
}
.btn-hero-secondary:hover .btn-arrow-circle {
    background: #fff;
    color: #C83828;
}
.btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 13px;
}

/* Floating Hero Info Cards */
.hero-features-section {
    position: relative;
    max-width: 1100px;
    margin: 30px auto 0; /* Standard top spacing below marquee ticker */
    padding: 0 20px;
    z-index: 10;
}
.hero-features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Hero Feature Cards - Redesigned with icon circles */
.hero-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 16px 22px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.feature-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200, 56, 40, 0.08);
    color: #C83828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}
.feature-icon-circle.icon-red {
    background: rgba(234, 67, 53, 0.08);
    color: #EA4335;
}
.feature-icon-circle.icon-teal {
    background: rgba(0, 150, 136, 0.08);
    color: #009688;
}
.feature-icon-circle.icon-green {
    background: rgba(76, 175, 80, 0.08);
    color: #4CAF50;
}
.hero-feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 6px;
}
.hero-feature-card p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #777;
    margin: 0;
    line-height: 1.4;
}

/* Need Help Bar */
.need-help-bar {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}
.need-help-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.need-help-left {
    display: flex;
    align-items: center;
    gap: 14px;
}
.need-help-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 56, 40, 0.08);
    color: #C83828;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.need-help-left h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}
.need-help-left p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #777;
    margin: 2px 0 0;
}
.need-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C83828;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.need-help-btn:hover {
    background: #85251B;
    transform: translateY(-2px);
}

/* Trusted By Logos */
.trusted-by-logos {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}
.trusted-by-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #999;
    margin: 0 0 4px;
}
.trusted-by-logos .trusted-by-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 28px;
}
.trusted-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #555;
    letter-spacing: -0.5px;
}
.logo-google { font-family: 'Product Sans', 'Inter', sans-serif; font-size: 22px; }
.logo-deloitte { font-size: 18px; color: #333; font-weight: 800; }
.logo-kpmg { font-size: 20px; font-weight: 800; }
.logo-ey { font-size: 24px; font-weight: 800; }
.logo-genpact { font-size: 18px; font-weight: 700; color: #333; }

/* Category Cards */
.category-cards-section {
    max-width: 1100px;
    margin: 50px auto 40px; /* Added spacing between floating info cards and category cards */
    padding: 0 20px;
}
.category-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    cursor: pointer;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover img {
    transform: scale(1.08);
}
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.category-overlay span {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.category-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #C83828;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}





.hero-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.hero-feature-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.hero-feature-card:hover i {
    transform: scale(1.1);
}
.hero-feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}

.hero-v2__img-main {
    width: 100%;
    height: 480px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}
.hero-v2__float-card {
    position: absolute;
    bottom: 28px;
    left: -30px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 16px 22px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float-gentle 5s ease-in-out infinite;
}
.hero-v2__float-icon {
    background: var(--primary);
    color: #fff;
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.hero-v2__float-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary);
}
.hero-v2__float-value {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
}

/* ======== VALUE STRIP ======== */
.value-strip {
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 24px;
}
.value-strip__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.value-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.value-strip__icon {
    width: 52px; height: 52px;
    background: rgba(200, 56, 40, 0.07);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.value-strip__item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.value-strip__item p {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

/* ======== SECTION HEADER ======== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header__tag {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-header__title {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.section-header__desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ======== ACCOMMODATION CARDS ======== */
.accom-section {
    padding: 50px 24px;
    background: var(--bg-main);
}
.accom-section__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.accom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.accom-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    height: 420px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.accom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(200, 56, 40, 0.12);
}
.accom-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.accom-card:hover .accom-card__img {
    transform: scale(1.06);
}
.accom-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(20,10,5,0.88) 0%, rgba(20,10,5,0.4) 50%, rgba(20,10,5,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: #fff;
    transition: background 0.4s ease;
}
.accom-card:hover .accom-card__overlay {
    background: linear-gradient(0deg, rgba(20,10,5,0.92) 0%, rgba(20,10,5,0.5) 55%, rgba(20,10,5,0.1) 100%);
}
.accom-card__type {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}
.accom-card__desc {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
    max-width: 280px;
}
.accom-card__link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    transition: opacity 0.3s, gap 0.3s;
}
.accom-card:hover .accom-card__link {
    opacity: 1;
    gap: 12px;
}

/* ======== WHY RUSHA V2 — Alternating Blocks ======== */
.why-v2 {
    padding: 50px 24px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}
.why-v2__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.why-v2__block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.why-v2__block:last-child {
    margin-bottom: 0;
}
.why-v2__block--reverse {
    direction: rtl;
}
.why-v2__block--reverse > * {
    direction: ltr;
}
.why-v2__img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.why-v2__img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-v2__block:hover .why-v2__img-wrap img {
    transform: scale(1.04);
}
.why-v2__num {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(200, 56, 40, 0.35);
    line-height: 1;
    margin-bottom: 10px;
}
.why-v2__text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
}
.why-v2__highlight {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.5;
}
.why-v2__text p:last-child {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.75;
}

/* ======== CTA BAND ======== */
.cta-band {
    background: linear-gradient(135deg, var(--primary) 0%, #85251B 50%, #E35106 100%);
    padding: 50px 24px 30px;
}
.cta-band__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.cta-band__text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}
.cta-band__text p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.6;
}
.cta-band__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.cta-band__actions .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-band__actions .btn-primary:hover {
    background: #FAF7F2;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-band__actions .btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-band__actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px);
}

/* ======== ANIMATIONS ======== */
@keyframes pulse-dot {
    0%, 100% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}
@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-heading);
    max-width: 1100px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-tagline-container {
    margin-bottom: 24px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--accent);
    background: rgba(0, 0, 0, 0.45);
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero-tagline {
    color: var(--white);
}
.tagline-divider {
    color: var(--accent);
    font-weight: 800;
}
.hero-title {
    font-size: 60px; font-weight: 800; margin-bottom: 20px;
    line-height: 1.15; letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.hero-subtitle {
    font-size: 19px; font-weight: 300; opacity: 0.95; line-height: 1.7;
    max-width: 820px;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ======== OFFERING CARDS ======== */
.offering-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 15px;
}
.offering-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px 20px;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.offering-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}
.offering-card.active {
    background: var(--white);
    border-color: var(--accent);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.offering-card.active h3, 
.offering-card.active p {
    color: var(--primary);
}
.offering-card.active .offering-card-icon {
    background: rgba(94, 151, 255, 0.15);
    color: var(--accent-hover);
}
.offering-card-icon {
    font-size: 26px;
    color: var(--accent);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.offering-card:hover .offering-card-icon {
    transform: scale(1.1);
    background: rgba(94, 151, 255, 0.2);
    color: var(--white);
}
.offering-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    transition: color 0.3s;
}
.offering-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    font-weight: 400;
    transition: color 0.3s;
}

/* ======== FILTER FEEDBACK BAR ======== */
.filter-feedback-bar {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    animation: slideDown 0.3s ease-out;
}
.filter-feedback-bar span {
    font-size: 16px;
    color: var(--text-main);
}
.filter-feedback-bar strong {
    color: var(--accent-hover);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.btn-clear-filter {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-clear-filter:hover {
    background: var(--primary);
    color: var(--white);
}
@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ======== SEARCH WIDGET (Elevated) ======== */
.search-section {
    max-width: 1050px; margin: -70px auto 50px;
    position: relative; z-index: 10; padding: 0 20px;
}
.search-card {
    background: var(--white);
    border-radius: 16px; padding: 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.search-card h2 {
    font-size: 22px; margin-bottom: 24px; font-weight: 700; color: var(--primary);
}
.search-form {
    display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 20px; align-items: end;
}
.form-group label {
    font-size: 13px; color: var(--text-muted); margin-bottom: 8px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.form-group select {
    width: 100%; padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px; font-size: 15px; font-weight: 500;
    background-color: var(--white); outline: none;
    transition: all 0.3s ease; color: var(--text-main);
    cursor: pointer;
}
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 56, 40, 0.1);
}
.btn-search {
    background: var(--accent); color: var(--white);
    padding: 14px 28px; border: none; border-radius: 10px;
    font-weight: 600; cursor: pointer; font-size: 15px; height: 50px;
    transition: 0.3s ease; box-shadow: 2.5px 4.3px 0px 0px #43130d;
}
.btn-search:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 3.5px 5.3px 0px 0px #43130d; }

/* ======== PROPERTIES GRID & CARDS ======== */
.featured-properties, .similar-properties {
    max-width: 1200px; margin: 60px auto; padding: 0 20px;
}
.section-title {
    font-size: 32px; margin-bottom: 40px; text-align: center;
    font-weight: 800; color: var(--text-main);
}
.properties-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 35px;
}
.property-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-md); cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    display: flex; flex-direction: column;
}
.property-card:hover {
    box-shadow: var(--shadow-hover); transform: translateY(-6px);
}
.card-image {
    height: 240px; background-size: cover; background-position: center; position: relative;
}
.card-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px);
    color: var(--primary); padding: 6px 14px; border-radius: 20px;
    font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm);
}
.card-content { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.card-header-info { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.card-header-info h3 { font-size: 22px; font-weight: 700; line-height: 1.2; }
.room-type {
    font-size: 12px; background: rgba(200, 56, 40, 0.1); color: var(--primary);
    padding: 6px 12px; border-radius: 8px; font-weight: 600; text-align: right;
}
.card-size { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.card-size i { color: var(--accent); }
.card-footer {
    display: flex; justify-content: space-between; align-items: flex-end;
    border-top: 1px solid var(--border-color); padding-top: 16px; margin-top: auto;
}
.price { font-weight: 700; font-size: 18px; color: var(--text-main); font-family: 'Outfit', sans-serif;}
.pricing-split { font-size: 14px; line-height: 1.5; color: var(--text-muted); font-weight: 500;}
.pricing-split div { color: var(--text-main); font-weight: 600;}
.btn-share {
    background: var(--bg-main); border: 1px solid var(--border-color);
    padding: 8px 16px; border-radius: 8px; color: var(--text-muted);
    cursor: pointer; display: flex; align-items: center; gap: 6px;
    font-weight: 500; transition: all 0.2s;
}
.btn-share:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* ======== PROPERTY DETAIL PAGE ======== */
.property-detail-container { max-width: 1200px; margin: 0 auto 60px; padding: 0 20px; }
.property-gallery {
    height: 500px; border-radius: 20px; overflow: hidden; margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}
.main-image { width: 100%; height: 100%; background-size: cover; background-position: center; }

.property-header-bar {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--white); padding: 24px 35px; border-radius: 16px;
    box-shadow: var(--shadow-md); margin-bottom: 40px;
    border: 1px solid var(--border-color);
}
.ph-brand { font-size: 13px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.ph-left h2 { font-size: 36px; font-weight: 800; margin: 8px 0; color: var(--primary); }
.ph-size { color: var(--text-muted); font-size: 16px; font-weight: 500;}
.ph-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.ph-type {
    font-size: 16px; font-weight: 600; background: var(--primary); color: white;
    padding: 8px 18px; border-radius: 30px; box-shadow: 0 4px 10px rgba(200, 56, 40, 0.3);
}
.pricing-box { font-size: 20px; font-weight: 700; font-family: 'Outfit', sans-serif;}

.property-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.card-section {
    background: var(--white); padding: 35px; border-radius: 16px;
    box-shadow: var(--shadow-md); margin-bottom: 30px; border: 1px solid var(--border-color);
}
.detail-section h3 {
    font-size: 24px; font-weight: 700; margin-bottom: 24px;
    padding-bottom: 15px; border-bottom: 2px solid var(--bg-main);
}

.about-text { color: var(--text-muted); font-size: 16px; line-height: 1.8; }
.read-more-btn {
    background: none; border: none; color: var(--accent); font-weight: 600;
    margin-top: 12px; cursor: pointer; font-size: 15px; transition: color 0.2s;
}
.read-more-btn:hover { color: var(--accent-hover); }

/* Features Grid */
.privileges-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.privilege-box h4 { font-size: 18px; margin-bottom: 20px; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.feature-list li { margin-bottom: 12px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 12px; font-size: 15px;}
.feature-list li::before {
    content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--white); background: var(--accent);
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0; margin-top: 3px;
}

/* Landmarks */
.landmarks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px;}
.landmark-card {
    background: var(--bg-main); padding: 14px 18px; border-radius: 10px;
    font-size: 15px; font-weight: 500; display: flex; align-items: center; gap: 12px;
    border: 1px solid var(--border-color); color: var(--text-main);
}
.landmark-card span { font-size: 20px; }

/* Map */
.map-container {
    background: var(--bg-main); height: 350px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 25px; border: 2px dashed var(--border-color);
}
.map-placeholder { text-align: center; color: var(--text-muted); }
.map-placeholder i { font-size: 48px; margin-bottom: 15px; color: var(--primary); display: block; }
.map-placeholder span { font-weight: 500; font-size: 16px;}

/* Reviews */
.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; font-size: 20px; font-weight: 700; }
.rating { background: #00AA6C; color: white; padding: 6px 12px; border-radius: 8px; font-size: 16px; }
.review-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.review-card {
    background: var(--bg-main); border: 1px solid var(--border-color);
    padding: 24px; border-radius: 16px;
}
.reviewer { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-weight: 700; color: var(--text-main);}
.avatar {
    width: 40px; height: 40px; background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    font-size: 18px;
}
.review-card p { font-size: 15px; color: var(--text-muted); font-style: italic; }

/* Sticky Contact Sidebar */
.contact-card.sticky {
    position: sticky; top: 110px; background: var(--white); padding: 35px;
    border-radius: 16px; box-shadow: var(--shadow-lg); text-align: center;
    border: 1px solid var(--border-color);
}
.contact-card h3 { font-size: 22px; margin-bottom: 16px; line-height: 1.3;}
.contact-card p { color: var(--text-muted); font-size: 15px; margin-bottom: 30px; line-height: 1.6;}
.contact-actions { display: flex; flex-direction: column; gap: 15px; }

/* ======== OCCUPANCY TYPES ======== */
.occupancies-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.occupancies-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}
.occupancies-section p.section-desc {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.occupancy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.occupancy-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}
.occupancy-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.occupancy-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(200, 56, 40, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}
.occupancy-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.occupancy-card:hover .occupancy-card-icon {
    background-color: var(--primary);
}
.occupancy-card:hover .occupancy-card-icon img {
    filter: brightness(0) invert(1);
}
.occupancy-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-heading);
}
.occupancy-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

/* ======== WHY RUSHA PILLARS GRID ======== */
.why-rusha-section {
    padding: 50px 24px;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.why-rusha-container {
    max-width: 1200px;
    margin: 0 auto;
}
.why-rusha-header {
    text-align: center;
    margin-bottom: 60px;
}
.why-rusha-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
}
.why-rusha-header p {
    font-size: 16px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pillar-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.pillar-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 56, 40, 0.2);
    box-shadow: var(--shadow-lg);
}
.pillar-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #eee;
}
.pillar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-card:hover .pillar-image {
    transform: scale(1.05);
}
.pillar-text-container {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.pillar-text-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 12px;
}
.pillar-text-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}
.pillar-text-container p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* Trusted By Ticker */
.trusted-by-section {
    padding: 30px 24px;
    background-color: var(--card-bg);
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}
.trusted-by-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.marquee-content {
    display: flex;
    gap: 15px;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading);
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.3s ease;
}
.marquee-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(200, 56, 40, 0.02);
    transform: translateY(-2px);
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonial Carousel Section */
.testimonial-carousel-section {
    padding: 50px 24px;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.testimonial-carousel-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 48px;
}
.carousel-viewport {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}
.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}
.carousel-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(200, 56, 40, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-card:hover {
    border-color: rgba(200, 56, 40, 0.25);
    box-shadow: 0 20px 45px rgba(200, 56, 40, 0.08), 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}
.carousel-rating {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
}
.carousel-quote-icon {
    font-size: 42px;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    top: 35px;
    right: 40px;
}
.carousel-quote {
    font-size: 15.5px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-family: 'Outfit', sans-serif;
}
.carousel-user {
    display: flex;
    align-items: center;
    gap: 16px;
}
.carousel-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #E55C3E 100%);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(200, 56, 40, 0.18);
}
.carousel-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 2px;
}
.carousel-info span {
    font-size: 13px;
    color: var(--text-body);
}
.carousel-controls {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--text-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}
.carousel-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background-color: rgba(200, 56, 40, 0.04);
}
.carousel-dots {
    display: flex;
    gap: 8px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 100px;
}

/* Footer Callback Form Card */
.footer-form-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.footer-form-card h4 {
    color: var(--white) !important;
    margin-bottom: 8px !important;
}
.footer-form-card p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
}
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-form .form-control {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: all 0.3s ease;
}
.footer-form .form-control:focus {
    border-color: var(--primary);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(200, 56, 40, 0.25);
}
.footer-form .form-control option {
    background-color: #1a1a1a;
    color: var(--white);
}
.footer-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 13px;
}
.footer-success-state {
    display: none;
    text-align: center;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.footer-success-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(200, 56, 40, 0.15);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.footer-success-state h5 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}
.footer-success-state p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.45) !important;
}

/* Premium Footer Styles */
.premium-footer {
    background: rgba(255, 252, 248, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    padding: 30px 24px 25px; /* Tighter bottom padding */
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    position: relative;
}
.premium-footer > * {
    position: relative;
    z-index: 1;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 25px; /* Reduced gap before the copyright block */
}
.footer-col h4 {
    color: var(--text-heading);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.footer-logo img {
    height: 60px;
    object-fit: contain;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    list-style: none;
}
.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.footer-contact-info li i {
    color: var(--primary);
    margin-top: 4px;
}
.footer-contact-info li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-info li a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px; /* Reduced top padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--text-muted);
}
.footer-bottom p {
    margin: 0;
    font-weight: 500;
    text-align: center;
}
.dev-badge {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 500;
    color: var(--text-heading) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin: 0 auto;
}
.dev-badge:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25D366;
    color: #128C7E !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    transform: translateY(-1px);
}
.dev-badge i {
    color: #25D366;
    font-size: 15px;
}

/* ======== RESPONSIVE ======== */
/* ======== CALLBACK MODAL popup ======== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 34, 34, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: var(--card-bg);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 480px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 8px;
}

.modal-header p {
    font-size: 14px;
    color: var(--text-body);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Property Details Page Title Block */
.property-title-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 24px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
}
.property-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.8px;
}
.property-title span {
    color: var(--primary);
    font-weight: 700;
}
.property-location {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--text-body);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
@media (max-width: 480px) {
    .modal-container {
        padding: 30px 20px;
        max-width: 90%;
    }
}

@media (max-width: 1024px) {
    .property-layout { grid-template-columns: 1fr; }
    .contact-card.sticky { position: static; margin-top: 30px;}
    .search-form { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

.locations-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -1.2px;
    line-height: 1.25;
    margin-bottom: 24px;
}

/* Desktop header action buttons hiding */
.nav-links li.header-action-btn {
    display: none;
}

@media (max-width: 1024px) {
    body {
        padding-top: 80px !important; /* Increased from 70px to support larger header */
    }
    main, #app-content, #main-content, .blog-layout {
        padding-top: 0px !important;
    }
    .about-hero, .blog-hero, .corporate-hero, .locations-hero, .hero-section {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }
    .nav-container {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 14px !important;
        gap: 0 !important;
        height: 80px !important; /* Increased from 70px */
        width: 100% !important;
    }
    .logo {
        display: flex !important;
        justify-content: flex-start !important;
        width: auto !important;
        margin: 0 0 0 16px !important;
        text-align: left !important;
    }
    .logo img {
        margin: 0 !important;
        height: 48px !important; /* Made logo even larger */
    }
    .nav-right {
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 8px !important;
        margin-top: 0 !important;
    }
    .nav-right nav {
        display: none !important;
    }
    .nav-links {
        display: none !important;
    }
    .nav-right .btn-primary { 
        display: none !important; 
    }
    .nav-right .contact-number {
        display: inline-flex !important;
        background-color: #FFCC00 !important;
        color: #000000 !important;
        border-radius: 30px !important;
        padding: 8px 10px !important; /* Keep button height unchanged */
        align-items: center !important;
        justify-content: center !important;
        font-size: 13px !important; /* Set font-size of phone number directly */
        font-family: 'Outfit', sans-serif !important;
        font-weight: 800 !important;
        letter-spacing: 0.2px !important;
        box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3) !important;
        border: none !important;
        text-decoration: none !important;
        white-space: nowrap !important;
        transition: all 0.2s ease !important;
        line-height: 1 !important;
        gap: 0px !important; /* Fully collapse gap between icon and number */
    }
    .nav-right .contact-number i {
        font-size: 13.5px !important; /* Made phone icon larger */
        margin: 0 2px 0 0 !important; /* Balanced visual spacing */
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
    }
    .nav-right .contact-number .contact-text {
        display: none !important; /* Hide "Call us on " on mobile */
    }
    .nav-right .contact-number::after {
        content: none !important; /* Disable pseudo-element */
    }
    .hamburger { 
        display: flex !important; 
        align-items: center !important;
        justify-content: center !important;
        font-size: 16px !important; /* Made hamburger icon slightly smaller to fit text */
        color: var(--text-main) !important;
        cursor: pointer !important;
        width: auto !important; /* Changed from 44px to auto to fit text */
        height: 40px !important; /* Compact unified height */
        padding: 0 12px !important; /* Padding for the label text */
        gap: 6px !important; /* Spacing between label and icon */
        background-color: rgba(0, 0, 0, 0.04) !important;
        border-radius: 8px !important;
        transition: all 0.2s ease !important;
    }
    .hamburger-text {
        display: inline-block !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        font-family: 'Poppins', sans-serif !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        color: var(--text-main) !important;
    }
    .hero { min-height: auto; padding: 100px 15px 50px; }
    .hero-title { font-size: 36px; margin-bottom: 16px; }
    .hero-subtitle { font-size: 15px; margin-bottom: 24px; }
    .hero-tagline-container { font-size: 11px; padding: 6px 14px; gap: 8px; }
    .offering-cards-container { grid-template-columns: 1fr; gap: 12px; }
    .offering-card { padding: 18px 16px; }
    .offering-card-icon { width: 44px; height: 44px; font-size: 20px; margin-bottom: 10px; }
    .search-form { grid-template-columns: 1fr; }
    .search-section { margin-top: -30px; }
    .privileges-grid, .landmarks-grid, .review-cards { grid-template-columns: 1fr; }
    .property-header-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
    .ph-right { align-items: flex-start; text-align: left; }
    .card-section { padding: 25px 20px; }
    
    .similar-properties .properties-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    .similar-properties .properties-grid::-webkit-scrollbar {
        height: 6px;
    }
    .similar-properties .properties-grid::-webkit-scrollbar-thumb {
        background-color: var(--border-color);
        border-radius: 10px;
    }
    .similar-properties .property-card {
        min-width: 85%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    
    .occupancy-grid, .pillars-grid, .testimonials-container { grid-template-columns: 1fr; }
    .footer-grid { 
        grid-template-columns: 1fr 1fr !important; 
        gap: 30px 16px !important; 
    }
    .footer-grid > :nth-child(1) {
        grid-column: span 2 !important;
    }
    .footer-grid > :nth-child(2) {
        grid-column: span 1 !important;
    }
    .footer-grid > :nth-child(3) {
        grid-column: span 1 !important;
    }
    .footer-grid > :nth-child(4) {
        grid-column: span 2 !important;
    }

    /* Hero V2 responsive */
    .hero-v2 {
        padding: 20px 16px 30px !important; /* Optimized top/bottom padding */
        background: linear-gradient(180deg, rgba(232, 221, 212, 0.8) 0%, rgba(232, 221, 212, 0.55) 60%, rgba(232, 221, 212, 0.2) 100%),
                    url('images/woman_sofa_hero.jpg');
        background-size: cover;
        background-position: right center;
        min-height: 480px !important; /* Increased height of the hero section for mobile to create spacing */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* Keep content at the top below header */
    }
    .hero-v2__inner { 
        grid-template-columns: 1fr; 
        gap: 12px !important; 
    }
    .hero-v2__badge {
        margin-bottom: 10px !important; /* Tightened for spacing */
        padding: 5px 12px !important;
        font-size: 10px !important;
        letter-spacing: 2px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        background: rgba(255, 255, 255, 0.9) !important;
        color: var(--primary) !important;
        border-radius: 100px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
        display: inline-block !important;
        align-self: center !important;
    }
    .hero-v2__title { 
        font-size: 24px !important; /* Slightly more compact */
        margin-bottom: 8px !important; 
        line-height: 1.2 !important;
        font-weight: 800 !important;
        color: #1a1a1a !important;
        letter-spacing: -0.5px !important;
    }
    .hero-v2__sub {
        font-size: 13px !important; /* Reduced to fit in viewport */
        line-height: 1.4 !important;
        margin: 0 auto 12px !important; /* Kept CTA closer to the headline */
        color: #4a4a4a !important;
        max-width: 320px !important;
    }
    .hero-v2__actions {
        margin-bottom: 10px !important;
    }
    .hero-v2__stats { 
        gap: 12px !important; 
        flex-wrap: nowrap !important;
        justify-content: center !important;
    }
    .hero-v2__stat {
        text-align: center !important;
    }
    .hero-v2__stat-num { 
        font-size: 18px !important; 
    }
    .hero-v2__stat-label {
        font-size: 10.5px !important;
    }

    /* Value strip responsive */
    .value-strip__inner { grid-template-columns: 1fr 1fr; gap: 24px; }

    /* Accommodation responsive */
    .accom-grid { grid-template-columns: 1fr; gap: 20px; }
    .accom-card { height: 320px; }
    .accom-section { padding: 60px 15px; }

    /* Why V2 responsive */
    .why-v2 { padding: 60px 15px; }
    .why-v2__block { grid-template-columns: 1fr; gap: 30px; }
    .why-v2__block--reverse { direction: ltr; }
    .why-v2__img-wrap img { height: 250px; }
    .why-v2__num {
        font-size: 36px;
        color: rgba(200, 56, 40, 0.35) !important;
        font-weight: 800 !important;
    }

    /* CTA Band responsive */
    .cta-band { padding: 40px 15px 20px; }
    .cta-band__text h2 { font-size: 26px; }
    .cta-band__actions { flex-direction: column; gap: 12px; }

    .section-header__title { font-size: 28px; }
}



/* =========================================================
   PROPERTY DETAILS PAGE STYLES
   ========================================================= */

.property-details-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    box-sizing: border-box;
}
.property-main-content {
    min-width: 0;
}
@media (min-width: 993px) and (max-width: 1200px) {
    .property-details-layout {
        grid-template-columns: 1fr 320px !important;
        gap: 20px !important;
        padding: 5px 16px 60px !important;
    }
    .property-sidebar > div {
        padding: 24px 20px !important; /* Slightly tighter padding for form card */
    }
}
.highlights-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

@media (max-width: 992px) {
    .property-details-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 5px 16px 40px !important;
    }
    
    .property-sidebar {
        margin-top: 0 !important;
    }
    
    .property-sidebar > div {
        position: static !important;
    }
    
    .privileges-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .location-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 768px) {
    /* Property Title Block */
    .property-details-layout {
        padding: 5px 12px 30px !important;
    }

    /* Carousel */
    .property-carousel {
        height: 220px !important;
        border-radius: 14px !important;
        margin-bottom: 12px !important;
    }

    /* Thumbnails row */
    #prop-carousel-thumbnails {
        gap: 6px !important;
        margin-top: 6px !important;
    }
    #prop-carousel-thumbnails img {
        width: 56px !important;
        height: 42px !important;
        border-radius: 6px !important;
    }

    /* Highlights bar */
    .highlights-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        padding: 16px !important;
        justify-items: center !important;
        text-align: center !important;
    }
    .highlight-divider {
        display: none !important;
    }
    .highlights-bar > div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .highlights-bar > div > div {
        text-align: center !important;
        margin-top: 4px !important;
    }
    .highlights-bar button {
        grid-column: span 2 !important;
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* About & General sections */
    .property-main-content section {
        margin-bottom: 24px !important;
        text-align: center !important;
    }
    .property-main-content section h2 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }
    .property-main-content section p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }

    /* Privileges section */
    .property-main-content section .privileges-grid {
        padding: 20px 16px !important;
        border-radius: 14px !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .privileges-grid h3 {
        font-size: 16px !important;
        text-align: center !important;
    }
    .privileges-grid ul {
        font-size: 13px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .privileges-grid li {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    /* Landmarks grid */
    .landmarks-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .landmarks-grid > div {
        justify-content: center !important;
        text-align: center !important;
    }

    /* Sidebar form */
    .property-sidebar > div {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .property-sidebar h3 {
        font-size: 18px !important;
        text-align: center !important;
    }

    /* Property title block */
    .property-title-block {
        padding: 20px 16px 8px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        align-items: center !important;
    }
    .property-title {
        font-size: 24px !important;
        line-height: 1.35 !important;
        text-align: center !important;
        letter-spacing: -0.5px !important;
    }
    .property-location {
        justify-content: center !important;
        width: 100% !important;
        margin-top: 6px !important;
    }

    /* Global overflow prevention */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    #app-content, main {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .property-details-layout {
        padding: 5px 12px 30px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .property-main-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .property-carousel {
        height: 220px !important;
        border-radius: 14px !important;
        margin-bottom: 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .property-carousel img {
        border-radius: 14px !important;
        max-width: 100% !important;
    }
    #prop-carousel-images {
        max-width: 100% !important;
        width: 100% !important;
    }
    #prop-carousel-thumbnails {
        gap: 6px !important;
        margin-top: 6px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
    }
    #prop-carousel-thumbnails img {
        width: 56px !important;
        height: 42px !important;
        border-radius: 6px !important;
    }

    /* Highlights bar */
    .highlights-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px !important;
        padding: 16px 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: var(--bg-main) !important;
        border-radius: 12px !important;
        margin-bottom: 24px !important;
        border: 1px solid var(--border-color) !important;
    }
    .highlights-bar > div {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px !important;
    }
    .highlights-bar > div i {
        margin-top: 0 !important;
        margin-bottom: 2px !important;
        font-size: 20px !important;
    }
    .highlight-divider {
        display: none !important;
    }
    .highlights-bar button {
        grid-column: span 2 !important;
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    /* Property sections headings centering */
    .property-main-content section {
        margin-bottom: 24px !important;
    }
    .property-main-content section h2 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
        text-align: center !important;
        width: 100% !important;
    }
    .property-main-content section p {
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    /* Privileges section centering */
    .property-main-content section .privileges-grid {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .privileges-grid h3 {
        font-size: 16px !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }
    .privileges-grid ul {
        font-size: 13px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }
    .privileges-grid li {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Landmarks centering */
    .landmarks-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .landmarks-grid > div {
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
    }

    /* Address & Reviews centering */
    .location-reviews-grid h2 {
        text-align: center !important;
    }
    .location-reviews-grid p {
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    .location-reviews-grid i {
        margin-right: 0 !important;
    }
    .location-reviews-grid iframe {
        display: block !important;
        margin: 0 auto !important;
    }
    .location-reviews-grid > div:last-child {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    .location-reviews-grid > div:last-child > div:first-of-type {
        justify-content: center !important;
        display: flex !important;
        margin-bottom: 15px !important;
    }
    .review-card {
        text-align: center !important;
        width: 100% !important;
    }
    .review-card > div:first-child {
        justify-content: center !important;
    }
    .review-card p {
        text-align: center !important;
    }

    /* Bottom Call Now CTA block centering */
    .property-main-content section:last-of-type > div[style*="margin-top: 30px"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px !important;
        gap: 16px !important;
    }
    .property-main-content section:last-of-type > div[style*="margin-top: 30px"] > div {
        text-align: center !important;
    }
    .property-main-content section:last-of-type > div[style*="margin-top: 30px"] a {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Sidebar form centering */
    .property-sidebar {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    .property-sidebar > div {
        padding: 20px 16px !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    .property-sidebar h3 {
        font-size: 18px !important;
        text-align: center !important;
    }
    .property-sidebar p {
        text-align: center !important;
    }
    .property-sidebar input {
        box-sizing: border-box !important;
    }

    /* Map iframe fix */
    .property-main-content iframe {
        max-width: 100% !important;
    }

    /* You May Also Like section */
    .also-like-section {
        padding: 30px 12px !important;
    }
    .also-like-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    /* Global box-sizing for inputs */
    input, select, textarea, button {
        box-sizing: border-box !important;
    }
    
    /* All divs with inline max-width */
    [style*="max-width: 1200px"] {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Privileges section and review cards padding fixes */
    .privileges-section {
        padding: 20px 16px !important;
        border-radius: 14px !important;
    }
    .review-card {
        padding: 16px 12px !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* FLOATING WHATSAPP BUTTON */
/* ======== PREMIUM SOCIAL LINKS ======== */
.footer-social-block {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #222222 !important; /* Explicit color to bypass CSS theme overrides */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}
.social-icon-btn i {
    color: #222222 !important; /* Forces dark icons */
    transition: color 0.3s ease !important;
}
.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(214, 36, 159, 0.3);
}
.social-icon-btn.instagram:hover i {
    color: #ffffff !important; /* Force white icon on hover */
}
.social-icon-btn.facebook:hover {
    background-color: #1877F2;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 14px rgba(24, 119, 242, 0.3);
}
.social-icon-btn.facebook:hover i {
    color: #ffffff !important; /* Force white icon on hover */
}

@media (max-width: 768px) {
    .footer-social-block {
        align-items: center !important;
        width: 100% !important;
        margin-top: 15px !important;
        margin-bottom: 5px !important;
    }
}

/* FLOATING WHATSAPP BUTTON WITH LIVE CHAT LABEL */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 6px 18px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 15px rgba(0, 0, 0, 0.15);
    }
}

/* HERO EXPLORE CTA PULSING HIGHLIGHT */
@keyframes heroExplorePulse {
    0% {
        box-shadow: 2px 4px 0px 0px #43130d, 0 0 0 0 rgba(200, 56, 40, 0.7);
    }
    70% {
        box-shadow: 2px 4px 0px 0px #43130d, 0 0 0 10px rgba(200, 56, 40, 0);
    }
    100% {
        box-shadow: 2px 4px 0px 0px #43130d, 0 0 0 0 rgba(200, 56, 40, 0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 50px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 25px;
    padding: 0 18px;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float i {
    font-size: 24px;
}

.whatsapp-float span {
    font-size: 13.5px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    color: #ffffff;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: translateY(-3px) scale(1.03);
    color: #ffffff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        height: 44px;
        padding: 0 14px;
        border-radius: 22px;
    }
    .whatsapp-float i {
        font-size: 20px;
    }
    .whatsapp-float span {
        font-size: 12px;
    }
}

/* ======== MOBILE RESPONSIVE ALIGNMENT FIXES ======== */
.properties-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); 
    gap: 35px;
}
.landmarks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .highlights-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 20px 0 !important;
    }
    .highlight-divider {
        display: none !important;
    }
    .highlights-bar button {
        grid-column: span 2 !important;
        margin-left: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .landmarks-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    /* Header padding for mobile */
    .nav-container {
        padding: 12px 16px !important;
    }
    /* Homepage Hero centering & spacing */
    .hero-v2__text {
        text-align: center !important;
    }
    .hero-v2__title br {
        display: none !important;
    }
    .hero-v2__actions {
        justify-content: center !important;
    }
    .hero-v2__sub {
        font-size: 13px !important;
        margin-bottom: 16px !important;
        line-height: 1.4 !important;
    }
    /* Trusted by padding adjustment */
    .trusted-by-section {
        padding: 20px 15px !important;
    }
    /* Value strip stacking and padding */
    .value-strip {
        padding: 40px 15px !important;
    }
    .value-strip__inner {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    /* Testimonial slider padding */
    .testimonial-carousel-section {
        padding: 50px 15px !important;
    }
    .carousel-card {
        padding: 30px 20px !important;
        text-align: center !important;
    }
    .carousel-rating {
        justify-content: center !important;
        margin-bottom: 14px !important;
    }
    .carousel-quote {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    /* CTA banner margins */
    .cta-band {
        margin: 40px 15px !important;
        padding: 40px 20px !important;
        border-radius: 16px !important;
    }
    .cta-band__actions {
        width: 100% !important;
    }
    .cta-band__actions .btn-primary,
    .cta-band__actions .btn-outline {
        width: 100% !important;
        text-align: center !important;
    }
    /* Locations Hero Mobile Typography */
    .locations-hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 16px !important;
    }
    .locations-hero p {
        font-size: 14.5px !important;
        margin-bottom: 30px !important;
        line-height: 1.55 !important;
    }

    /* Footer mobile padding & centering */
    .premium-footer {
        padding: 25px 15px 30px !important;
        margin-top: 10px !important;
        text-align: center !important;
    }
    .footer-col {
        text-align: center !important;
        align-items: center !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .footer-logo {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }
    .footer-logo img {
        margin: 0 auto !important;
    }
    .footer-links, .footer-contact-info {
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .footer-contact-info li {
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .footer-bottom {
        text-align: center !important;
    }
    .dev-badge {
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
    }
    /* Hero Features Section Mobile Adjustments */
    .hero-features-section {
        margin-top: 20px !important;
        position: relative;
        z-index: 10;
    }
    .hero-features-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 15px !important;
    }
    .hero-feature-card {
        padding: 18px 10px 14px !important;
    }
    .feature-icon-circle {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
        margin-bottom: 10px !important;
    }
    .hero-feature-card h4 {
        font-size: 12px !important;
    }
    .hero-feature-card p {
        font-size: 10.5px !important;
    }
    /* Need Help Bar Mobile */
    .need-help-bar {
        margin: 20px auto !important;
        padding: 0 15px !important;
    }
    .need-help-inner {
        padding: 14px 16px !important;
        border-radius: 14px !important;
        gap: 10px !important;
    }
    .need-help-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .need-help-left h4 {
        font-size: 13px !important;
    }
    .need-help-left p {
        font-size: 11px !important;
    }
    .need-help-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
    /* Trusted By Logos Mobile */
    .trusted-by-logos {
        padding: 24px 15px !important;
    }
    .trusted-by-logos .trusted-by-title {
        font-size: 18px !important;
        margin-bottom: 18px !important;
    }
    .trusted-logos-row {
        gap: 20px !important;
    }
    .logo-text {
        font-size: 15px !important;
    }
    .logo-google { font-size: 17px !important; }
    .logo-ey { font-size: 18px !important; }
    /* Category Cards Mobile */
    .category-cards-section {
        margin-top: 20px !important; /* Tight spacing for mobile viewports */
        margin-bottom: 20px !important;
        padding: 0 15px !important;
    }
    .category-cards-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .category-card {
        border-radius: 12px !important;
    }
    .category-overlay {
        padding: 10px !important;
    }
    .category-overlay span {
        font-size: 11px !important;
    }
    .category-arrow {
        width: 24px !important;
        height: 24px !important;
        font-size: 10px !important;
    }
    /* Hero Explore Button Mobile */
    .btn-hero-explore {
        padding: 10px 16px 10px 20px !important;
        font-size: 13px !important;
    }
    .btn-hero-secondary {
        background: var(--white) !important;
        color: #C83828 !important;
        border: 2px solid #C83828 !important;
        padding: 10px 16px 10px 20px !important;
        font-size: 13px !important;
    }
    .btn-arrow-circle {
        width: 26px !important;
        height: 26px !important;
        font-size: 11px !important;
    }
    .scroll-down-indicator {
        position: absolute !important;
        bottom: 12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        display: block !important;
    }

    /* Mobile Centering Overrides */
    h2, h3, .section-header, .section-header__title, .section-header__desc {
        text-align: center !important;
    }
    .section-header__desc {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 600px !important;
    }
    .value-strip__item {
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
    }
    .value-strip__icon {
        margin: 0 auto !important;
    }
    .why-v2__text {
        text-align: center !important;
        align-items: center !important;
    }
    .why-v2__text h3, .why-v2__highlight {
        text-align: center !important;
    }
    .carousel-card {
        text-align: center !important;
    }
    .carousel-user {
        justify-content: center !important;
    }
    .hero-v2__stats {
        justify-content: center !important;
    }
    .hero-v2__stat {
        text-align: center !important;
    }
    .cta-band {
        text-align: center !important;
    }
    .cta-band__text {
        text-align: center !important;
    }
    .cta-band__actions {
        align-items: center !important;
        justify-content: center !important;
    }

    /* Locations Page Mobile Compact styles */
    .locations-hero {
        padding: 72px 16px 16px !important;
    }
    .locations-hero-title {
        font-size: 22px !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    .locations-hero p {
        font-size: 13.5px !important;
        margin-bottom: 24px !important;
        line-height: 1.45 !important;
    }
    .search-widget-container {
        padding: 16px 16px 24px !important;
        border-radius: 24px !important;
        margin-top: 0 !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04) !important;
    }
    .search-form {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        align-items: end !important;
    }
    .search-form .form-group {
        margin-bottom: 0 !important;
    }
    .search-form .form-group label {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.5px !important;
    }
    .search-form select {
        height: 48px !important;
        padding: 0 12px !important;
        font-size: 13.5px !important;
        box-sizing: border-box !important;
        background-color: var(--white) !important;
    }
    .search-form button.btn-primary {
        grid-column: span 1 !important;
        margin-top: 16px !important;
        height: 48px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .explore-section {
        padding-top: 40px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* ==========================================================================
   MARQUEE TICKER (Designed for Working Professionals...)
   ========================================================================== */
@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.promo-ticker {
    width: 100%;
    overflow: hidden;
    background: #1a1a1a; /* Dark premium background matching luxury brand */
    padding: 14px 0;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.25);
    border-top: 2px solid var(--primary); /* Gold/Red line */
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 5;
    margin-top: 0;
    margin-bottom: 25px; /* Increased spacing below ticker banner */
}

.ticker-wrap {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll 35s linear infinite;
    gap: 30px;
    padding-right: 30px;
}

.ticker-item {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.ticker-item .highlight {
    color: #FFCC00; /* Yellow highlight */
    font-weight: 700;
    margin: 0 4px;
}

/* Pause on hover on desktop to allow reading easily */
@media (hover: hover) {
    .promo-ticker:hover .ticker-content {
        animation-play-state: paused;
    }
}

@media (max-width: 768px) {
    .promo-ticker {
        padding: 10px 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .ticker-item {
        font-size: 11.5px;
    }
    .ticker-content {
        animation-duration: 25s; /* Slightly faster on small screens */
        gap: 20px;
        padding-right: 20px;
    }
}


/* ==========================================================================
   GLOBAL LOAD & SCROLL REVEAL ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}
.animate-fade-in {
    animation: fadeIn 1s ease both !important;
}

/* Staggered delays */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }

/* Native IntersectionObserver scroll animations */
.reveal-on-scroll {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity !important;
}
.reveal-on-scroll.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ======== SHARE MODAL STYLES ======== */
.share-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.share-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.share-modal-container {
    background: var(--white);
    border-radius: 24px;
    padding: 30px 24px;
    width: 90%;
    max-width: 400px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.share-modal-overlay.active .share-modal-container {
    transform: translateY(0);
}
.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.share-modal-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}
.share-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}
.share-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.share-option:hover {
    transform: translateY(-3px);
}
.share-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: var(--shadow-sm);
}
.share-option span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-body);
}
.share-copy-field {
    display: flex;
    align-items: center;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px 12px;
    gap: 8px;
}
.share-copy-input {
    flex-grow: 1;
    border: none;
    background: none;
    font-size: 13px;
    color: var(--text-muted);
    outline: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.share-copy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.share-copy-btn:hover {
    background: var(--primary-hover);
}

/* ==========================================
   DESKTOP ONLY OVERRIDES (min-width: 1025px)
   ========================================== */
@media (min-width: 1025px) {
    /* 1. Enlarge Rusha Stays Logo in Header */
    .logo img {
        height: 60px !important;
    }
    
    /* 2. Enlarge Footer Contact Details & Callback Button */
    .footer-contact-info li a {
        font-size: 18px !important;
    }
    .footer-contact-info li i {
        font-size: 18px !important;
        margin-top: 2px !important;
    }
    .footer-contact-info .btn-primary {
        font-size: 16px !important;
        padding: 16px 24px !important;
    }
}

/* Bouncing Scroll Down Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    cursor: pointer;
    transition: opacity 0.3s;
}
.scroll-down-indicator i {
    margin-top: 4px;
    font-size: 16px;
    color: var(--primary);
    animation: bounce 2s infinite;
    display: inline-block;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}


/* ═══════════ SEO UTILITY CLASSES (generated) ═══════════ */
.text-primary { color: var(--primary); }
.text-whatsapp { color: #25D366; }
.text-center { text-align: center; }
.d-none { display: none; }
.cursor-pointer { cursor: pointer; }
.mt-2px { margin-top: 2px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-15-block { margin-top: 15px; display: block; }
.mt-20-full { margin-top: 20px; width: 100%; }
.mb-12 { margin-bottom: 12px; }
.pt-100 { padding-top: 100px; }
.d-flex-gap-12 { display: flex; gap: 12px; }
.d-flex-gap-10-center { display: flex; gap: 10px; align-items: center; }
.d-flex-col-gap-8 { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.d-inline-flex-nowrap { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.footer-social-block { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.logo-img { height: 45px; object-fit: contain; }
.thumb-50 { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.prop-detail-label { font-weight: 600; color: var(--text-heading); font-size: 15px; }
.label-caps { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-heading); }
.tag-pill { font-size: 13px; opacity: 0.6; border: 1px solid rgba(0,0,0,0.1); padding: 2px 6px; border-radius: 4px; }
.icon-primary-lg { font-size: 28px; color: var(--primary); margin-bottom: 16px; }
.heading-sm { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.body-sm { font-size: 13.5px; color: var(--text-body); line-height: 1.5; }
.body-xs { font-size: 13.5px; line-height: 1.4; }
.info-card { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 16px; }
.card-footer-row { border-top: 1px solid var(--border-color); padding-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.badge-white { background: #ffffff; color: var(--text-heading); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.btn-sidebar-primary { width: 100%; padding: 12px; font-size: 14px; border-radius: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(200, 56, 40, 0.2); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
/* ═══════════════════════════════════════════════════════════ */


/* ═══════════ MORE SEO UTILITY CLASSES (generated) ═══════════ */
.tag-pill-gray { font-size: 13px; opacity: 0.6; border: 1px solid rgba(0,0,0,0.1); padding: 2px 6px; border-radius: 4px; background: rgba(0,0,0,0.02); }
.bg-main { background-color: var(--bg-main); }
.bg-card { background-color: var(--card-bg); }
.mt-15 { margin-top: 15px; }
.mt-0 { margin-top: 0; }
.align-center { align-items: center; text-align: center; }
.tag-caps-sm { font-size: 11px; color: var(--text-body); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-title-lg { font-size: 32px; font-weight: 800; color: var(--primary); font-family: 'Poppins', sans-serif; line-height: 1.1; }
.grid-cols-1 { grid-template-columns: 1fr; }
.list-disc-styled { list-style-type: disc; margin: 15px 0 15px 40px; color: var(--text-body); font-size: 15px; line-height: 1.7; }
.container-center-width { text-align: center; max-width: 900px; margin: 0 auto; width: 100%; }
.img-cover-full { width: 100%; height: 100%; object-fit: cover; }
.avatar-size { width: 140px; height: 140px; margin-bottom: 10px; }
.tag-hero-badge { background: rgba(198, 58, 45, 0.08); color: var(--primary); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; padding: 6px 16px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.border-left-styled { border-left: 1px solid var(--border-color); padding-left: 30px; text-align: left; }
.text-primary-mb20 { color: var(--primary); margin-bottom: 20px; font-weight: 500; }
.flex-gap-30 { display: flex; gap: 30px; margin-top: 30px; justify-content: flex-start; flex-wrap: wrap; }
.block-center-margin { display:block; margin: 10px auto 20px; }
.block-center-primary-32 { display:block; margin: 10px auto 20px; font-size: 32px; color: var(--primary); }
.block-center-primary-32-center { display:block; margin: 10px auto 20px; text-align: center; font-size: 32px; color: var(--primary); }
.mb-30 { margin-bottom: 30px; }
.max-width-900-center { max-width: 900px; margin: 0 auto; width: 100%; }
.pill-card { background: #ffffff; color: var(--text-heading); padding: 6px 14px; border-radius: 30px; font-size: 13.5px; font-weight: 600; border: 1px solid var(--border-color); display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm); }
.margin-auto-center { margin: 0 auto; text-align:center; }
.flex-wrap-gap-12 { display: flex; flex-wrap: wrap; gap: 12px; }
.grid-autofit-24 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.filter-label { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--text-heading); margin-bottom: 8px; display: block; }
.filter-select { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid var(--border-color); font-size: 14px; background-color: var(--white); outline: none; color: var(--text-heading); font-family: 'Inter', sans-serif; cursor: pointer; }
.max-width-1200-center { max-width: 1200px; margin: 0 auto; }

/* Layout classes to prevent FOUC (flash of unstyled content) on locations page */
.pt-90 {
    padding-top: 90px;
}
.locations-hero {
    padding: 50px 24px 60px;
    background: linear-gradient(90deg, #E55C3E 0%, rgba(249, 217, 118, 0.95) 45%, rgba(255, 252, 248, 0.35) 100%), url('images/woman_sofa_hero.jpg');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.search-widget-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}
/* ═════════════════════════════════════════════════════════════════ */

/* Desktop horizontal alignment for footer copyright and developer badge in a single row */
@media (min-width: 769px) {
    .footer-bottom {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        text-align: left !important;
    }
    .footer-bottom p {
        text-align: left !important;
    }
}

/* Responsive Navbar spacing for mid-size desktop screens to prevent right side overflow */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-container {
        padding: 16px 16px !important;
    }
    .nav-right {
        gap: 15px !important;
    }
    .nav-links {
        gap: 15px !important;
    }
    .nav-right .contact-number .contact-text {
        display: none !important; /* Hide 'Call us on ' text prefix */
    }
    .nav-right .btn-primary {
        padding: 10px 16px !important; /* Slightly smaller button */
        font-size: 13.5px !important;
    }
}

/* ==================== BLOG POST META STYLES ==================== */
.post-meta {
    display: flex;
    gap: 20px;
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.post-meta i {
    font-size: 14px;
}

/* Mobile Alignment for Post Meta */
@media (max-width: 768px) {
    .post-meta {
        gap: 10px !important;
        font-size: 11px !important;
        margin-bottom: 10px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        text-align: center !important;
    }
}
