/* Flats for sale in Guntur SEO page — premium visual overhaul */

/* ===== Hero rhythm ===== */
#guntur-seo-hero .flats-hero-grid {
    padding-top: 48px;
    padding-bottom: 56px;
}

@media (max-width: 991px) {
    #guntur-seo-hero .flats-hero-grid {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

body:has(#guntur-seo-hero) #connectivity.connectivity-section {
    padding-top: 40px;
}



/* ===== On-page TOC — sticky dark pill navigation ===== */
#guntur-on-this-page {
    padding: 14px 0;
    background: linear-gradient(135deg, #0f3964 0%, #13467B 60%, #1a5a9e 100%);
    border-bottom: none;
    position: sticky;
    top: 110px;
    z-index: 99;
    box-shadow: 0 4px 24px rgba(15, 57, 100, 0.35);
}

#guntur-on-this-page .guntur-toc-label {
    display: none;
}

#guntur-on-this-page .guntur-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

#guntur-on-this-page .guntur-toc-list::-webkit-scrollbar {
    display: none;
}

#guntur-on-this-page .guntur-toc-list a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    white-space: nowrap;
    display: block;
    background: rgba(255, 255, 255, 0.04);
}

#guntur-on-this-page .guntur-toc-list a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* ===== AEO Summary — Icon Card Grid ===== */
#guntur-aeo-summary {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
    position: relative;
    overflow: hidden;
}

#guntur-aeo-summary::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 70, 123, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

#guntur-aeo-summary::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 24, 32, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Hide original dl — cards replace it visually; dl kept for structured data crawlers */
#guntur-aeo-summary .guntur-aeo-dl,
#vjw-aeo-summary .guntur-aeo-dl,
#gannavaram-aeo-summary .guntur-aeo-dl,
#gollapudi-aeo-summary .guntur-aeo-dl {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}

/* Card grid */
.guntur-aeo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.guntur-aeo-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 28px;
    border: 1px solid rgba(19, 70, 123, 0.06);
    box-shadow: 0 4px 20px rgba(19, 70, 123, 0.04);
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.guntur-aeo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--secondary-color, #D51820), #b3141b);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guntur-aeo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(19, 70, 123, 0.1);
    border-color: rgba(19, 70, 123, 0.1);
}

.guntur-aeo-card:hover::before {
    opacity: 1;
}

.guntur-aeo-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, rgba(19, 70, 123, 0.08) 0%, rgba(213, 24, 32, 0.04) 100%);
    color: var(--primary-color, #13467B);
    transition: all 0.3s ease;
}

.guntur-aeo-card:hover .guntur-aeo-card-icon {
    background: linear-gradient(135deg, var(--primary-color, #13467B), var(--primary-color-dark, #0f3964));
    color: #fff;
}

.guntur-aeo-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--primary-color-dark, #0f3964);
    line-height: 1.3;
}

.guntur-aeo-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-light, #666);
    margin: 0;
}

.guntur-aeo-card a {
    color: var(--secondary-color, #D51820);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.guntur-aeo-card a:hover {
    color: var(--primary-color, #13467B);
}

/* ===== Quick Answers — Dark themed with glassmorphism cards ===== */
#guntur-keyword-answers,
#vjw-keyword-answers {
    background: linear-gradient(160deg, #0a1e3d 0%, #13467B 45%, #1a5a9e 100%) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
}

#guntur-keyword-answers::before,
#vjw-keyword-answers::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 24, 32, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

#guntur-keyword-answers::after,
#vjw-keyword-answers::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 214, 120, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

#guntur-keyword-answers .section-heading-center,
#vjw-keyword-answers .section-heading-center {
    position: relative;
    z-index: 1;
}

#guntur-keyword-answers .subheading,
#vjw-keyword-answers .subheading {
    color: rgba(255, 214, 120, 0.95) !important;
}

#guntur-keyword-answers .section-title,
#vjw-keyword-answers .section-title {
    color: #fff;
}

#guntur-keyword-answers .section-subtitle,
#vjw-keyword-answers .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin-top: 8px;
}

/* Fix subtitle–title spacing in AEO sections */
#guntur-aeo-summary .section-subtitle,
#vjw-aeo-summary .section-subtitle,
#guntur-keyword-answers .section-subtitle,
#vjw-keyword-answers .section-subtitle {
    margin-top: 10px;
}

#guntur-keyword-answers .land-aeo-grid,
#vjw-keyword-answers .land-aeo-grid {
    max-width: 1100px;
    position: relative;
    z-index: 1;
}

#guntur-keyword-answers .land-aeo-block,
#vjw-keyword-answers .land-aeo-block {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    padding: 1.5rem 1.5rem;
}

#guntur-keyword-answers .land-aeo-block:hover,
#vjw-keyword-answers .land-aeo-block:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

#guntur-keyword-answers .land-aeo-block h3,
#vjw-keyword-answers .land-aeo-block h3 {
    color: #fff !important;
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

#guntur-keyword-answers .land-aeo-block p,
#vjw-keyword-answers .land-aeo-block p {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.9rem;
}

#guntur-keyword-answers .land-aeo-block p strong,
#vjw-keyword-answers .land-aeo-block p strong {
    color: rgba(255, 255, 255, 0.92);
}

/* ===== Inline images in Overview / Investment sections ===== */
.overview-image-wrapper {
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(19, 70, 123, 0.12);
    position: relative;
}

.overview-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(19, 70, 123, 0.08);
    pointer-events: none;
}

.overview-inline-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.overview-image-wrapper:hover .overview-inline-img {
    transform: scale(1.03);
}

/* ===== Investment Section visual polish ===== */
#why-invest {
    position: relative;
}

#why-invest .overview-content p strong {
    color: var(--primary-color-dark, #0f3964);
}

/* ===== Enhanced Icons — Connectivity, Highlights, AEO ===== */

/* Connectivity section icons — larger, bolder, branded */
body:has(#guntur-seo-hero) .connectivity-card .conn-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(19, 70, 123, 0.08) 0%, rgba(213, 24, 32, 0.04) 100%);
    border: 1.5px solid rgba(19, 70, 123, 0.08);
    transition: all 0.35s ease;
}

body:has(#guntur-seo-hero) .connectivity-card .conn-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

body:has(#guntur-seo-hero) .connectivity-card:hover .conn-icon {
    background: linear-gradient(135deg, var(--primary-color, #13467B), var(--primary-color-dark, #0f3964));
    color: #fff;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(19, 70, 123, 0.25);
}

/* Highlight cards icons — bolder */
body:has(#guntur-seo-hero) .hl-card-icon {
    width: 68px;
    height: 68px;
    border: 1.5px solid rgba(213, 24, 32, 0.08);
}

body:has(#guntur-seo-hero) .hl-card-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
}

/* Feature list checkmark icons — bolder green */
body:has(#guntur-seo-hero) .feature-list li svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
    color: #22c55e;
    flex-shrink: 0;
}

/* Hero highlight icons */
body:has(#guntur-seo-hero) .hero-highlight svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* AEO card icons — more prominent */
body:has(#guntur-seo-hero) .guntur-aeo-card-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    #guntur-on-this-page {
        top: 80px;
    }

    #guntur-on-this-page .guntur-toc-list {
        justify-content: flex-start;
        padding: 0 8px;
    }
}

@media (max-width: 768px) {
    .guntur-aeo-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    #guntur-on-this-page .guntur-toc-list a {
        font-size: 0.78rem;
        padding: 7px 14px;
    }
}

@media (max-width: 576px) {
    #guntur-on-this-page {
        top: 65px;
    }

    .guntur-aeo-card {
        padding: 24px 20px;
    }

    .guntur-aeo-card-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
}

/* ===== Breadcrumb Navigation (E-E-A-T) ===== */
.guntur-breadcrumb {
    padding: 10px 0;
    background: var(--bg-color, #f8f9fa);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.guntur-breadcrumb ol {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    font-size: 0.82rem;
    color: #888;
}

.guntur-breadcrumb li::after {
    content: '\203A';
    margin-left: 6px;
    color: #bbb;
}

.guntur-breadcrumb li:last-child::after {
    display: none;
}

.guntur-breadcrumb a {
    color: var(--primary-color, #13467B);
    text-decoration: none;
}

.guntur-breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== E-E-A-T Trust Bar ===== */
.eeat-trust-bar {
    padding: 36px 0;
    background: linear-gradient(135deg, #0f3964 0%, #13467B 60%, #1a5a9e 100%);
    color: #fff;
}

.eeat-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.eeat-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.eeat-trust-item svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.85);
}

.eeat-trust-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
}

.eeat-trust-item span {
    display: block;
    font-size: 0.78rem;
    opacity: 0.7;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .eeat-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .eeat-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ===== E-E-A-T About Builder Section ===== */
.eeat-about-builder {
    padding: 60px 0;
    background: var(--bg-color, #f8f9fa);
}

.eeat-about-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 40px;
    align-items: start;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(19, 70, 123, 0.08);
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.eeat-about-logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
}

.eeat-about-logo img {
    max-width: 160px;
    height: auto;
}

.eeat-about-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color-dark, #0f3964);
    margin-bottom: 16px;
}

.eeat-about-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

.eeat-about-content p strong {
    color: var(--primary-color-dark, #0f3964);
}

.eeat-about-links {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.eeat-about-links .btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary-color, #13467B);
    color: var(--primary-color, #13467B);
}

.eeat-about-links .btn-outline:hover {
    background: var(--primary-color, #13467B);
    color: #fff;
}

@media (max-width: 768px) {
    .eeat-about-grid {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 20px;
    }

    .eeat-about-logo {
        justify-content: flex-start;
    }
}

