/* RESET & PREVENT OVERFLOW */
:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --radius: 8px;
    --transition: all 0.25s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important; /* స్క్రీన్ పక్కకు జరగకుండా ఆపుతుంది */
    position: relative;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 75px;
    padding-bottom: 80px; /* అడుగున బాటమ్ మెనూ దాటడానికి తగినంత స్పేస్ */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: white;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    z-index: 1000;
}

.logo-img {
    display: block;
    height: 35px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.ad-post-btn {
    background-color: #00695c;
    color: #ffffff;
    padding: 3px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

/* MAIN LAYOUT */
.section {
    padding: 0px 10px 100px 10px; /* బాటమ్ ప్యాడింగ్ 100px కి పెంచాం, దీనివల్ల CTA సెక్షన్ హైడ్ అవ్వదు */
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box; /* వెడల్పు బయటకు పోకుండా నియంత్రిస్తుంది */
}

.back-link {
    color: var(--accent);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 14px;
}

.details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    width: 100%;
}

/* HERO IMAGE CONTAINER */
.main-image-container {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 15px;
    background-color: #cbd5e1;
}

.property-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TYPOGRAPHY */
.property-title {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

.property-price {
    color: #023f96;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.price-negotiable {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.section-divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin-bottom: 15px;
}

.section-title {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 700;
}

/* SPECIFICATIONS TABLE - RESPONSIVE */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.info-table th, .info-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-table tr:last-child th, 
.info-table tr:last-child td {
    border-bottom: none;
}

.info-table th {
    background-color: #f1f5f9;
    color: var(--primary);
    font-weight: 600;
    width: 40%;
}

.highlight-row {
    background-color: #f8fafc;
}

.property-id-badge {
    display: inline-block;
    background-color: #023f96;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 15px;
}

/* FEATURES LIST & DESCRIPTION */
.features-list {
    margin: 10px 0 20px 0;
    padding-left: 18px;
    color: var(--text-main);
}

.features-list li {
    margin-bottom: 8px;
    font-size: 14px;
}

.property-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background: #ffffff;
    padding: 15px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    /* 🟢 యాడ్ చేయాల్సిన ప్రాపర్టీస్ */
    overflow-wrap: break-word;
    word-break: break-word;
}

/* STICKY SIDEBAR */
.contact-card {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 18px;
    border-radius: var(--radius);
    position: sticky;
    top: 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.contact-title {
    margin-bottom: 8px;
    font-size: 16px;
    color: var(--primary);
    font-weight: 700;
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.phone-box {
    background: var(--bg-main);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}

.phone-label {
    font-size: 11px;
    color: var(--text-light);
}

.phone-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.btn-whatsapp {
    background-color: #085726;
    color: #ffffff;
    padding: 10px;
    display: block;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

/* 🟢 LEFT SUBMIT REQUIREMENT FLOATING BUTTON */
.ph-side-btn {
    position: fixed;
    left: 10px;
    bottom: 70px;
    z-index: 2999;
    display: flex;
    align-items: center;
    background: #c2185b;
    color: #ffffff;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.ph-btn-link {
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
}

.ph-side-btn .ph-icon {
    font-size: 16px;
    margin-right: 6px;
}

.ph-minimize {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* MINIMIZED CIRCLE STATE */
.ph-side-btn.minimized {
    border-radius: 50%;
    padding: 0;
    width: 44px;
    height: 44px;
}

.ph-side-btn.minimized .ph-text,
.ph-side-btn.minimized .ph-minimize {
    display: none !important;
}

.ph-side-btn.minimized .ph-btn-link {
    padding: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.ph-side-btn.minimized .ph-icon {
    margin-right: 0;
    font-size: 20px;
}

/* 🟢 RIGHT FLOATING CALL & WHATSAPP BUTTONS */
.floating-actions-wrapper {
    position: fixed;
    bottom: 70px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2999;
}

.floating-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.floating-btn svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.btn-call-float {
    background-color: #023f96;
}

.btn-wa-float {
    background-color: #085726;
}

/* 🟢 UNIVERSAL FIXED BOTTOM MENU (STAYS STICKY ALWAYS) */
.bottom-nav {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    height: 56px;
    background-color: #0b1329;
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    z-index: 9999 !important;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 500;
    width: 20%;
    height: 100%;
}

.bottom-nav-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    margin-bottom: 2px;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* SITE FOOTER */
.wph-site-footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 30px 15px 15px 15px;
    border-top: 1px solid #1e293b;
    margin-top: 30px;
    text-align: center;
}

.wph-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wph-footer-links h4, .wph-footer-contact h4 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 12px;
}

.wph-footer-links ul {
    list-style: none;
}

.wph-footer-links ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

.wph-footer-contact p {
    font-size: 13px;
    margin-bottom: 8px;
}

.wph-footer-bottom {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #1e293b;
    font-size: 12px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .details-container {
        grid-template-columns: 1fr;
    }

    .main-image-container {
        height: 220px;
    }

    .wph-footer-container {
        grid-template-columns: 1fr;
    }
}
/* Article Section Styling */
.wph-custom-plots-article {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 20px;
    font-family: 'Inter', 'Noto Sans Telugu', sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.wph-custom-plots-article h2 {
    color: #222222;
    font-size: 26px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 5px solid #0056b3;
    padding-left: 15px;
}

.wph-custom-plots-article h3 {
    color: #023f96;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.wph-custom-plots-article p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.wph-custom-plots-article ul {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
}

.wph-custom-plots-article ul li {
    margin-bottom: 10px;
}
.phone-number-link {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-block;
    margin-top: 2px;
}

.phone-number-link:hover {
    color: var(--accent);
}
/* RESPONSIVE MEDIA QUERIES FOR MOBILE */
@media (max-width: 768px) {
    /* మెయిన్ కంటైనర్స్ మొబైల్ విడ్త్‌కి సరిపోవడానికి */
    .details-container {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .property-main-content {
        width: 100%;
        max-width: 100%;
    }

    .main-image-container {
        height: 220px;
    }

    /* CTA / Contact Card మొబైల్‌లో ఫుల్ విడ్త్ రావడానికి */
    .contact-card {
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
        margin-bottom: 30px; /* కింద బటన్ల వెనుక దాక్కోకుండా మార్జిన్ */
    }

    /* Floating Buttons సైడ్ పొజిషన్లు */
    .ph-btn-link {
        padding: 6px 8px;
        font-size: 11px;
    }

    .ph-side-btn {
        bottom: 62px;
        left: 5px;
        max-width: calc(100% - 70px);
        z-index: 2999;
    }

    .floating-actions-wrapper {
        bottom: 62px;
        right: 5px;
        z-index: 2999;
    }

    .wph-footer-container {
        grid-template-columns: 1fr;
    }
}
/* 🚨 MOBILE OVERFLOW & CTA FIX 🚨 */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.section, 
.details-container, 
.property-main-content, 
.property-description {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* మొబైల్‌లో గ్రిడ్ తీసేసి వరుసగా కిందకి తెప్పించడం */
.details-container {
    display: block !important;
    width: 100% !important;
}

/* WhatsApp CTA సెక్షన్ బటన్ల వెనుక దాక్కోకుండా ప్యాడింగ్ */
main.section {
    padding-bottom: 110px !important; 
}
/* ==========================================
   1. GLOBAL RESET & TOP SPACE REMOVAL
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* హెడర్ ఫిక్స్ చేయడం వల్ల దాని కింద ఉన్న కంటెంట్ హెడర్ వెనుక దాక్కోకుండా ఉండటానికి */
body {
    padding-top: 60px !important;
}

/* ==========================================
   2. FIXED TOP NAVBAR STYLES
   ========================================== */
.navbar-new {
    background: #ffffff;
    padding: 0.5rem 0.5rem; /* మొబైల్‌లో స్పేస్ సేవ్ చేయడానికి ప్యాడింగ్ తగ్గించబడింది */
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 99999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 0 !important;
}

.nav-container-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    gap: 0.25rem; /* ఎలిమెంట్స్ మధ్య గ్యాప్ తగ్గించబడింది */
}

.logo-new {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img-new {
    object-fit: contain;
    max-height: 38px;
    width: auto;
    display: block;
}

/* ==========================================
   3. DESKTOP NAVIGATION LINKS & CTA BUTTON
   ========================================== */
.nav-menu-new {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-new a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-menu-new a:hover {
    color: #023f97;
}

/* Post Property Button Styles */
.ad-post-btn-new {
    background: #0f703d;
    color: #ffffff;
    padding: 0.35rem 0.6rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.2s ease;
    line-height: 1.2;
    white-space: nowrap;
    font-size: 0.85rem;
    flex-shrink: 0; /* బటన్ చిన్నగా నలిగిపోకుండా నార్మల్ సైజ్ ఉంచుతుంది */
}

.ad-post-btn-new:hover {
    background: #0a522c;
}

/* ==========================================
   4. MOBILE HAMBURGER TOGGLE (NO JS)
   ========================================== */
#blog-menu-check-new {
    display: none;
}

.menu-toggle-new {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle-new span {
    width: 100%;
    height: 3px;
    background-color: #0f172a;
    border-radius: 2px;
    display: block;
}

/* ==========================================
   5. MOBILE RESPONSIVE STYLES (Max Width: 768px)
   ========================================== */
@media (max-width: 768px) {
    body {
        padding-top: 52px !important;
    }

    .menu-toggle-new {
        display: flex;
    }

    .logo-img-new {
        max-height: 28px; /* మొబైల్‌లో లోగో సైజ్ చిన్నదిగా చేయబడింది */
    }

    /* మొబైల్‌లో బటన్ క్లీన్‌గా పట్టడానికి అడ్జస్ట్‌మెంట్ */
    .ad-post-btn-new {
        font-size: 0.72rem;
        padding: 0.25rem 0.35rem;
        letter-spacing: -0.2px;
    }

    /* Mobile Dropdown Menu */
    .nav-menu-new {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: -0.5rem;
        right: -0.5rem;
        width: calc(100% + 1rem);
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        display: none;
        border-top: 1px solid #e2e8f0;
        z-index: 9999;
    }

    /* Checkbox క్లిక్ చేసినప్పుడు మొబైల్ మెనూ ఓపెన్ అవుతుంది */
    #blog-menu-check-new:checked ~ .nav-menu-new {
        display: flex !important;
    }

    .nav-menu-new li {
        width: 100%;
        text-align: center;
    }

    .nav-menu-new a {
        display: block;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #f1f5f9;
    }
}
.back-link {
    color:  #023f96; 
    text-decoration: none;
    font-size: inherit;   
    font-weight: inherit; 
}

.back-link:hover {
    color: #012d6b;
    text-decoration: underline;
}
.article-author{
    margin-top:40px;
    padding:20px;
    border:1px solid #ddd;
    border-radius:8px;
    background:#f9f9f9;
}

.article-author h2{
    margin-bottom:15px;
}

.author-box p{
    line-height:1.8;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 14px;
}

.breadcrumb > * + *::before {
    content: "›";
    color: #999;
    margin: 0 8px;
}

/* Links */
.breadcrumb a {
    color: #023f96;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #012d6b;
    text-decoration: underline;
}

/* Current page */
.breadcrumb span[aria-current="page"] {
    color: #333;
    font-weight: 600;
}