/* ================================================
   DLF Summit Plaza (Sector 54) — summit.css
   Only the pieces location.css does not already provide.
   ================================================ */

/* ── Opening badge (replaces the rating badge; this clinic has no reviews yet) ── */
.loc-hero .opening-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff6d6;
    color: #7a5600;
    border: 1px solid #f2dc95;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 14px;
}
.loc-hero .opening-badge .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0a800;
    flex: none;
    box-shadow: 0 0 0 0 rgba(224, 168, 0, .55);
    animation: summitPulse 2.2s infinite;
}
@keyframes summitPulse {
    0%   { box-shadow: 0 0 0 0 rgba(224,168,0,.55); }
    70%  { box-shadow: 0 0 0 9px rgba(224,168,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(224,168,0,0); }
}
@media (prefers-reduced-motion: reduce) {
    .loc-hero .opening-badge .pulse { animation: none; }
}

/* ── Opening notice ── */
.summit-notice { padding: 46px 0 6px; }
.summit-notice .notice-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #edf5e4;
    border-left: 5px solid #7da341;
    border-radius: 12px;
    padding: 26px 28px;
}
.summit-notice .notice-ico { font-size: 30px; line-height: 1; flex: none; }
.summit-notice h2 {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 22px;
    font-weight: 700;
    color: #2f4a12;
    margin: 0 0 8px;
    line-height: 1.3;
}
.summit-notice p {
    font-size: 15.5px;
    color: #3f5626;
    line-height: 1.75;
    margin: 0;
}
.summit-notice a { color: #4e7a1e; font-weight: 600; text-decoration: underline; }
.summit-notice a:hover { color: #3a5c16; }

/* ── Getting here ── */
.summit-visit { padding: 62px 0; background: #fff9f3; }
.summit-visit .visit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 34px;
}
.summit-visit .visit-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px 22px;
}
.summit-visit .visit-card h3 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b07d00;
    margin: 0 0 10px;
}
.summit-visit .visit-card p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.75;
    margin: 0;
}
.summit-visit .visit-card a { color: #4e7a1e; font-weight: 600; text-decoration: none; }
.summit-visit .visit-card a:hover { text-decoration: underline; }

/* ── Responsive ── */
@media (max-width: 767px) {
    .summit-notice { padding: 32px 0 4px; }
    .summit-notice .notice-card { flex-direction: column; gap: 12px; padding: 20px 18px; }
    .summit-notice h2 { font-size: 19px; }
    .summit-visit { padding: 44px 0; }
}

/* brand-colour the inline link inside the why-list (default blue is off-palette) */
.loc-why .why-list li a {
    color: #4e7a1e;
    font-weight: 600;
    text-decoration: underline;
}
.loc-why .why-list li a:hover { color: #3a5c16; }

/* "coming soon" markers for details not confirmed yet (unit number, Google listing) */
.soon {
    display: inline-block;
    background: #fff6d6;
    color: #7a5600;
    border: 1px solid #f2dc95;
    border-radius: 100px;
    padding: 2px 11px;
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 4px;
}
.loc-hero .hero-left .soon { margin-top: 0; }
