   :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.2s ease-in-out;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-main);
            line-height: 1.5;
            padding-top: 85px;
            padding-bottom: 75px; /* బాటమ్ నావిగేషన్ కోసం స్పేస్ */
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* NAVBAR & HAMBURGER DESIGN */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: var(--bg-white);
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 24px;
            z-index: 1000;
        }

        .logo {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .logo span {
            color: var(--accent);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
        }

        .nav-links a {
            font-weight: 500;
            color: var(--primary-light);
            transition: var(--transition);
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--accent);
        }

        /* MAIN CONTENT STRUCTURE */
        .section {
            padding: 10px 24px 40px 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .details-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
            margin-top: 15px;
        }

        /* 🚀 100/100 స్కోర్ కోసం ఇమేజ్ కంటైనర్ ఆప్టిమైజేషన్ */
        .main-image-container {
            width: 100%;
            height: 380px;
            overflow: hidden;
            border-radius: var(--radius);
            margin-bottom: 20px;
            background-color: #cbd5e1;
        }

        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: #ffffff;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .info-table th, .info-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }

        .info-table th {
            background-color: #f1f5f9;
            color: var(--primary);
            font-weight: 600;
            width: 35%;
        }
        .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.logo-img {
    display: block;
    height: 25px;
    width: auto;
    object-fit: contain;
}

        /* STICKY SIDEBAR */
        .contact-card {
            background: #ffffff;
            border: 1px solid var(--border);
            padding: 24px;
            border-radius: var(--radius);
            position: sticky;
            top: 90px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
            height: fit-content;
        }

        .btn-whatsapp {
            background-color: #085726;
            color: white;
            padding: 12px;
            display: block;
            text-align: center;
            border-radius: 6px;
            font-weight: bold;
            margin-top: 15px;
            transition: var(--transition);
        }

        .btn-whatsapp:hover {
            background-color: #20ba59;
        }

        .features-list {
            margin: 20px 0;
            padding-left: 20px;
        }

        .features-list li {
            margin-bottom: 8px;
        }

        /* MOBILE STICKY BOTTOM MENU */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background-color: #0f172a;
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 2000;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
        }

        .bottom-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
            font-size: 11px;
            font-weight: 500;
            text-decoration: none;
            width: 20%;
            height: 100%;
            transition: all 0.2s ease;
        }

        .bottom-nav-item svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
            margin-bottom: 2px;
        }

        .bottom-nav-item:hover, .bottom-nav-item.active {
            color: #2563eb;
            background-color: rgba(255, 255, 255, 0.03);
        }

        /* RESPONSIVE MEDIA QUERIES */
        @media (max-width: 768px) {
            .details-container {
                grid-template-columns: 1fr;
            }
            .menu-toggle {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--bg-white);
                border-bottom: 1px solid var(--border);
                flex-direction: column;
                gap: 0;
                width: 100%;
                display: none;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                display: block;
                padding: 15px 0;
                border-bottom: 1px solid var(--border);
            }
            .main-image-container {
                height: 250px; /* మొబైల్ స్క్రీన్ లో కొద్దిగా తగ్గించాం */
            }
        }
    

        @media (min-width: 769px) {
            .bottom-nav {
                display: none;
            }
            body {
                padding-bottom: 20px;
            }
        }
        .ad-post-btn {
      background-color: #00695c;
      color: white;
      padding: 3px 3px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: normal;
    }

    .header .ad-post-btn:hover {
      background-color: #1ebe5d;
    }
    .floating-actions-wrapper{
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    display: flex;   /* none → flex */
    justify-content: space-between;
    padding: 0 20px;
    z-index: 2500;
    pointer-events: none;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    pointer-events: auto; 
    transition: transform 0.2s ease;
    text-decoration: none;
}

.floating-btn:active {
    transform: scale(0.9);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.btn-call-float {
    background-color: #2563eb;
}

.btn-wa-float {
    background-color: #085726;
}
 /* Submit Your Requirement Floating Button Styles - Left & Orange */
.ph-side-btn {
    position: fixed;
    left: 20px; /* ఇక్కడ right తీసేసి left: 20px పెట్టాను */
    bottom: 80px; 
    z-index: 2999;
    display: flex;
    align-items: center;
    background: #b91379; /* మీ బ్రాండ్‌కు సరిపోయే బ్రైట్ ఆరెంజ్ కలర్ */
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 2px;
}

.ph-side-btn a {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

.ph-side-btn .ph-icon {
    font-size: 18px;
    margin-right: 8px;
}

.ph-side-btn .ph-text {
    white-space: nowrap;
    transition: max-width 0.3s ease;
    max-width: 200px;
}

.ph-side-btn .ph-minimize {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.ph-side-btn .ph-minimize:hover {
    color: white;
}

/* Hover Effect - ఆరెంజ్ కలర్ కొంచెం డార్క్ అవుతుంది */
.ph-side-btn:hover {
    background: #e65100; 
}

/* Minimized State (కస్టమర్ క్లోజ్ చేసినప్పుడు) */
.ph-side-btn.minimized {
    padding: 0;
    border-radius: 50%;
}

.ph-side-btn.minimized .ph-text, 
.ph-side-btn.minimized .ph-minimize {
    display: none;
}

.ph-side-btn.minimized a {
    padding: 12px;
}

.ph-side-btn.minimized .ph-icon {
    margin-right: 0;
    font-size: 22px;
}
/* Warangal Property Hub - Centered 2 Column Footer Styles */
.wph-site-footer {
    background-color: #1e293b;
    color: #94a3b8;
    font-family: system-ui, -apple-system, sans-serif;
    padding: 40px 20px 20px 20px;
    border-top: 1px solid #334155;
    margin-top: 50px;
    display: block;
    text-align: center; /* పూర్తి ఫుటర్ లోని టెక్స్ట్ సెంటర్ అవ్వడానికి */
}

.wph-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}

.wph-footer-links, 
.wph-footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center; /* లోపల ఉన్న ఎలిమెంట్స్ అన్నీ సెంటర్ లో అమరడానికి */
    text-align: center;
}

.wph-footer-links h4, 
.wph-footer-contact h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

/* సెంటర్ అలైన్‌మెంట్‌కు తగ్గట్టుగా బార్డర్ లైన్ కూడా మధ్యలోకి రావడానికి */
.wph-footer-links h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #ff6f00;
}

.wph-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.wph-footer-links ul li {
    margin-bottom: 12px;
}

.wph-footer-links ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: color 0.3s ease;
    display: inline-block;
}

.wph-footer-links ul li a:hover {
    color: #ff6f00;
}

.wph-footer-contact p {
    font-size: 14px;
    font-weight: normal;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 12px;
    color: #94a3b8;
}

.wph-footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 13px;
    font-weight: normal;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wph-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
