/* ============================================================
   SECTION 1: RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1e2a3a;
    background-color: #fff;
    scroll-behavior: smooth;
}

:root {
    --primary: #ef7027;
    --primary-dark: #d45c1a;
    --primary-light: #fef1e8;
    --primary-gradient: linear-gradient(135deg, #ef7027, #d45c1a);
    --text-dark: #0f172a;
    --text-light: #475569;
    --border: #e2e8f0;
    --whatsapp-green: #25D366;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(239, 112, 39, 0.15);
    --radius: 16px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


/* ============================================================
   SECTION 2: HEADER & NAVIGATION
   ============================================================ */
header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.logo-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo-image:hover {
    transform: scale(1.03);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-btn,
.enquire-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.whatsapp-btn {
    background: #fff;
    border: 2px solid var(--whatsapp-green);
    color: #000;
}
.whatsapp-btn:hover {
    background: #e8f5e9;
    transform: scale(1.03);
}
.whatsapp-icon {
    transition: transform 0.3s;
    width: 20px;
    height: 20px;
}
.whatsapp-btn:hover .whatsapp-icon {
    transform: scale(1.15) rotate(-5deg);
}

.enquire-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 112, 39, 0.35);
}
.enquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 112, 39, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: 0.3s;
}
.hamburger.active .hamburger-line:first-child {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
    background: #fff;
    border-top: 1px solid var(--border);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
    list-style: none;
    padding: 12px 0;
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-dark);
    transition: 0.3s;
    font-size: 0.9rem;
    position: relative;
}
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--primary-gradient);
    transition: width 0.3s;
    border-radius: 2px;
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}
.nav-links li a:hover {
    color: var(--primary);
}

/* --- Header Responsive --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        z-index: 1000;
        border-top: none;
        overflow-y: auto;
    }
    .main-nav.active {
        right: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 80px 20px 40px;
        gap: 16px;
    }
}

@media (max-width: 550px) {
    .contact-btn span {
        display: none;
    }
    .contact-btn {
        padding: 8px 12px;
    }
    .enquire-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    .logo-image {
        height: 38px;
    }
}


/* ============================================================
   SECTION 3: HERO / BLOG BANNER
   ============================================================ */
.blog-banner {
    padding: 80px 0 70px;
    position: relative;
    background-size: cover;
    background-position: center;
}
.blog-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 0;
}
.blog-banner .container {
    position: relative;
    z-index: 1;
}
.blog-banner-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.blog-banner .blog-badge {
    display: inline-block;
    background: var(--primary-gradient);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    box-shadow: 0 4px 20px rgba(239, 112, 39, 0.4);
    animation: fadeInDown 0.8s ease;
}

.blog-banner h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 18px;
    animation: fadeInUp 0.9s ease;
}

.blog-banner .blog-meta-center {
    display: flex;
    justify-content: center;
    gap: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Hero Responsive --- */
@media (max-width: 992px) {
    .blog-banner h1 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .blog-banner {
        padding: 60px 0 50px;
    }
    .blog-banner h1 {
        font-size: 1.8rem;
    }
    .blog-banner .blog-meta-center {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.8rem;
    }
    .blog-banner .blog-badge {
        font-size: 0.65rem;
        padding: 6px 18px;
    }
}
@media (max-width: 550px) {
    .blog-banner {
        padding: 45px 0 35px;
    }
    .blog-banner h1 {
        font-size: 1.5rem;
    }
    .blog-banner .blog-meta-center {
        font-size: 0.7rem;
        gap: 10px;
    }
    .blog-banner .blog-badge {
        font-size: 0.6rem;
        padding: 5px 14px;
    }
}
@media (max-width: 380px) {
    .blog-banner h1 {
        font-size: 1.25rem;
    }
    .blog-banner {
        padding: 35px 0 28px;
    }
}


/* ============================================================
   SECTION 4: BREADCRUMB
   ============================================================ */
.breadcrumb-section {
    padding: 14px 0;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
.breadcrumb-section p {
    font-size: 0.85rem;
    color: #5a6874;
}
.breadcrumb-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


/* ============================================================
   SECTION 5: MAIN CONTENT LAYOUT
   ============================================================ */
.blog-content-section {
    padding: 55px 0;
    background: #fff;
}
.blog-content-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    align-items: flex-start;
}
.blog-content-wrapper {
    flex: 2;
    min-width: 300px;
}
.blog-sidebar {
    flex: 1;
    min-width: 280px;
    position: sticky;
    top: 120px;
}

/* --- Layout Responsive --- */
@media (max-width: 992px) {
    .blog-content-section .container {
        flex-direction: column;
    }
    .blog-sidebar {
        position: static;
        width: 100%;
    }
}


/* ============================================================
   SECTION 6: TABLE OF CONTENTS
   ============================================================ */
.table-of-contents {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    padding: 30px 35px;
    border-radius: var(--radius);
    margin-bottom: 45px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s;
}
.table-of-contents:hover {
    box-shadow: var(--shadow);
}
.table-of-contents h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.table-of-contents h3::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
}
.table-of-contents ul {
    list-style: none;
    columns: 2;
    padding: 0;
    margin: 0;
}
.table-of-contents li {
    margin-bottom: 6px;
    break-inside: avoid;
}
.table-of-contents a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
}
.table-of-contents a:hover {
    color: var(--primary);
    background: var(--primary-light);
    transform: translateX(4px);
}

/* --- TOC Responsive --- */
@media (max-width: 992px) {
    .table-of-contents ul {
        columns: 1;
    }
}
@media (max-width: 768px) {
    .table-of-contents {
        padding: 22px 20px;
    }
}
@media (max-width: 550px) {
    .table-of-contents a {
        font-size: 0.78rem;
        padding: 3px 6px;
    }
    .table-of-contents {
        padding: 18px 16px;
    }
}


/* ============================================================
   SECTION 7: CONTENT BLOCKS (GENERIC)
   ============================================================ */
.content-block {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}
.content-block h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
    position: relative;
}
.content-block p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}
.content-block h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 24px 0 14px;
}

/* --- Content Blocks Responsive --- */
@media (max-width: 768px) {
    .content-block h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 550px) {
    .content-block h2 {
        font-size: 1.3rem;
    }
    .content-block p {
        font-size: 0.92rem;
    }
}

/* ============================================================
   INTRODUCTION SECTION - STYLED LIKE .section-intro
   ============================================================ */

#introduction {
    background: #FFF5EB;
    border-left: 5px solid #ef7027;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#introduction:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#introduction h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 20px;
    border-bottom: 2px solid #ef7027;
}

#introduction p {
    font-size: 1rem;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 15px;
}

#introduction p:last-of-type {
    margin-bottom: 0;
}

/* Optional: If you want to add an image like in the .section-intro example,
   you can wrap content in .intro-two-column, but the current HTML doesn't have it.
   So we keep it simple. */

/* Responsive */
@media (max-width: 768px) {
    #introduction {
        padding: 25px 20px;
    }
    #introduction h2 {
        font-size: 1.3rem;
    }
    #introduction p {
        font-size: 0.92rem;
    }
}

@media (max-width: 550px) {
    #introduction {
        padding: 20px 16px;
        border-radius: 16px;
        border-left-width: 4px;
    }
    #introduction h2 {
        font-size: 1.1rem;
        padding-bottom: 6px;
    }
    #introduction p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
}

/* ============================================================
   SECTION: CONSTRUCTION STARTED
   ============================================================ */
#construction-started {
    background: #fff;
    padding: 0 10px;
    margin-bottom: 45px;
}

#construction-started h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
    position: relative;
}

#construction-started h2::before {
    content: '🔨 ';
    font-size: 1.6rem;
}

#construction-started p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#construction-started p:first-of-type {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
}

@media (max-width: 768px) {
    #construction-started h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #construction-started h2 {
        font-size: 1.3rem;
    }
    #construction-started p {
        font-size: 0.92rem;
    }
}


/* ============================================================
   SECTION: TIMELINE
   ============================================================ */
#timeline {
    margin-bottom: 45px;
}

#timeline h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#timeline p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.timeline-item {
    background: #f8fafc;
    padding: 22px 28px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 112, 39, 0.03));
    pointer-events: none;
}

.timeline-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(6px);
}

.timeline-item h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.timeline-item ul {
    margin: 8px 0 0 20px;
    color: var(--text-light);
}

.timeline-item ul li {
    margin-bottom: 4px;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    #timeline h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #timeline h2 {
        font-size: 1.3rem;
    }
    .timeline-item {
        padding: 16px 18px;
    }
    .timeline-item h3 {
        font-size: 0.98rem;
    }
    .timeline-item p {
        font-size: 0.88rem;
    }
}


/* ============================================================
   SECTION: MILESTONE MATTERS
   ============================================================ */
#milestone-matters {
    background: #fff;
    padding: 0 10px;
    margin-bottom: 45px;
}

#milestone-matters h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#milestone-matters h2::before {
    content: '🎯 ';
    font-size: 1.6rem;
}

#milestone-matters p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#milestone-matters .checklist li {
    background: #f8fafc;
    padding: 10px 16px 10px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

#milestone-matters .checklist li:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

#milestone-matters .checklist li::before {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #milestone-matters h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #milestone-matters h2 {
        font-size: 1.3rem;
    }
    #milestone-matters p {
        font-size: 0.92rem;
    }
    #milestone-matters .checklist li {
        padding: 8px 12px 8px 34px;
        font-size: 0.88rem;
    }
}


/* ============================================================
   SECTION: WHY CONSTRUCTION UPDATES MATTER
   ============================================================ */
#updates-matter {
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    padding: 42px 48px;
    border-radius: 20px;
    border: 1px solid rgba(239, 112, 39, 0.10);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    margin-bottom: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

#updates-matter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef7027, #ffb347, #ef7027);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

#updates-matter:hover {
    box-shadow: 0 12px 45px rgba(239, 112, 39, 0.10);
    transform: translateY(-2px);
}

#updates-matter h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
    padding-bottom: 14px;
    position: relative;
    display: inline-block;
    border-bottom: none;
}

#updates-matter h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #ef7027, #ffb347);
    border-radius: 4px;
    transition: width 0.4s ease;
}

#updates-matter:hover h2::after {
    width: 110px;
}

#updates-matter p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 18px;
}

#updates-matter p:first-of-type {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
}

#updates-matter p:last-of-type {
    background: #fef1e8;
    padding: 18px 24px;
    border-radius: 12px;
    border-left: 4px solid #ef7027;
    font-weight: 500;
    color: #1e293b;
    margin-top: 6px;
}

#updates-matter ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin: 22px 0 24px;
}

#updates-matter ul li {
    font-size: 0.98rem;
    color: #334155;
    padding: 12px 18px 12px 50px;
    position: relative;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    min-height: 50px;
}

#updates-matter ul li::before {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

#updates-matter ul li:nth-child(1)::before { content: '📊'; }
#updates-matter ul li:nth-child(2)::before { content: '🔒'; }
#updates-matter ul li:nth-child(3)::before { content: '🔧'; }
#updates-matter ul li:nth-child(4)::before { content: '📅'; }
#updates-matter ul li:nth-child(5)::before { content: '🔔'; }
#updates-matter ul li:nth-child(6)::before { content: '🎥'; }

#updates-matter ul li:hover {
    background: #ffffff;
    border-color: #ef7027;
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(239, 112, 39, 0.10);
}

#updates-matter ul li:hover::before {
    transform: translateY(-50%) scale(1.2) rotate(-5deg);
}

@media (max-width: 992px) {
    #updates-matter {
        padding: 32px 30px;
    }
    #updates-matter ul {
        grid-template-columns: 1fr 1fr;
        gap: 10px 20px;
    }
}

@media (max-width: 768px) {
    #updates-matter {
        padding: 28px 24px;
    }
    #updates-matter h2 {
        font-size: 1.6rem;
    }
    #updates-matter ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    #updates-matter ul li {
        font-size: 0.92rem;
        padding: 10px 14px 10px 46px;
        min-height: 44px;
    }
    #updates-matter p:last-of-type {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 550px) {
    #updates-matter {
        padding: 22px 16px;
        border-radius: 14px;
    }
    #updates-matter h2 {
        font-size: 1.3rem;
    }
    #updates-matter p {
        font-size: 0.92rem;
    }
    #updates-matter p:first-of-type {
        font-size: 0.98rem;
    }
    #updates-matter ul li {
        font-size: 0.88rem;
        padding: 8px 12px 8px 42px;
        min-height: 40px;
        border-radius: 8px;
    }
    #updates-matter ul li::before {
        font-size: 1rem;
        left: 13px;
    }
}

@media (max-width: 380px) {
    #updates-matter {
        padding: 18px 12px;
    }
    #updates-matter h2 {
        font-size: 1.15rem;
    }
    #updates-matter p {
        font-size: 0.85rem;
    }
    #updates-matter ul li {
        font-size: 0.82rem;
        padding: 6px 10px 6px 38px;
        min-height: 36px;
    }
    #updates-matter ul li::before {
        font-size: 0.9rem;
        left: 10px;
    }
}


/* ============================================================
   SECTION: PREMIUM SENIOR LIVING
   ============================================================ */
#premium-senior {
    background: #fff;
    padding: 0 10px;
    margin-bottom: 45px;
}

#premium-senior h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#premium-senior h2::before {
    content: '🏡 ';
    font-size: 1.6rem;
}

#premium-senior p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#premium-senior .checklist li {
    background: #f8fafc;
    padding: 10px 16px 10px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

#premium-senior .checklist li:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

#premium-senior .checklist li::before {
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #premium-senior h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #premium-senior h2 {
        font-size: 1.3rem;
    }
    #premium-senior p {
        font-size: 0.92rem;
    }
    #premium-senior .checklist li {
        padding: 8px 12px 8px 34px;
        font-size: 0.88rem;
    }
}


/* ============================================================
   SECTION: WHAT MAKES J ESTATES DIFFERENT
   ============================================================ */
#what-makes-different {
    background: linear-gradient(145deg, #fafbfc, #ffffff);
    padding: 35px 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    margin-bottom: 45px;
}

#what-makes-different:hover {
    box-shadow: var(--shadow);
}

#what-makes-different h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#what-makes-different h2::before {
    content: '✨ ';
    font-size: 1.5rem;
}

#what-makes-different p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#what-makes-different h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 24px 0 14px;
}

#what-makes-different ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    margin: 16px 0;
}

#what-makes-different ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 8px 12px 8px 32px;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
    border-radius: 6px;
}

#what-makes-different ul li::before {
    content: '⭐';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
}

#what-makes-different ul li:hover {
    background: var(--primary-light);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    #what-makes-different {
        padding: 25px 20px;
    }
    #what-makes-different h2 {
        font-size: 1.5rem;
    }
    #what-makes-different ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 550px) {
    #what-makes-different {
        padding: 18px 14px;
        border-radius: 14px;
    }
    #what-makes-different h2 {
        font-size: 1.3rem;
    }
    #what-makes-different p {
        font-size: 0.92rem;
    }
    #what-makes-different ul li {
        font-size: 0.88rem;
        padding: 6px 10px 6px 28px;
    }
}


/* ============================================================
   SECTION: STRATEGIC LOCATION
   ============================================================ */
#strategic-location {
    background: #fff;
    padding: 0 10px;
    margin-bottom: 45px;
}

#strategic-location h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#strategic-location h2::before {
    content: '📍 ';
    font-size: 1.5rem;
}

#strategic-location p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#strategic-location ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 30px;
    margin: 16px 0;
}

#strategic-location ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 6px 0 6px 28px;
    position: relative;
    border-bottom: 1px dashed #eef2f6;
}

#strategic-location ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    #strategic-location h2 {
        font-size: 1.5rem;
    }
    #strategic-location ul {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

@media (max-width: 550px) {
    #strategic-location h2 {
        font-size: 1.3rem;
    }
    #strategic-location p {
        font-size: 0.92rem;
    }
    #strategic-location ul li {
        font-size: 0.88rem;
        padding: 4px 0 4px 24px;
    }
}


/* ============================================================
   SECTION: SOUTH GURGAON EMERGING
   ============================================================ */
#south-gurgaon-emerging {
    background: linear-gradient(145deg, #fef1e8, #ffffff);
    padding: 32px 38px;
    border-radius: 20px;
    border: 1px solid rgba(239, 112, 39, 0.10);
    transition: all 0.4s ease;
    margin-bottom: 45px;
}

#south-gurgaon-emerging:hover {
    box-shadow: var(--shadow);
}

#south-gurgaon-emerging h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#south-gurgaon-emerging h2::before {
    content: '🌆 ';
    font-size: 1.5rem;
}

#south-gurgaon-emerging p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#south-gurgaon-emerging p:first-of-type {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
}

@media (max-width: 768px) {
    #south-gurgaon-emerging {
        padding: 24px 20px;
    }
    #south-gurgaon-emerging h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #south-gurgaon-emerging {
        padding: 18px 14px;
        border-radius: 14px;
    }
    #south-gurgaon-emerging h2 {
        font-size: 1.3rem;
    }
    #south-gurgaon-emerging p {
        font-size: 0.92rem;
    }
}


/* ============================================================
   SECTION: APARTMENT CONFIGURATIONS
   ============================================================ */
#configurations {
    background: #fff;
    padding: 0 10px;
    margin-bottom: 45px;
}

#configurations h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#configurations h2::before {
    content: '🏠 ';
    font-size: 1.5rem;
}

#configurations p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#configurations ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
    margin: 16px 0;
}

#configurations ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    transition: all 0.3s ease;
}

#configurations ul li:hover {
    background: var(--primary-light);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

#configurations ul li strong {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    #configurations h2 {
        font-size: 1.5rem;
    }
    #configurations ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 550px) {
    #configurations h2 {
        font-size: 1.3rem;
    }
    #configurations p {
        font-size: 0.92rem;
    }
    #configurations ul li {
        font-size: 0.88rem;
        padding: 12px 14px;
    }
}


/* ============================================================
   SECTION: AMENITIES
   ============================================================ */
#amenities {
    background: linear-gradient(145deg, #ffffff, #fafbfc);
    padding: 32px 38px;
    border-radius: 20px;
    border: 1px solid var(--border);
    margin-bottom: 45px;
}

#amenities h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#amenities h2::before {
    content: '🌟 ';
    font-size: 1.5rem;
}

#amenities p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#amenities ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 20px;
    margin: 16px 0;
}

#amenities ul li {
    font-size: 0.92rem;
    color: var(--text-light);
    padding: 8px 12px 8px 32px;
    position: relative;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

#amenities ul li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-weight: 700;
}

#amenities ul li:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    #amenities ul {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    #amenities {
        padding: 24px 20px;
    }
    #amenities h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #amenities {
        padding: 18px 14px;
        border-radius: 14px;
    }
    #amenities h2 {
        font-size: 1.3rem;
    }
    #amenities p {
        font-size: 0.92rem;
    }
    #amenities ul {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    #amenities ul li {
        font-size: 0.85rem;
        padding: 6px 10px 6px 28px;
    }
}


/* ============================================================
   SECTION: INVEST DURING CONSTRUCTION
   ============================================================ */
#invest-during-construction {
    background: #fff;
    padding: 0 10px;
    margin-bottom: 45px;
}

#invest-during-construction h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#invest-during-construction h2::before {
    content: '💰 ';
    font-size: 1.5rem;
}

#invest-during-construction p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#invest-during-construction ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 25px;
    margin: 16px 0;
}

#invest-during-construction ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    padding: 8px 12px 8px 32px;
    position: relative;
    border-bottom: 1px dashed #eef2f6;
}

#invest-during-construction ul li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

#invest-during-construction ul li:hover {
    color: var(--text-dark);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    #invest-during-construction h2 {
        font-size: 1.5rem;
    }
    #invest-during-construction ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 550px) {
    #invest-during-construction h2 {
        font-size: 1.3rem;
    }
    #invest-during-construction p {
        font-size: 0.92rem;
    }
    #invest-during-construction ul li {
        font-size: 0.88rem;
        padding: 6px 8px 6px 26px;
    }
}


/* ============================================================
   SECTION: BENEFITS OF BUYING DURING EARLY CONSTRUCTION
   ============================================================ */
#benefits-early {
    margin-bottom: 45px;
}

#benefits-early h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#benefits-early h2::before {
    content: '📋 ';
    font-size: 1.5rem;
}

#benefits-early p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.benefit-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #benefits-early h2 {
        font-size: 1.5rem;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

@media (max-width: 550px) {
    #benefits-early h2 {
        font-size: 1.3rem;
    }
    #benefits-early p {
        font-size: 0.92rem;
    }
    .benefit-card {
        padding: 18px 16px;
    }
    .benefit-card h3 {
        font-size: 0.95rem;
    }
    .benefit-card p {
        font-size: 0.85rem;
    }
}


/* ============================================================
   SECTION 2: INVESTMENT POTENTIAL
   ============================================================ */

#investment-potential {
    background: #ffffff;
    padding: 0 0 40px 0;
    margin-bottom: 50px;
}

#investment-potential h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    display: inline-block;
}

#investment-potential h2::before {
    content: '📈 ';
    font-size: 1.5rem;
    margin-right: 4px;
}

#investment-potential p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

#investment-potential p:first-of-type {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
}

#investment-potential .img-responsive {
    border-radius: 12px;
    margin: 16px 0 24px;
    width: 100%;
    height: auto;
    display: block;
}

/* --- Stats Grid --- */
#investment-potential .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
}

#investment-potential .benefit-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

#investment-potential .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #ef7027, #d45c1a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#investment-potential .benefit-card:hover::before {
    opacity: 1;
}

#investment-potential .benefit-card:hover {
    transform: translateY(-6px);
    border-color: #ef7027;
    box-shadow: 0 12px 40px rgba(239, 112, 39, 0.15);
}

#investment-potential .benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ef7027;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

#investment-potential .benefit-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}


/* --- Investment Potential Responsive --- */
@media (max-width: 992px) {
    #investment-potential .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    #investment-potential h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    #investment-potential {
        padding: 0 0 30px 0;
    }
    #investment-potential .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    #investment-potential .benefit-card {
        padding: 20px 16px;
    }
    #investment-potential h2 {
        font-size: 1.4rem;
    }
    #investment-potential p:last-of-type {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 550px) {
    #investment-potential {
        padding: 0 0 20px 0;
        margin-bottom: 35px;
    }
    #investment-potential .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    #investment-potential .benefit-card {
        padding: 16px 12px;
        border-radius: 12px;
    }
    #investment-potential .benefit-card h3 {
        font-size: 0.95rem;
    }
    #investment-potential .benefit-card p {
        font-size: 0.9rem;
    }
    #investment-potential h2 {
        font-size: 1.2rem;
        padding-bottom: 8px;
    }
    #investment-potential h2::before {
        font-size: 1.2rem;
    }
    #investment-potential p {
        font-size: 0.92rem;
    }
    #investment-potential p:first-of-type {
        font-size: 0.96rem;
    }
    #investment-potential p:last-of-type {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    #investment-potential .img-responsive {
        margin: 10px 0 16px;
    }
}

@media (max-width: 380px) {
    #investment-potential .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    #investment-potential .benefit-card {
        padding: 12px 8px;
    }
    #investment-potential .benefit-card h3 {
        font-size: 0.9rem;
    }
    #investment-potential .benefit-card p {
        font-size: 0.85rem;
    }
    #investment-potential h2 {
        font-size: 1.05rem;
    }
    #investment-potential p:last-of-type {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}


/* ============================================================
   SECTION: WHY THIS IS THE RIGHT TIME TO RESERVE YOUR HOME
   ============================================================ */

#right-time {
    background: #ffffff;
    padding: 40px 0;
    margin-bottom: 50px;
}

/* --- Heading --- */
#right-time h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    display: inline-block;
}

#right-time h2::before {
    content: '⏰ ';
    font-size: 1.5rem;
    margin-right: 4px;
}

/* --- Image --- */
#right-time .img-responsive {
    border-radius: 12px;
    margin: 16px 0 24px;
    width: 100%;
    height: auto;
    display: block;
}

/* --- Paragraphs --- */
#right-time p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 16px;
}

#right-time p:first-of-type {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
}

/* ============================================================
   CTA BOX - PROFESSIONAL
   ============================================================ */

#right-time .cta-box {
    background: linear-gradient(145deg, #f8fafc, #ffffff);
    padding: 48px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0 0 0;
    border: 1px solid #eef2f6;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Decorative accent line at top */
#right-time .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ef7027, #ffb347, #ef7027);
}

/* Decorative subtle background pattern */
#right-time .cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 112, 39, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* --- CTA Heading --- */
#right-time .cta-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

#right-time .cta-box h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ef7027, #ffb347);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* --- CTA Paragraph --- */
#right-time .cta-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0 0 24px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* --- CTA Button --- */
#right-time .cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ef7027, #d45c1a);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(239, 112, 39, 0.3);
}

#right-time .cta-box .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 112, 39, 0.4);
    background: linear-gradient(135deg, #d45c1a, #ef7027);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    #right-time {
        padding: 30px 0;
    }
    #right-time h2 {
        font-size: 1.6rem;
    }
    #right-time .cta-box {
        padding: 40px 30px;
    }
    #right-time .cta-box h3 {
        font-size: 1.4rem;
    }
    #right-time .cta-box p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    #right-time {
        padding: 24px 0;
    }
    #right-time h2 {
        font-size: 1.4rem;
    }
    #right-time .cta-box {
        padding: 32px 24px;
        border-radius: 16px;
    }
    #right-time .cta-box h3 {
        font-size: 1.3rem;
    }
    #right-time .cta-box p {
        font-size: 0.95rem;
    }
    #right-time .cta-box .btn-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
    #right-time p {
        font-size: 0.95rem;
    }
    #right-time p:first-of-type {
        font-size: 1rem;
    }
}

@media (max-width: 550px) {
    #right-time {
        padding: 18px 0;
        margin-bottom: 35px;
    }
    #right-time h2 {
        font-size: 1.2rem;
        padding-bottom: 8px;
    }
    #right-time h2::before {
        font-size: 1.2rem;
    }
    #right-time p {
        font-size: 0.92rem;
    }
    #right-time p:first-of-type {
        font-size: 0.96rem;
    }
    #right-time .cta-box {
        padding: 24px 18px;
        border-radius: 14px;
        margin: 20px 0 0 0;
    }
    #right-time .cta-box::after {
        display: none;
    }
    #right-time .cta-box h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    #right-time .cta-box h3::after {
        width: 40px;
        height: 2px;
        margin: 8px auto 0;
    }
    #right-time .cta-box p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    #right-time .cta-box .btn-primary {
        padding: 10px 24px;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
    }
    #right-time .img-responsive {
        margin: 10px 0 16px;
    }
}

@media (max-width: 380px) {
    #right-time {
        padding: 14px 0;
    }
    #right-time h2 {
        font-size: 1.05rem;
    }
    #right-time p {
        font-size: 0.85rem;
    }
    #right-time p:first-of-type {
        font-size: 0.88rem;
    }
    #right-time .cta-box {
        padding: 20px 14px;
    }
    #right-time .cta-box h3 {
        font-size: 1rem;
    }
    #right-time .cta-box p {
        font-size: 0.85rem;
    }
    #right-time .cta-box .btn-primary {
        padding: 10px 20px;
        font-size: 0.82rem;
    }
}

/* ============================================================
   SECTION: CUSTOMER QUESTIONS / FAQ
   ============================================================ */
#faq {
    margin-bottom: 45px;
}

.faq-block {
    background: #f8fafc;
    padding: 32px 36px;
    border-radius: 20px;
}

.faq-block h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

.faq-block h2::before {
    content: '❓ ';
    font-size: 1.5rem;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: '❓';
    font-size: 0.9rem;
}

.faq-item h3:hover {
    color: var(--primary);
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    padding-left: 32px;
}

.customer-question {
    background: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    margin-bottom: 14px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.customer-question:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.customer-question h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.customer-question p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-block {
        padding: 24px 20px;
    }
    .faq-block h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    .faq-block {
        padding: 18px 14px;
        border-radius: 14px;
    }
    .faq-block h2 {
        font-size: 1.3rem;
    }
    .faq-item h3 {
        font-size: 0.9rem;
    }
    .faq-item p {
        font-size: 0.85rem;
        padding-left: 24px;
    }
    .customer-question {
        padding: 14px 16px;
    }
    .customer-question h3 {
        font-size: 0.9rem;
    }
    .customer-question p {
        font-size: 0.88rem;
    }
}


/* ============================================================
   SECTION: LOOKING AHEAD
   ============================================================ */
#looking-ahead {
    background: linear-gradient(145deg, #fef1e8, #ffffff);
    padding: 32px 38px;
    border-radius: 20px;
    border: 1px solid rgba(239, 112, 39, 0.10);
    transition: all 0.4s ease;
    margin-bottom: 45px;
}

#looking-ahead:hover {
    box-shadow: var(--shadow);
}

#looking-ahead h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eef2f6;
}

#looking-ahead h2::before {
    content: '🚀 ';
    font-size: 1.5rem;
}

#looking-ahead p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 16px;
}

#looking-ahead p:first-of-type {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
}

@media (max-width: 768px) {
    #looking-ahead {
        padding: 24px 20px;
    }
    #looking-ahead h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 550px) {
    #looking-ahead {
        padding: 18px 14px;
        border-radius: 14px;
    }
    #looking-ahead h2 {
        font-size: 1.3rem;
    }
    #looking-ahead p {
        font-size: 0.92rem;
    }
}


/* ============================================================
   SECTION: GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-hover);
}

.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.img-responsive:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   SECTION 8: SHARE SECTION
   ============================================================ */
.share-section {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 28px;
    border-top: 2px solid var(--border);
    margin-top: 35px;
}
.share-section span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}
.share-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.share-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #f8fafc;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border);
}
.share-icons .social-icon:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(239, 112, 39, 0.2);
    background: var(--primary-light);
}
.share-icons .social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.share-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #eef2f6;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    cursor: pointer;
}
.share-copy:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(239, 112, 39, 0.2);
}
.share-copy svg {
    stroke: #5a6874;
    transition: stroke 0.3s;
}
.share-copy:hover svg {
    stroke: #fff;
}

@media (max-width: 768px) {
    .share-section {
        justify-content: center;
        text-align: center;
    }
    .share-icons {
        justify-content: center;
    }
}
@media (max-width: 550px) {
    .share-section span {
        font-size: 0.85rem;
    }
    .share-icons .social-icon,
    .share-copy {
        width: 38px;
        height: 38px;
    }
    .share-icons .social-icon img {
        width: 16px;
        height: 16px;
    }
}


/* ============================================================
   SECTION 9: SIDEBAR
   ============================================================ */
.sidebar-widget {
    background: #f8fafc;
    padding: 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.sidebar-widget:hover {
    box-shadow: var(--shadow);
}
.sidebar-widget h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}
.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-widget li {
    margin-bottom: 10px;
}
.sidebar-widget a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}
.sidebar-widget a:hover {
    color: var(--primary);
    transform: translateX(6px);
}

.contact-phone {
    display: inline-block;
    background: var(--primary-gradient);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 112, 39, 0.3);
}
.contact-phone:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 25px rgba(239, 112, 39, 0.4);
}

/* Channel Partner */
.channel-partner .partner-logo {
    text-align: center;
    margin-bottom: 14px;
}
.channel-partner .partner-name {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.channel-partner .partner-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.channel-partner .partner-features {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}
.channel-partner .partner-features li {
    font-size: 0.85rem;
    padding: 5px 0;
    color: var(--text-light);
    border-bottom: 1px dashed #eef2f6;
}
.channel-partner .partner-features li:last-child {
    border-bottom: none;
}
.channel-partner .partner-contact p {
    margin: 6px 0;
    font-size: 0.85rem;
}
.channel-partner .partner-contact a {
    color: var(--primary);
    text-decoration: none;
}
.channel-partner .partner-contact a:hover {
    text-decoration: underline;
}

.directions-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.directions-link:hover {
    transform: translateX(6px);
}

.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
}
.map-placeholder iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .sidebar-widget {
        padding: 20px;
    }
}
@media (max-width: 550px) {
    .sidebar-widget {
        padding: 16px;
    }
    .contact-phone {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}


/* ============================================================
   SECTION 10: FOOTER
   ============================================================ */
.footer-section {
    background: linear-gradient(135deg, #0a1628, #0f1a2e);
    color: #cbd5e1;
    padding: 55px 0 0;
    position: relative;
    margin-top: 20px;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ffb347, var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #a0aec0;
}
.footer-certified .certified-badge {
    display: inline-block;
    background: rgba(239, 112, 39, 0.15);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(239, 112, 39, 0.25);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
}

.links-wrapper {
    display: flex;
    gap: 30px;
}
.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}
.footer-nav li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #a0aec0;
    transition: all 0.3s ease;
    padding: 4px 0;
}
.footer-contact-item:hover {
    transform: translateX(4px);
}
.footer-contact-item .contact-icon {
    font-size: 1.1rem;
    width: 28px;
    text-align: center;
}
.footer-contact-item a {
    color: #a0aec0;
    text-decoration: none;
}
.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.social-links .social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.social-links .social-icon:hover {
    background: var(--primary);
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(239, 112, 39, 0.3);
}
.social-links .social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.footer-visit {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-visit p {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-bottom: 8px;
}
.visit-btn {
    display: inline-block;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.visit-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239, 112, 39, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 0;
}
.footer-copyright p {
    font-size: 0.75rem;
    color: #718096;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 0.75rem;
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: var(--primary);
}

/* --- Footer Responsive --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }
    .footer-brand {
        align-items: center;
    }
    .links-wrapper {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-contact {
        align-items: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-social {
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
}
@media (max-width: 550px) {
    .footer-section {
        padding: 35px 0 0;
    }
    .footer-description {
        font-size: 0.8rem;
    }
    .footer-heading {
        font-size: 0.95rem;
    }
    .footer-nav li a,
    .footer-contact-item {
        font-size: 0.8rem;
    }
    .footer-copyright p,
    .footer-bottom-links a {
        font-size: 0.7rem;
    }
    .links-wrapper {
        gap: 20px;
    }
    .footer-nav li a {
        font-size: 0.75rem;
    }
    .social-links .social-icon {
        width: 38px;
        height: 38px;
    }
    .social-links .social-icon img {
        width: 17px;
        height: 17px;
    }
}


/* ============================================================
   SECTION 11: REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
    }
    .blog-banner .blog-badge,
    .blog-banner h1,
    .blog-banner .blog-meta-center {
        animation: none !important;
    }
    .footer-section::before {
        animation: none !important;
    }
}