/* ================================================
   Location Landing Pages — location.css
   Shared by: dlf-phase-1, dlf-phase-2, golf-course-road
   ================================================ */

/* ── Hero ── */
.loc-hero {
    background-color: #fff9f3;
    padding: 3rem 0 0;
}
.loc-hero .hero-left { max-width: 100%; }

.loc-hero .rating-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 18px;
    gap: 6px;
}
.loc-hero .rating-badge a {
    text-decoration: none;
    color: #0073e6;
    font-weight: 500;
}
.loc-hero .loc-area-tag {
    display: inline-block;
    background: #edf5e0;
    color: #4e7a1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.loc-hero h1 {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.15;
    color: #222;
    margin-bottom: 18px;
}
.loc-hero h1 span { color: #7da341; }
.loc-hero p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 26px;
}
.loc-hero .btn {
    background: #fecd29;
    padding: 14px 28px;
    border: none;
    border-radius: 0 20px 0 20px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #222;
}
.loc-hero .btn:hover { background: #f5bd00; color: #222; }
/* ── Map Card ── */
.map-card-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 14px 0 0 14px;
}
.map-card-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 55%; height: 55%;
    border-top: 8px solid #fecd29;
    border-left: 8px solid #fecd29;
    border-radius: 20px 0 0 0;
    z-index: 2;
    pointer-events: none;
}
.map-card-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 55%;
    border-bottom: 8px solid #7da341;
    border-right: 8px solid #7da341;
    border-radius: 0 0 20px 0;
    z-index: 2;
    pointer-events: none;
}
.map-card-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(0,0,0,0.13);
    position: relative;
    z-index: 1;
}
.loc-hero .breadcrumbs ol {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 16px 0 0;
    margin: 0;
    font-size: 13px;
    color: #888;
}
.loc-hero .breadcrumbs a { color: #7da341; text-decoration: none; }
.loc-hero .breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: 6px; color: #bbb; }

/* ── Services Section ── */
.loc-services {
    padding: 80px 0;
    background: #fff;
}
.loc-services .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.loc-services .mainheading span { color: #7da341; }
.loc-services .section-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}
.loc-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.loc-scard {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
}
.loc-scard:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}
.loc-scard .scard-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}
.loc-scard .scard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.loc-scard:hover .scard-img img { transform: scale(1.04); }
.loc-scard .scard-body {
    padding: 24px 22px 22px;
}
.loc-scard .scard-title {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 19px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.loc-scard .scard-text {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 16px;
}
.loc-scard .scard-link {
    font-size: 14px;
    font-weight: 600;
    color: #7da341;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.loc-scard .scard-link:hover { gap: 10px; color: #4e7a1e; }

/* ── Why Choose Us ── */
.loc-why {
    background: #fff9f3;
    padding: 80px 0;
}
.loc-why .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.25;
}
.loc-why .mainheading span { color: #7da341; }
.loc-why .intro-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}
.why-list .wi {
    width: 38px; height: 38px;
    background: #fecd29;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.why-list strong { color: #222; display: block; font-size: 15px; margin-bottom: 2px; }
.loc-why .why-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
}
.loc-why .why-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

/* ── Doctors Section ── */
.loc-doctors {
    padding: 80px 0;
    background: #fff;
}
.loc-doctors .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.loc-doctors .mainheading span { color: #7da341; }
.loc-doctors .section-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}
.loc-doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.loc-doccard {
    border-radius: 0 60px 0 60px;
    overflow: hidden;
    position: relative;
    background: #f5f9ee;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
}
.loc-doccard:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}
.loc-doccard img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
    display: block;
}
.loc-doccard .doc-info {
    padding: 18px 20px 20px;
    background: #fff;
}
.loc-doccard .doc-name {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.loc-doccard .doc-degree {
    font-size: 13px;
    color: #7da341;
    font-weight: 600;
    margin-bottom: 6px;
}
.loc-doccard .doc-spec {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* ── Awards Strip ── */
.loc-awards {
    background: #fff9f3;
    padding: 70px 0;
}
.loc-awards .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.25;
}
.loc-awards .mainheading .green { color: #7da341; }
.loc-awards .mainheading .yellow { color: #fecd29; }
.loc-awards p {
    font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 12px;
}
.loc-awards .trust-line { font-size: 15px; color: #444; margin-bottom: 28px; }
.loc-awards .trust-line span { color: #fecd29; font-weight: 700; }
.loc-awards .badge-list {
    display: flex; gap: 14px; flex-wrap: wrap; align-items: flex-end;
}
.loc-awards .badge-list img { height: 120px; width: auto; }
.loc-awards .award-img-wrap {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.loc-awards .award-img-wrap img { width: 100%; height: auto; display: block; }

/* ── CTA ── */
.loc-cta {
    background: linear-gradient(135deg, #7da341 0%, #4e7a1e 100%);
    padding: 65px 0;
    text-align: center;
}
.loc-cta h2 {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 34px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.loc-cta h2 span { color: #fecd29; }
.loc-cta p {
    font-size: 15px; color: rgba(255,255,255,0.85);
    margin-bottom: 28px; max-width: 520px;
    margin-left: auto; margin-right: auto; line-height: 1.7;
}
.loc-cta .cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.loc-cta .btn-book {
    display: inline-block; background: #fecd29; color: #222;
    font-size: 15px; font-weight: 700; padding: 15px 34px;
    border-radius: 100px; text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.loc-cta .btn-book:hover { background: #ffc107; transform: translateY(-2px); color: #222; }
.loc-cta .btn-call {
    display: inline-block; background: transparent; color: #fff;
    font-size: 15px; font-weight: 600; padding: 14px 32px;
    border-radius: 100px; border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.loc-cta .btn-call:hover { border-color: #fff; transform: translateY(-2px); color: #fff; }

/* ── Responsive ── */
@media (max-width: 1199px) {
    .loc-hero h1 { font-size: 42px; }
}
@media (max-width: 991px) {
    .loc-hero h1 { font-size: 34px; }
    .loc-service-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-doc-grid { grid-template-columns: repeat(2, 1fr); }
    .loc-services .mainheading,
    .loc-why .mainheading,
    .loc-doctors .mainheading,
    .loc-awards .mainheading { font-size: 28px; }
    .map-card-wrap { padding: 10px 0 0 10px; }
}
@media (max-width: 767px) {
    .loc-hero h1 { font-size: 28px; }
    .map-card-wrap { padding: 8px 0 0 8px; }
    .map-card-wrap::before,
    .map-card-wrap::after { width: 45%; height: 45%; }
    .loc-service-grid { grid-template-columns: 1fr; }
    .loc-doc-grid { grid-template-columns: 1fr 1fr; }
    .loc-services, .loc-why, .loc-doctors, .loc-awards { padding: 50px 0; }
    .loc-cta h2 { font-size: 24px; }
    .loc-awards .badge-list img { height: 85px; }
}
@media (max-width: 480px) {
    .loc-doc-grid { grid-template-columns: 1fr; }
}




/* ── Gallery Section ── */
.loc-gallery {
    padding: 80px 0;
    background: #fff9f3;
}

.loc-gallery .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.loc-gallery .mainheading span {
    color: #7da341;
}

.loc-gallery .section-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Image Card */
.g-item {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hover Effect */
.g-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}




/* ── SEO Content Section (Premium) ── */
.loc-content {
    /*padding: 80px 0;*/
    background: #ffffff;
}

/* Heading */
.loc-content .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.loc-content .mainheading span {
    color: #7da341;
}

/* Add subtitle */
.loc-content .section-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

/* Content box (IMPORTANT) */
.loc-content .content-wrap {
    /*max-width: 900px;*/
    margin: 0 auto;
    background: #fff9f3;
    padding: 35px 40px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Paragraphs */
.loc-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Sub Headings */
.loc-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #222;
    position: relative;
}

/* Green underline effect */
.loc-content h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #7da341;
    display: block;
    margin-top: 6px;
    border-radius: 2px;
}

/* Lists (UPGRADED) */
.content-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.content-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

/* Custom bullet */
.content-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #7da341;
    font-size: 14px;
}


.cta-text {
            width: 300px;

    display: inline-block;
    font-weight: 600;
    color: #222;
    margin-top: 25px;
    background: #edf5e0;
    padding: 14px 18px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-text:hover {
    background: #dcecc5;
    color: #222;
}


/* Responsive */
@media (max-width: 768px) {
    .loc-content .mainheading {
        font-size: 26px;
    }

    .loc-content .content-wrap {
        padding: 25px;
    }.badge-list{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.award-card{
    width:180px;
    padding:20px;
    text-align:center;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.award-card:hover{
    transform:translateY(-5px);
}

.award-icon{
    font-size:50px;
    margin-bottom:10px;
}

.award-card h3{
    margin:0;
    font-size:28px;
    font-weight:700;
}

.award-card p{
    margin:8px 0;
    font-size:15px;
    color:#555;
}

.award-card span{
    display:block;
    font-size:36px;
    font-weight:700;
    color:#0b7a75;
}

.diamond{
    border-top:5px solid #3ba7ff;
}

.platinum{
    border-top:5px solid #b8b8b8;
}
}

.badge-list{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.award-card{
    width:180px;
    padding:20px;
    text-align:center;
    background:#fff;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.award-card:hover{
    transform:translateY(-5px);
}

.award-icon{
    font-size:50px;
    margin-bottom:10px;
}

.award-card h3{
    margin:0;
    font-size:20px;
    font-weight:700;
}

.award-card p{
    margin:8px 0;
    font-size:12px;
    color:#555;
}

.award-card span{
    display:block;
    font-size:36px;
    font-weight:700;
    color:#0b7a75;
}

.diamond{
    border-top:5px solid #3ba7ff;
}

.platinum{
    border-top:5px solid #b8b8b8;
}


/* ── View Directions Button ── */
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #1a73e8;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 100px;
    border: 2px solid #1a73e8;
    margin-top: 16px;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
}

.btn-directions:hover {
    background: #1a73e8;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,115,232,0.3);
}


