/* ============================================================
   Real Estate Developer Theme — Main Stylesheet
   Uses CSS Variables set from PHP/DB in header.php:
     --primary, --secondary, --font-body, --primary-dark,
     --primary-light, --secondary-dark
   ============================================================ */

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

html { 
    scroll-behavior: smooth; 
    overflow-x: clip;
}

body {
    font-family: var(--font-body);
    background: #f8f9fb;
    color: #2d3748;
    position: relative;
    overflow-x: clip;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--secondary); }

img { max-width: 100%; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1a202c;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: .5rem;
}

.section-subtitle {
    color: #718096;
    font-size: 1rem;
    max-width: 540px;
    margin: 0 auto 2.5rem;
}

.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: .5rem;
}

/* ---- Buttons ---- */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all .25s;
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,.18);
}

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all .25s;
}
.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--primary);
    color: #fff;
    font-size: .82rem;
    padding: 7px 0;
}
.top-bar-item { color: rgba(255,255,255,.85); }
.top-bar-item i { margin-right: 5px; color: var(--secondary); }
.top-bar-item a { color: rgba(255,255,255,.9); }
.top-bar-item a:hover { color: var(--secondary); }
.top-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
    color: #fff;
    font-size: .75rem;
    transition: background .2s;
}
.top-social:hover { background: var(--secondary); color: #fff; }

/* ---- Navbar ---- */
.site-header { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.08); z-index: 1040; }
.navbar { padding: 0; min-height: 72px; }

.nav-logo { height: 52px; width: auto; }
.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-size: .9rem;
    font-weight: 600;
    color: #2d3748;
    padding: 1.4rem .9rem !important;
    position: relative;
    transition: color .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 3px;
    background: var(--secondary);
    transition: left .3s, right .3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: .9rem; right: .9rem; }

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    border-radius: 12px;
    padding: .5rem;
    min-width: 210px;
    animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity:0; transform: translateY(-8px); } to { opacity:1; transform: translateY(0); } }
.dropdown-item {
    border-radius: 8px;
    font-size: .87rem;
    font-weight: 500;
    padding: .55rem 1rem;
    color: #374151;
    transition: background .15s, color .15s;
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

.nav-cta { 
    font-size: .85rem; 
    border-radius: 50px !important; 
    padding: .45rem 1.3rem !important; 
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- Hero Slider ---- */
.hero-slider { position: relative; overflow: hidden; }
.hero-swiper { height: 90vh; min-height: 540px; max-height: 820px; }
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26,60,94,.75) 0%, rgba(26,60,94,.35) 60%, transparent 100%);
    z-index: 1;
}
.hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem 0 4rem;
    color: #fff;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.swiper-slide-active .hero-content,
.swiper-slide-duplicate-active .hero-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.3s;
}
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: .75rem;
}
.hero-subtitle {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,.88);
    max-width: 540px;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

/* Hero Navigation */
.hero-nav-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
    display: flex; align-items: center; justify-content: center;
}
.hero-nav-btn:hover { background: var(--secondary); border-color: var(--secondary); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Swiper pagination */
.swiper-pagination-bullet { background: rgba(255,255,255,.6); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--secondary); width: 28px; border-radius: 4px; }

/* ---- Search Widget ---- */
.search-widget {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.14);
    padding: 1.75rem;
    margin-top: 0;
    position: relative;
    z-index: 100;
}
.search-tabs .nav-link {
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    padding: .4rem 1.1rem;
    color: #6b7280;
    background: transparent;
    border: 2px solid transparent;
}
.search-tabs .nav-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.search-tabs .nav-link:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

/* ---- Stats Counter ---- */
.stats-strip {
    background: var(--primary);
    padding: 3rem 0;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    display: block;
}
.stat-suffix { color: var(--secondary); font-size: 1.5rem; }
.stat-label {
    color: rgba(255,255,255,.8);
    font-size: .85rem;
    font-weight: 500;
    margin-top: .5rem;
    display: block;
    letter-spacing: .5px;
}
.stat-icon { color: rgba(255,255,255,.2); font-size: 2.5rem; margin-bottom: .5rem; }

/* ---- Section Styling ---- */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.bg-light-custom { background: #f1f5f9; }
.bg-dark-section { background: #0f2035; }

/* ---- Project Card ---- */
.project-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.14); }
.project-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.project-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.project-card:hover .project-card-img img { transform: scale(1.07); }

.project-card-badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex; gap: 6px; flex-wrap: wrap;
}
.badge-status {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}
.badge-new-launch  { background: #ef4444; color: #fff; }
.badge-ongoing     { background: #3b82f6; color: #fff; }
.badge-completed   { background: #22c55e; color: #fff; }
.badge-upcoming    { background: #f59e0b; color: #fff; }
.badge-rera        { background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px); }

.project-card-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.project-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .3rem;
    color: #1a202c;
}
.project-location { font-size: .82rem; color: #718096; margin-bottom: .5rem; }
.project-location i { color: var(--primary); margin-right: 4px; }
.project-meta { font-size: .8rem; color: #64748b; margin-bottom: .8rem; }
.project-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    margin-top: auto;
}
.project-card-footer {
    display: flex;
    gap: .5rem;
    padding: .8rem 1.2rem;
    border-top: 1px solid #f1f5f9;
    background: #fafbfc;
}
.project-card-footer .btn { font-size: .78rem; flex: 1; }

/* ---- Category Cards ---- */
.category-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    text-align: center;
    padding: 2rem 1rem;
    height: 100%;
}
.category-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,.14); }
.category-icon {
    width: 72px; height: 72px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: background .2s, color .2s;
}
.category-card:hover .category-icon { background: var(--primary); color: #fff; }
.category-name { font-weight: 700; font-size: 1rem; color: #1a202c; margin-bottom: .3rem; }
.category-desc { font-size: .82rem; color: #718096; }

/* ---- City Cards ---- */
.city-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
}
.city-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.city-card:hover img { transform: scale(1.08); }
.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,32,53,.8) 0%, transparent 60%);
}
.city-name {
    position: absolute;
    bottom: 1rem; left: 1rem; right: 1rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}
.city-count { font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 400; }

/* ---- About Section ---- */
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,.14); }
.about-exp-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--secondary);
    color: #fff;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(200,168,107,.4);
}
.about-exp-num { font-size: 2.2rem; font-weight: 700; line-height: 1; display: block; }
.about-exp-label { font-size: .78rem; opacity: .9; }

/* ---- Awards Slider ---- */
.award-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.06);
    height: 100%;
}
.award-card img { height: 100px; object-fit: contain; margin-bottom: 1rem; }
.award-year { font-size: .78rem; color: var(--secondary); font-weight: 700; }
.award-title { font-size: .9rem; font-weight: 700; color: #1a202c; }

/* ---- Testimonials ---- */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--primary-light);
    position: absolute;
    top: .5rem; left: 1.2rem;
    line-height: 1;
}
.testimonial-text { font-style: italic; color: #4a5568; font-size: .92rem; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}
.star-rating { color: #f59e0b; letter-spacing: 2px; }

/* ---- Blog Cards ---- */
.blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,.12); }
.blog-card-img { height: 200px; overflow: hidden; background-color: transparent !important; }
.blog-card-img a { display: block; height: 100%; width: 100%; }
.blog-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform .5s; background-color: transparent !important; border: none !important; margin: 0 !important; padding: 0 !important; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.3rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat-badge {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: .6rem;
}
.blog-title { font-size: .98rem; font-weight: 700; color: #1a202c; margin-bottom: .5rem; line-height: 1.4; }
.blog-excerpt { font-size: .83rem; color: #718096; flex: 1; margin-bottom: .8rem; }
.blog-meta { font-size: .75rem; color: #a0aec0; }

/* ---- EMI Calculator ---- */
.emi-calculator {
    background: linear-gradient(135deg, var(--primary) 0%, #0f2035 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
}
.emi-result-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}
.emi-result-label { font-size: .82rem; opacity: .75; margin-bottom: .3rem; }
.emi-result-value { font-size: 1.6rem; font-weight: 700; color: var(--secondary); }
.emi-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: rgba(255,255,255,.25); outline: none; }
.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.emi-slider-value { font-weight: 700; color: var(--secondary); }

/* ---- Enquiry Section ---- */
.enquiry-section { background: linear-gradient(135deg, #0f2035 0%, var(--primary) 100%); }
.enquiry-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.enquiry-section h2, .enquiry-section p { color: #fff; }

/* ---- Filter Sidebar ---- */
.filter-sidebar {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    position: sticky;
    top: 90px;
}
.filter-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: .75rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #f1f5f9;
}
.filter-heading:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* ---- Project Detail ---- */
.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border-radius: 8px;
    padding: .5rem .9rem;
    font-size: .85rem;
    color: #374151;
}
.detail-badge strong { color: #1a202c; }
.detail-badge i { color: var(--primary); }

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem .5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: box-shadow .2s;
}
.amenity-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.amenity-icon {
    width: 48px; height: 48px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: .5rem;
}
.amenity-name { font-size: .78rem; font-weight: 600; color: #374151; }

/* Floor Plans */
.floor-plan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0,0,0,.07);
    transition: transform .25s;
}
.floor-plan-card:hover { transform: translateY(-4px); }
.floor-plan-card img { width: 100%; height: 180px; object-fit: cover; background: #f1f5f9; }
.floor-plan-body { padding: 1rem; }
.floor-plan-name { font-weight: 700; font-size: .9rem; }
.floor-plan-area { font-size: .8rem; color: #718096; }
.floor-plan-price { font-weight: 700; color: var(--primary); font-size: .88rem; }

/* ---- Page Banner ---- */
.page-banner {
    position: relative;
    padding: 6rem 0 5rem;
    color: #fff;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 32, 53, 0.9) 0%, rgba(15, 32, 53, 0.6) 50%, rgba(15, 32, 53, 0.3) 100%);
    z-index: 1;
}
.page-banner .container-xl {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.75); }
.page-banner .breadcrumb-item a:hover { color: var(--secondary); }
.page-banner .breadcrumb-item.active { color: var(--secondary); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- Contact ---- */
.contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-label { font-size: .78rem; color: #718096; margin-bottom: .2rem; }
.contact-info-value { font-weight: 600; color: #1a202c; font-size: .92rem; }

/* ---- FAQ Accordion ---- */
.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: .92rem;
    color: #1a202c;
    background: #fff;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: var(--primary-light); }
.faq-accordion .accordion-button::after { color: var(--primary); }
.faq-cat-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0 .75rem;
    padding-left: .5rem;
    border-left: 4px solid var(--secondary);
}

/* ---- Team Cards ---- */
.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,.07);
    text-align: center;
    transition: transform .3s;
}
.team-card:hover { transform: translateY(-5px); }
.team-card-img { height: 240px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 1.3rem; }
.team-name { font-weight: 700; font-size: 1rem; color: #1a202c; margin-bottom: .2rem; }
.team-designation { font-size: .82rem; color: var(--secondary); font-weight: 600; margin-bottom: .8rem; }
.team-bio { font-size: .8rem; color: #718096; margin-bottom: .8rem; }
.team-social a { color: #9ca3af; font-size: .85rem; margin: 0 4px; transition: color .2s; }
.team-social a:hover { color: var(--primary); }

/* ---- Footer ---- */
.site-footer { background: #0f2035; color: rgba(255,255,255,.8); }
.footer-top { padding: 4rem 0 3rem; }
.footer-logo { height: 52px; }
.footer-logo-text { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem; font-weight: 700; }
.footer-about { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-heading {
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .85rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--secondary); }
.footer-links a:hover { color: var(--secondary); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: .8rem; margin-bottom: .75rem; font-size: .83rem; color: rgba(255,255,255,.65); align-items: flex-start; }
.footer-contact li i { color: var(--secondary); margin-top: 3px; min-width: 14px; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--secondary); }
.footer-social { display: flex; gap: .5rem; }
.social-icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: .82rem;
    transition: background .2s, color .2s;
}
.social-icon:hover { background: var(--secondary); color: #fff; }
.footer-newsletter .form-control { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); color: #fff; font-size: .84rem; }
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter .form-control:focus { background: rgba(255,255,255,.12); border-color: var(--secondary); box-shadow: none; color: #fff; }
.footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 1rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
}
.footer-legal-link { color: rgba(255,255,255,.55); font-size: .8rem; }
.footer-legal-link:hover { color: var(--secondary); }

/* ---- Sticky Action Bars ---- */
.sticky-action-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: flex;
    z-index: 1050;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
}
.sticky-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .75rem .5rem;
    border: none;
    cursor: pointer;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    gap: 4px;
    text-decoration: none;
}
.sticky-action-btn i { font-size: 1.2rem; }
.sticky-action-btn.call { background: var(--primary); color: #fff; }
.sticky-action-btn.whatsapp { background: #25d366; color: #fff; }
.sticky-action-btn.enquire { background: var(--secondary); color: #fff; }

.sticky-desktop-btns {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 1040;
    flex-direction: column;
    gap: 10px;
}
.sticky-side-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
}
.sticky-side-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,.28); }
.whatsapp-btn { background: #25d366; color: #fff; }
.call-btn { background: var(--primary); color: #fff; }
.enquire-btn { background: var(--secondary); color: #fff; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 140px;
    right: 20px;
    z-index: 1039;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--secondary); }

/* ---- Forms ---- */
.form-control, .form-select {
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    font-size: .9rem;
    padding: .6rem 1rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}
.form-label { font-weight: 600; font-size: .85rem; color: #374151; margin-bottom: .4rem; }

/* ---- Badges / Pills ---- */
.rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    font-weight: 700;
    background: #dcfce7;
    color: #16a34a;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .5px;
}
.rera-badge i { font-size: .8rem; }

/* ---- Utilities ---- */
.text-primary-custom { color: var(--primary) !important; }
.text-secondary-custom { color: var(--secondary) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-secondary-custom { background: var(--secondary) !important; }
.border-primary { border-color: var(--primary) !important; }
.rounded-xl { border-radius: 14px; }
.shadow-custom { box-shadow: 0 8px 30px rgba(0,0,0,.1); }

/* ---- Pagination ---- */
.pagination .page-link {
    border-radius: 8px !important;
    color: var(--primary);
    border: 1.5px solid #e2e8f0;
    padding: .45rem .85rem;
    font-weight: 600;
    font-size: .85rem;
}
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination .page-link:hover { background: var(--primary-light); border-color: var(--primary); }

/* ---- Image placeholder ---- */
.img-placeholder {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex; align-items: center; justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

/* ---- No Results ---- */
.no-results { text-align: center; padding: 4rem 1rem; color: #94a3b8; }
.no-results i { font-size: 3rem; margin-bottom: 1rem; display: block; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .navbar-nav .nav-link { padding: .6rem 0 !important; }
    .navbar-nav .nav-link::after { display: none; }
    .hero-swiper { height: 70vw; min-height: 360px; }
    .search-widget { margin-top: 0; border-radius: 0; }
    body { padding-bottom: 65px; } /* space for sticky bar */
}

@media (max-width: 576px) {
    .section-pad { padding: 3rem 0; }
    .hero-title { font-size: 1.6rem; }
}

/* --- Mega Dropdown Styles --- */
@media (min-width: 992px) {
    .mega-dropdown { position: relative; }
    .mega-menu-content {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease-in-out;
        display: block !important;
    }
    .mega-dropdown:hover .mega-menu-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    .mega-menu-link:hover {
        background: #f8fafc;
    }
    .mega-menu-link:hover .mega-menu-icon-wrap {
        background: var(--primary) !important;
        color: #fff !important;
    }
}
@media (max-width: 991px) {
    .mega-menu-content {
        min-width: 100% !important;
        box-shadow: none !important;
        padding: 0.5rem !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
    }
    .mega-menu-link {
        padding: 0.5rem 0 !important;
    }

}

/* ---- Premium Article Content (Sustainability, Careers, etc.) ---- */
.premium-article {
    border: none !important;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15, 32, 53, 0.05) !important;
    transition: all 0.3s ease;
}
.premium-article:hover {
    box-shadow: 0 15px 45px rgba(15, 32, 53, 0.08) !important;
}
.entry-content.long-text-content {
    font-size: 0.98rem;
    line-height: 1.85;
    color: #4a5568;
}
.entry-content.long-text-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--primary);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
}
.entry-content.long-text-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary);
}
.entry-content.long-text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}
.entry-content.long-text-content p {
    margin-bottom: 1.5rem;
}
.entry-content.long-text-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.entry-content.long-text-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}
.entry-content.long-text-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 1rem;
    transition: transform 0.2s;
}
.entry-content.long-text-content ul li:hover::before {
    transform: scale(1.15);
}

/* Sidebar Widget */
.sticky-sidebar {
    position: sticky;
    top: 95px;
}
.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 32, 53, 0.05);
    border: none;
    transition: all 0.3s ease;
}
.sidebar-widget:hover {
    box-shadow: 0 15px 45px rgba(15, 32, 53, 0.08);
}
.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sidebar-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    color: #334155;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    transition: all 0.2s ease;
    text-decoration: none;
}
.sidebar-link-item:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: translateX(4px);
}
.sidebar-link-item.active {
    background: var(--primary);
    color: #ffffff;
}

/* Overlapping Legacy Images on About Page */
.about-img-double {
    position: relative;
    padding-bottom: 40px;
    padding-right: 40px;
}
.about-img-double .img-back {
    width: 85%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: block;
}
.about-img-double .img-front {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border: 6px solid #f8f9fb;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Glassmorphism Badge */
.about-exp-badge-glass {
    position: absolute;
    top: 30px;
    left: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 1.2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    z-index: 3;
}
.about-exp-badge-glass .about-exp-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    display: block;
}
.about-exp-badge-glass .about-exp-label {
    font-size: 0.75rem;
    color: #475569;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
}

/* Awards Custom Redesign */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}
.award-card-premium {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15, 32, 53, 0.04);
    border: 1px solid rgba(15, 32, 53, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.award-card-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.award-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 32, 53, 0.09);
    border-color: rgba(200, 168, 107, 0.3);
}
.award-card-premium:hover::before {
    opacity: 1;
}
.award-icon-wrap {
    width: 68px;
    height: 68px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.8rem;
    color: var(--primary);
    transition: all 0.3s;
}
.award-card-premium:hover .award-icon-wrap {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(200, 168, 107, 0.35);
    transform: scale(1.08);
}
.award-card-premium img {
    height: 70px;
    object-fit: contain;
    margin-bottom: 1.25rem;
    transition: transform 0.3s;
}
.award-card-premium:hover img {
    transform: scale(1.05);
}
.award-year-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.award-card-premium:hover .award-year-badge {
    background: var(--primary);
    color: #ffffff;
}
.award-title-premium {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.award-desc-premium {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
}

