/* ===== ROOT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary: #1a3c6e;
    --primary-light: #2356a0;
    --primary-dark: #0f2447;
    --accent: #e8a020;
    --accent-dark: #c88a10;
    --accent-light: #fdf3e0;
    --dark: #0d1b2a;
    --text: #374151;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --white: #ffffff;
    --bg-light: #f7f8fc;
    --bg-grey: #f3f4f6;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(26,60,110,0.09);
    --shadow-md: 0 8px 32px rgba(26,60,110,0.13);
    --shadow-hover: 0 16px 48px rgba(26,60,110,0.18);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; font-size: 15px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.25; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }

/* ===== PRELOADER ===== */
#preloader { display: none !important; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-logo { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 20px; }
.pre-logo span { color: var(--accent); }
.pre-bar { width: 180px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 10px; overflow: hidden; margin: 0 auto; }
.pre-fill { height: 100%; background: var(--accent); border-radius: 10px; animation: preload 1.5s ease forwards; }
@keyframes preload { 0%{width:0} 100%{width:100%} }

/* ===== NAVBAR ===== */
#mainNav {
    background: transparent;
    padding: 16px 0;
    transition: var(--transition);
    z-index: 1050;
    position: fixed; width: 100%; top: 0;
}
#mainNav.scrolled {
    background: var(--white);
    box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    padding: 10px 0;
}
.navbar-brand .logo-up { color: var(--white); font-size: 1.35rem; font-weight: 800; }
.navbar-brand .logo-prop { color: var(--accent); font-size: 1.35rem; font-weight: 800; }
.navbar-brand .logo-dot { color: rgba(255,255,255,0.5); font-size: 0.95rem; }
#mainNav.scrolled .logo-up { color: var(--primary); }
#mainNav.scrolled .logo-dot { color: var(--text-light); }

.nav-link {
    color: rgba(255,255,255,0.88) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 7px 13px !important;
    border-radius: 6px;
    letter-spacing: 0.1px;
}
.nav-link:hover, .nav-link.active-page { color: var(--accent) !important; }
#mainNav.scrolled .nav-link { color: var(--text) !important; }
#mainNav.scrolled .nav-link:hover, #mainNav.scrolled .nav-link.active-page { color: var(--primary) !important; }

.btn-nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    border-radius: 50px;
    padding: 9px 22px !important;
    font-weight: 600;
    font-size: 0.84rem;
    border: none;
}
.btn-nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(232,160,32,0.4); }
.navbar-toggler { border: 2px solid rgba(255,255,255,0.4); padding: 4px 8px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
#mainNav.scrolled .navbar-toggler { border-color: var(--border); }
#mainNav.scrolled .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a3c6e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ===== HERO ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient);
    position: relative;
    display: flex;
    align-items: center;
    padding: 110px 0 80px;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute; inset: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.07;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.hero-section .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(232,160,32,0.18);
    border: 1px solid rgba(232,160,32,0.45);
    color: #f5c06b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.22;
    margin-bottom: 16px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle { color: rgba(255,255,255,0.72); font-size: 1rem; font-weight: 400; margin-bottom: 36px; }

/* Search Box */
.search-tabs { display: flex; justify-content: center; gap: 4px; margin-bottom: 12px; }
.stab {
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.20);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.stab.active, .stab:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.hero-search-box {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.32);
    max-width: 880px;
    margin: 0 auto;
    border: 1.5px solid rgba(255,255,255,0.25);
}
.hero-search-box .row { align-items: stretch; }
.search-field-wrap { position: relative; display: flex; flex-direction: column; }
.search-field-label {     text-align: left;font-size: 0.64rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; padding: 10px 18px 0; line-height: 1; }
.search-select, .search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 6px 18px 12px;
    font-size: 0.88rem;
    color: var(--dark);
    background: var(--white);
    border-right: 1px solid var(--border);
    font-family: 'Poppins', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    font-weight: 500;
}
.search-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.search-select:focus, .search-input:focus { background: #f8f9ff; }
.search-input { border-right: none; }
.search-btn {
    width: 100%; height: 100%; min-height: 66px;
    background: linear-gradient(135deg, var(--accent) 0%, #d4880a 100%);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.search-btn:hover { background: linear-gradient(135deg, #d4880a 0%, var(--accent) 100%); transform: none; box-shadow: none; }

.trending-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: 14px; }
.trend-label { color: rgba(255,255,255,0.55); font-size: 0.78rem; display: flex; align-items: center; gap: 5px; }
.trend-label i { color: var(--accent); }
.trend-tag { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.82); padding: 4px 13px; border-radius: 50px; font-size: 0.75rem; }
.trend-tag:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.hero-stats { display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: 20px 32px; max-width: 620px; margin: 38px auto 0; gap: 0; }
.hstat { text-align: center; padding: 0 28px; }
.hstat-num { display: block; font-size: 1.7rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hstat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }
.hstat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.18); }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a { color: rgba(255,255,255,0.45); font-size: 1.1rem; animation: bounce 2s infinite; display: block; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(9px)} }

/* Inner page hero */
.page-hero {
    background: var(--gradient);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before { content:''; position:absolute; inset:0; background:url('../images/hero-bg.jpg') center/cover; opacity:0.06; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { color: rgba(255,255,255,0.70); font-size: 0.95rem; max-width: 620px; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.breadcrumb-custom a { color: rgba(255,255,255,0.55); }
.breadcrumb-custom a:hover { color: var(--accent); }
.breadcrumb-custom i { font-size: 0.6rem; }

/* ===== SECTION ===== */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.bg-light { background: var(--bg-light) !important; }
.bg-grey { background: var(--bg-grey) !important; }
.bg-dark-grad { background: var(--gradient); }

.sec-badge {
    display: inline-block;
    background: rgba(26,60,110,0.08);
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}
.sec-badge-white { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.sec-title { font-size: clamp(1.55rem, 3vw, 2.15rem); font-weight: 800; color: var(--dark); line-height: 1.28; }
.sec-title span { color: var(--primary-light); }
.sec-title-white { color: var(--white); }
.sec-title-white span { color: var(--accent); }
.sec-sub { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; line-height: 1.65; }
.sec-sub-white { color: rgba(255,255,255,0.68); }

/* ===== BUTTONS ===== */
.btn-main {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.2px;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,60,110,0.32); color: var(--white); }

.btn-accent {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.38); }

.btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    font-family: 'Poppins', sans-serif;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-outline-white {
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    font-family: 'Poppins', sans-serif;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }

.btn-sm { padding: 8px 20px !important; font-size: 0.8rem !important; }

/* ===== CITY CARDS ===== */
.city-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 210px;
    display: block;
}
.city-card::before {
    content: '';
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.55s ease;
}
.city-card:hover::before { transform: scale(1.07); }
.city-card .city-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.15) 65%, transparent 100%); }
.city-card .city-info { position: absolute; bottom: 16px; left: 16px; z-index: 1; }
.city-card .city-info h5 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin: 0 0 2px; }
.city-card .city-info span { color: rgba(255,255,255,0.72); font-size: 0.74rem; }
.city-card .city-count { position: absolute; top: 14px; right: 14px; background: var(--accent); color: var(--white); font-size: 0.7rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; z-index: 1; }

.city-img-1::before { background-image: url('https://images.unsplash.com/photo-1597268498942-60931e1a4b3b?w=500&q=80'); }
.city-img-2::before { background-image: url('https://images.unsplash.com/photo-1529253355930-ddbe423a2ac7?w=500&q=80'); }
.city-img-3::before { background-image: url('https://images.unsplash.com/photo-1599420186946-7b6fb4e297f0?w=500&q=80'); }
.city-img-4::before { background-image: url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?w=500&q=80'); }
.city-img-5::before { background-image: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?w=500&q=80'); }
.city-img-6::before { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=500&q=80'); }
.city-img-7::before { background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=500&q=80'); }
.city-img-8::before { background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=500&q=80'); }
.city-img-9::before  { background-image: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?w=500&q=80'); }
.city-img-10::before { background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=500&q=80'); }

/* ===== DEVELOPER CARDS ===== */
.dev-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 18px 22px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
    height: 100%;
}
.dev-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hover); border-color: var(--primary-light); }
.dev-logo {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}
.dev-card:hover .dev-logo { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); transform: rotate(-5deg) scale(1.08); }
.dev-card h6 { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.dev-card .dev-count { font-size: 0.74rem; color: var(--text-light); }
.dev-card .dev-cities { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

/* ===== PROJECT CARDS ===== */
.proj-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex; flex-direction: column;
    height: 100%;
}
.proj-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.proj-img-wrap { position: relative; overflow: hidden; height: 210px; flex-shrink: 0; }
.proj-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.proj-card:hover .proj-img-wrap img { transform: scale(1.07); }
.proj-badge {
    position: absolute; top: 12px; left: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.badge-upcoming { background: rgba(26,60,110,0.92); color: var(--white); }
.badge-new { background: rgba(232,160,32,0.96); color: var(--white); }
.badge-ongoing { background: rgba(16,185,129,0.92); color: var(--white); }
.badge-ready { background: rgba(99,102,241,0.92); color: var(--white); }
.badge-luxury { background: rgba(220,38,38,0.92); color: var(--white); }

.proj-rera { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.88); font-size: 0.64rem; padding: 3px 8px; border-radius: 50px; }
.proj-overlay {
    position: absolute; inset: 0;
    background: rgba(13,27,42,0.62);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.proj-card:hover .proj-overlay { opacity: 1; }
.btn-proj-overlay {
    background: var(--white);
    color: var(--primary);
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.btn-proj-overlay:hover { background: var(--accent); color: var(--white); }

.proj-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.proj-dev { font-size: 0.7rem; color: var(--primary-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 5px; }
.proj-name { font-size: 0.98rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; line-height: 1.35; }
.proj-loc { font-size: 0.77rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 4px; }
.proj-loc i { color: var(--accent); font-size: 0.7rem; }
.proj-meta { display: flex; gap: 14px; font-size: 0.75rem; color: var(--text-light); margin-bottom: 14px; flex-wrap: wrap; }
.proj-meta i { color: var(--primary-light); margin-right: 3px; }
.proj-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border-light); padding-top: 12px; margin-top: auto; }
.proj-price { font-weight: 800; color: var(--primary); font-size: 0.93rem; }
.proj-action {
    background: var(--accent);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}
.proj-action:hover { background: var(--accent-dark); color: var(--white); }
.proj-card-link { display: block; color: inherit; text-decoration: none; height: 100%; }

/* ===== FILTER PILLS ===== */
.filter-wrap { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.fpill {
    padding: 7px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.fpill.active, .fpill:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== CATEGORY CARDS ===== */
.cat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 14px 22px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
}
.cat-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.cat-icon {
    width: 58px; height: 58px;
    background: rgba(26,60,110,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: var(--transition);
}
.cat-card:hover .cat-icon { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); }
.cat-card h6 { font-size: 0.86rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cat-card span { font-size: 0.72rem; color: var(--text-light); }

/* ===== LAUNCH BANNER ===== */
.launch-banner { background: var(--gradient); padding: 60px 0; position: relative; overflow: hidden; }
.launch-banner::before { content:''; position:absolute; right:-80px; top:-80px; width:380px; height:380px; background:rgba(232,160,32,0.07); border-radius:50%; pointer-events:none; }
.launch-banner h2 { font-size: clamp(1.4rem,2.8vw,2rem); color: var(--white); margin-bottom: 12px; font-weight: 800; }
.launch-banner h2 span { color: var(--accent); }
.launch-banner p { color: rgba(255,255,255,0.68); font-size: 0.92rem; margin-bottom: 26px; }
.launch-tabs { display: flex; gap: 12px; flex-wrap: wrap; }
.ltab { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 12px 18px; cursor: pointer; transition: var(--transition); }
.ltab:hover, .ltab.active { background: rgba(232,160,32,0.18); border-color: var(--accent); }
.ltab > i { font-size: 1.35rem; color: var(--accent); }
.ltab strong { display: block; color: var(--white); font-size: 0.88rem; font-weight: 600; }
.ltab span { color: rgba(255,255,255,0.55); font-size: 0.72rem; }
.btn-launch {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 15px 34px;
    border-radius: 50px;
    font-size: 0.96rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(232,160,32,0.38);
    font-family: 'Poppins', sans-serif;
}
.btn-launch:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(232,160,32,0.52); color: var(--white); }

/* ===== INSIGHT CARDS ===== */
.insight-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.insight-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); margin-bottom: 16px; }
.insight-card h5 { font-size: 0.98rem; font-weight: 700; color: var(--dark); margin-bottom: 9px; }
.insight-card p { font-size: 0.84rem; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.insight-bar { background: var(--border); border-radius: 50px; height: 5px; overflow: hidden; margin-bottom: 8px; }
.ibar-fill { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 50px; width: 0; }
.insight-tag { font-size: 0.72rem; font-weight: 700; color: var(--primary-light); background: rgba(26,60,110,0.07); padding: 3px 10px; border-radius: 50px; }

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex; flex-direction: column;
    height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-img { position: relative; overflow: hidden; height: 195px; flex-shrink: 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--accent); color: var(--white); font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 8px; }
.blog-body h5 { font-size: 0.95rem; font-weight: 700; color: var(--dark); line-height: 1.42; margin-bottom: 8px; }
.blog-body p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; flex: 1; }
.blog-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary-light); font-weight: 600; font-size: 0.8rem; margin-top: 14px; }
.blog-link:hover { gap: 10px; color: var(--accent); }

/* ===== TESTIMONIALS ===== */
.testi-section { background: linear-gradient(135deg, #eef2ff 0%, #f7f8fc 100%); }
.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    margin: 6px 4px;
}
.testi-quote { font-size: 1.8rem; color: var(--accent); margin-bottom: 12px; opacity: 0.55; line-height: 1; }
.testi-card p { font-size: 0.88rem; color: var(--text); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.tuser-av { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-user strong { display: block; font-size: 0.88rem; color: var(--dark); font-weight: 700; }
.testi-user span { font-size: 0.73rem; color: var(--text-light); }
.tuser-stars { color: var(--accent); font-size: 0.75rem; display: flex; gap: 2px; margin-left: auto; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ===== FAQ ===== */
.faq-item {
    background: var(--white) !important;
    border-radius: var(--radius) !important;
    border: 1.5px solid var(--border) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-btn {
    background: var(--white) !important;
    color: var(--dark) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    padding: 17px 22px !important;
    box-shadow: none !important;
    border-radius: var(--radius) !important;
    font-family: 'Poppins', sans-serif !important;
}
.faq-btn:not(.collapsed) { color: var(--primary-light) !important; background: rgba(26,60,110,0.03) !important; }
.faq-body { padding: 0 22px 18px; font-size: 0.86rem; color: var(--text-light); line-height: 1.72; }

/* ===== ABOUT ===== */
.about-img { border-radius: var(--radius-lg); width: 100%; height: 440px; object-fit: cover; box-shadow: var(--shadow-hover); }
.about-badge-card { position: absolute; bottom: -18px; right: 18px; background: var(--white); border-radius: var(--radius); padding: 14px 20px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-hover); }
.about-badge-card > i { font-size: 1.8rem; color: var(--accent); }
.about-badge-card strong { display: block; font-size: 0.86rem; color: var(--dark); font-weight: 700; }
.about-badge-card span { font-size: 0.72rem; color: var(--text-light); }
.about-stat { background: var(--bg-light); border-radius: 12px; padding: 16px; text-align: center; }
.about-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.about-stat span { font-size: 0.75rem; color: var(--text-light); }

/* ===== LEAD SECTION ===== */
.lead-section { background: var(--gradient); padding: 80px 0; position: relative; overflow: hidden; }
.lead-section::before { content:''; position:absolute; top:-120px; right:-120px; width:450px; height:450px; background:rgba(232,160,32,0.05); border-radius:50%; pointer-events:none; }
.lead-section h2 { font-size: clamp(1.45rem,2.8vw,2.1rem); color: var(--white); margin-bottom: 20px; line-height: 1.32; font-weight: 800; }
.lead-section h2 span { color: var(--accent); }
.lead-features { list-style: none; padding: 0; }
.lead-features li { color: rgba(255,255,255,0.82); font-size: 0.9rem; padding: 7px 0; display: flex; align-items: center; gap: 10px; }
.lead-features i { color: var(--accent); }

/* ===== FORMS ===== */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}
.form-card h4 { font-weight: 700; color: var(--dark); margin-bottom: 4px; font-size: 1.15rem; }
.form-card .form-sub { font-size: 0.78rem; color: var(--text-light); margin-bottom: 22px; }
.form-label-custom { font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }
.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.86rem;
    color: var(--text);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    outline: none;
}
.form-control-custom:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(35,86,160,0.10); }
.contact_number { display: flex; gap: 8px; align-items: stretch; }
.contact_number .form-control-custom { flex: 1; min-width: 0; }
.countryCode {
    flex-shrink: 0;
    width: 130px;
    min-width: 110px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 28px 11px 10px;
    font-size: 0.78rem;
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 8px center;
    cursor: pointer;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: var(--transition);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.countryCode:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(35,86,160,0.10); }

/* ===== MODAL ===== */
.modal-dialog.modal-lg { max-width: 780px; }
.modal-custom {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    max-height: 90vh;
}
.modal-left {
    background: var(--gradient);
    width: 260px;
    min-width: 220px;
    flex-shrink: 0;
    padding: 36px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.modal-left::before { content:''; position:absolute; top:-60px; left:-60px; width:180px; height:180px; background:rgba(255,255,255,0.04); border-radius:50%; }
.modal-left::after { content:''; position:absolute; bottom:-50px; right:-50px; width:160px; height:160px; background:rgba(232,160,32,0.12); border-radius:50%; }
.modal-left h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 16px; line-height: 1.4; font-weight: 800; }
.modal-features { list-style: none; padding: 0; margin: 0; }
.modal-features li { color: rgba(255,255,255,0.82); font-size: 0.78rem; padding: 7px 0; display: flex; align-items: center; gap: 9px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.modal-features li:last-child { border-bottom: none; }
.modal-features i { color: var(--accent); font-size: 0.82rem; flex-shrink: 0; }
.modal-trust { display: flex; flex-direction: row; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.mt-item { flex: 1; min-width: 60px; }
.mt-item strong { display: block; color: var(--accent); font-size: 1.05rem; font-weight: 800; }
.mt-item span { color: rgba(255,255,255,0.52); font-size: 0.68rem; }
.modal-right {
    flex: 1;
    padding: 30px 26px;
    overflow-y: auto;
    background: var(--white);
    min-width: 0;
}
.modal-right h4 { font-weight: 800; color: var(--dark); margin-bottom: 4px; font-size: 1rem; }
.modal-sub { font-size: 0.76rem; color: var(--text-light); margin-bottom: 18px; }
.modal-close-btn { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.06); border: none; color: var(--text-light); font-size: 0.9rem; cursor: pointer; z-index: 10; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close-btn:hover { background: #fee2e2; color: #dc2626; }
.modal-right .form-control-custom { margin-bottom: 0; }

/* ===== FLOATING CTA ===== */
.floating-cta { position: fixed; bottom: 28px; right: 22px; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; z-index: 1040; opacity: 0; transform: translateY(18px); transition: var(--transition); pointer-events: none; }
.floating-cta.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-cta-btn { display: flex; align-items: center; gap: 9px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: var(--white); border: none; padding: 12px 22px; border-radius: 50px; font-weight: 600; font-size: 0.85rem; cursor: pointer; box-shadow: 0 8px 24px rgba(26,60,110,0.32); transition: var(--transition); font-family: 'Poppins', sans-serif; }
.float-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(26,60,110,0.44); }
.float-call-btn { width: 50px; height: 50px; background: var(--accent); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; box-shadow: 0 6px 20px rgba(232,160,32,0.38); transition: var(--transition); animation: pulse-call 2.2s infinite; }
.float-call-btn:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse-call { 0%,100%{box-shadow:0 6px 20px rgba(232,160,32,0.38)} 50%{box-shadow:0 6px 32px rgba(232,160,32,0.68)} }

/* ===== EXIT POPUP ===== */
.exit-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.58); z-index: 9998; display: none; backdrop-filter: blur(4px); }
.exit-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.88); background: var(--white); border-radius: var(--radius-lg); padding: 38px 34px; text-align: center; max-width: 420px; width: 90%; z-index: 9999; display: none; box-shadow: var(--shadow-xl); transition: transform 0.3s ease; }
.exit-popup.show { transform: translate(-50%, -50%) scale(1); }
.exit-close { position: absolute; top: 12px; right: 12px; background: var(--bg-light); border: none; width: 30px; height: 30px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); }
.exit-icon { width: 68px; height: 68px; background: rgba(232,160,32,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.9rem; color: var(--accent); }
.exit-popup h3 { font-size: 1.45rem; color: var(--dark); margin-bottom: 8px; }
.exit-popup p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 22px; line-height: 1.62; }
.exit-skip { display: block; margin-top: 12px; color: var(--text-muted); font-size: 0.75rem; text-decoration: underline; cursor: pointer; }
.exit-skip:hover { color: var(--text); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 68px 0 0; }
.footer .logo-up { color: var(--white); font-size: 1.3rem; font-weight: 800; }
.footer .logo-prop { color: var(--accent); font-size: 1.3rem; font-weight: 800; }
.footer .logo-dot { color: rgba(255,255,255,0.38); font-size: 0.9rem; }
.footer-desc { color: rgba(255,255,255,0.52); font-size: 0.84rem; line-height: 1.72; margin-top: 14px; }
.footer-head { color: var(--white); font-weight: 700; font-size: 0.88rem; margin-bottom: 18px; letter-spacing: 0.3px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.82rem; display: flex; align-items: center; gap: 7px; }
.footer-links a:hover { color: var(--accent); padding-left: 3px; }
.footer-links i { color: var(--accent); width: 14px; font-size: 0.7rem; }
.footer-social { display: flex; gap: 9px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 0.82rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-hr { border-color: rgba(255,255,255,0.07); margin: 38px 0 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.38); font-size: 0.78rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.38); }
.footer-bottom a:hover { color: var(--accent); }

/* ===== WHY CHOOSE ===== */
.why-card { background: var(--white); border-radius: var(--radius); padding: 26px 22px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); height: 100%; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--white); margin: 0 auto 14px; transition: var(--transition); }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); transform: rotate(-6deg); }
.why-card h5 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; margin: 0; }

/* ===== AMENITY CARDS ===== */
.amenity-chip { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 0.83rem; font-weight: 500; color: var(--dark); transition: var(--transition); }
.amenity-chip:hover { border-color: var(--primary-light); color: var(--primary); box-shadow: var(--shadow); }
.amenity-chip i { color: var(--accent); font-size: 1rem; width: 18px; text-align: center; }

/* ===== LOCATION CHIP ===== */
.loc-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(26,60,110,0.07); color: var(--primary); border-radius: 50px; padding: 7px 16px; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: 1.5px solid transparent; }
.loc-chip:hover, .loc-chip.active { background: var(--primary); color: var(--white); }
.loc-chip i { font-size: 0.72rem; }

/* ===== PRICE TABLE ===== */
.price-table th { background: var(--primary); color: var(--white); font-weight: 600; font-size: 0.85rem; padding: 14px 16px; }
.price-table td { font-size: 0.84rem; padding: 12px 16px; vertical-align: middle; color: var(--text); }
.price-table tr:hover td { background: rgba(26,60,110,0.03); }
.price-table .price-col { font-weight: 700; color: var(--primary); }

/* ===== PROJECT DETAIL HERO ===== */
.detail-hero { background: var(--gradient); padding: 100px 0 50px; position: relative; overflow: hidden; }
.detail-hero::before { content:''; position:absolute; inset:0; background-size:cover; background-position:center; opacity:0.1; }
.detail-badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.detail-stat-row { display: flex; gap: 0; background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 14px 24px; margin-top: 24px; flex-wrap: wrap; }
.dstat { padding: 0 22px; border-right: 1px solid rgba(255,255,255,0.18); }
.dstat:last-child { border-right: none; }
.dstat-val { font-size: 1.1rem; font-weight: 800; color: var(--accent); display: block; }
.dstat-lbl { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.6px; }
.detail-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* Gallery */
.gallery-img { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.45s ease; }
.gallery-img:hover img { transform: scale(1.07); }
.gallery-main img { height: 340px; }

/* Sticky Enquiry */
.sticky-enquiry { position: sticky; top: 84px; }

/* ===== FADE ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== THANK YOU PAGE ===== */
.thankyou-section { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%); padding: 80px 0; }
.thankyou-card { background: var(--white); border-radius: var(--radius-lg); padding: 52px 44px; text-align: center; box-shadow: var(--shadow-hover); max-width: 540px; margin: 0 auto; }
.thankyou-icon { width: 90px; height: 90px; background: linear-gradient(135deg, #10b981 0%, #059669 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--white); margin: 0 auto 24px; animation: pop 0.5s cubic-bezier(0.4,0,0.2,1); }
@keyframes pop { 0%{transform:scale(0)} 80%{transform:scale(1.12)} 100%{transform:scale(1)} }
.thankyou-card h2 { font-size: 1.7rem; color: var(--dark); margin-bottom: 12px; }
.thankyou-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.redirect-bar { height: 5px; background: var(--border); border-radius: 50px; overflow: hidden; margin: 24px 0 16px; }
.redirect-fill { height: 100%; background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%); border-radius: 50px; animation: redirect-progress 6s linear forwards; }
@keyframes redirect-progress { 0%{width:0} 100%{width:100%} }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .modal-custom { flex-direction: column; max-height: 95vh; }
    .modal-left { width: 100%; min-width: unset; padding: 22px 24px; }
    .modal-trust { flex-direction: row; justify-content: space-around; }
    .modal-features { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-stats { flex-wrap: wrap; }
    .hstat { flex: 1; min-width: 90px; }
    .hstat-div { display: none; }
    .hero-search-box .col-md-3, .hero-search-box .col-md-4 { border-bottom: 1px solid var(--border); }
    .search-select, .search-input { border-right: none; }
    .sticky-enquiry { position: static; }
    .detail-stat-row { flex-direction: column; gap: 12px; }
    .dstat { border-right: none; padding: 0; }
    .about-img { height: 320px; }
}
@media (max-width: 767px) {
    .section-pad { padding: 56px 0; }
    .hero-section { padding: 92px 0 56px; }
    .city-card { height: 175px; }
    .form-card { padding: 24px 20px; }
    .launch-tabs { flex-direction: column; }
    .float-cta-btn span { display: none; }
    .detail-cta-row { flex-direction: column; }
    .thankyou-card { padding: 36px 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
    .hero-title { font-size: 1.7rem; }
    .modal-right { padding: 20px 16px; }
    .modal-left { padding: 18px 16px; }
    .countryCode { width: 108px; min-width: 100px; font-size: 0.74rem; padding: 11px 22px 11px 8px; }
    .hstat-num { font-size: 1.3rem; }
}
