/* ================================================
   Awards & Accreditations Page — awards.css
   ================================================ */

/* ── Page Title Banner ── */
.awards-pagetitle {
    background: #fff9f3;
    padding: 50px 0 40px;
    text-align: center;
}
.awards-pagetitle h1 {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 46px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.2;
}
.awards-pagetitle h1 span { color: #7da341; }
.awards-pagetitle p {
    font-size: 16px;
    color: #555;
    max-width: 640px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
.awards-pagetitle .breadcrumbs ol {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #888;
}
.awards-pagetitle .breadcrumbs ol li a { color: #7da341; text-decoration: none; }
.awards-pagetitle .breadcrumbs ol li:not(:last-child)::after {
    content: '›'; margin-left: 8px; color: #bbb;
}

/* ── Best Clinic Award ── */
.awards-bestclinic {
    padding: 80px 0;
    background: #fff;
}
.awards-bestclinic .award-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fecd29;
    margin-bottom: 10px;
}
.awards-bestclinic .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    line-height: 1.25;
    margin-bottom: 20px;
}
.awards-bestclinic .mainheading span { color: #7da341; }
.awards-bestclinic p {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
    margin-bottom: 14px;
}
.awards-bestclinic .awardimg-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.awards-bestclinic .awardimg-wrap img { width: 100%; height: auto; display: block; }

/* ── Invisalign Provider Tiers ── */
.awards-tiers {
    background: #fff9f3;
    padding: 80px 0;
}
.awards-tiers .mainheading {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}
.awards-tiers .mainheading span { color: #7da341; }
.awards-tiers .section-sub {
    font-size: 15px;
    color: #666;
    margin-bottom: 50px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}
.tier-cards {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}
.tiercard {
    flex: 1 1 260px;
    max-width: 300px;
    background: #fff;
    border-radius: 24px;
    padding: 40px 28px 36px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}
.tiercard:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 44px rgba(0,0,0,0.13);
}
/* Gold accent for Diamond */
.tiercard.diamond::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fecd29, #f5a623);
}
/* Green accent for Platinum */
.tiercard.platinum::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, #7da341, #4e7a1e);
}
.tiercard .tier-badge-img {
    margin: 0 auto 20px;
    display: block;
    height: 160px;
    width: auto;
}
.tiercard .tier-year {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.tiercard.diamond .tier-year { background: #fff6d6; color: #b07d00; }
.tiercard.platinum .tier-year { background: #edf5e4; color: #4e7a1e; }
.tiercard .tier-level {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.tiercard.diamond .tier-level { color: #b07d00; }
.tiercard.platinum .tier-level { color: #5a8a2a; }
.tiercard .tier-title {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 16px;
}
.tiercard .tier-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
}

/* ── CTA Strip ── */
.awards-cta {
    background: linear-gradient(135deg, #7da341 0%, #4e7a1e 100%);
    padding: 60px 0;
    text-align: center;
}
.awards-cta h2 {
    font-family: var(--heading-font, 'Roboto Slab', serif);
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.awards-cta h2 span { color: #fecd29; }
.awards-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
.awards-cta .btn-cta {
    display: inline-block;
    background: #fecd29;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.awards-cta .btn-cta:hover {
    background: #ffc107;
    transform: translateY(-2px);
    color: #222;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .awards-pagetitle h1 { font-size: 34px; }
    .awards-bestclinic .mainheading,
    .awards-tiers .mainheading { font-size: 28px; }
}
@media (max-width: 767px) {
    .awards-pagetitle { padding: 36px 0 28px; }
    .awards-pagetitle h1 { font-size: 28px; }
    .awards-bestclinic,
    .awards-tiers { padding: 50px 0; }
    .tier-cards { flex-direction: column; align-items: center; }
    .tiercard { max-width: 100%; }
    .awards-cta h2 { font-size: 26px; }
}
