/* Shared inner-page styles (KIEC-like) */

.page-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0a2560;
    color: #fff;
}

.page-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.page-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,37,96,0.92) 0%, rgba(12,47,111,0.55) 100%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 3.5rem 0 2.5rem;
}

.page-hero__inner h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 0.45rem;
}

.page-hero__inner p {
    font-size: 1.02rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 46ch;
}

.page-wrap {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-section--mist { background: #f5f7fa; }

.exam-notes__body {
    font-size: 1.02rem;
    font-weight: 400;
    color: #444;
    line-height: 1.8;
    max-width: 70ch;
    white-space: pre-wrap;
}

.page-section h2,
.page-block h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.page-section p,
.page-block p {
    font-size: 1.02rem;
    font-weight: 400;
    color: #555;
    line-height: 1.75;
    margin-bottom: 0.9rem;
}

.page-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.page-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.page-card {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 10px;
    padding: 1.5rem 1.35rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(12,47,111,0.1);
}

.page-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin: 0.7rem 0 0.45rem;
}

.page-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.page-card .icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(226,10,22,0.08);
    color: var(--accent, #e20a16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-cta-band {
    background: var(--navy-deep, #0a2560);
    color: #fff;
    padding: 2.5rem 0;
    text-align: center;
}

.page-cta-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
}

.page-cta-band p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item:hover img { transform: scale(1.05); }

.branch-card {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.branch-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.55rem;
}

.branch-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.35rem;
}

.uni-card {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 10px;
    padding: 1.4rem;
    text-align: center;
}

.uni-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.4rem;
}

.uni-card p {
    font-size: 0.92rem;
    color: #666;
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.1rem;
}

.team-grid--rich {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.team-grid--home {
    grid-template-columns: repeat(4, 1fr);
}

.team-card {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(12,47,111,0.08);
    border-radius: 10px;
    padding: 1rem;
}

.team-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.7rem;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
}

.team-card--rich {
    text-align: left;
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card--rich:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(12,47,111,0.12);
}

.team-card__photo img {
    height: 240px;
    margin: 0;
    border-radius: 0;
    display: block;
}

.team-card__body {
    padding: 1.1rem 1.15rem 1.25rem;
}

.team-card__role {
    color: var(--accent, #e20a16);
    font-size: 0.86rem;
    font-weight: 600;
    margin: 0.2rem 0 0.55rem;
}

.team-card__bio {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.gallery-grid--labeled .gallery-item {
    position: relative;
}

.gallery-grid--labeled figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.7rem 0.85rem;
    background: linear-gradient(transparent, rgba(10,37,96,0.85));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
}

.branch-card--rich {
    box-shadow: 0 10px 28px rgba(12,47,111,0.06);
}

.branch-card__tag {
    display: inline-block;
    background: rgba(226,10,22,0.1);
    color: var(--accent, #e20a16);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
}

.branch-card__note {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    color: #777;
    line-height: 1.55;
}

.testi-card--rich {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.testi-card--rich img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.testi-card__stars {
    color: #e20a16;
    letter-spacing: 0.08em;
    margin-bottom: 0.55rem;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .team-grid--rich,
    .team-grid--home {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .team-grid--rich,
    .team-grid--home {
        grid-template-columns: 1fr;
    }
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.15rem;
}

.testi-card {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 10px;
    padding: 1.4rem;
}

.testi-card img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
}

.testi-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.35rem;
}

.testi-card p {
    font-size: 0.95rem;
    color: #555;
    font-weight: 400;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-box {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-info-box h3 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 1rem;
}

.contact-info-box p {
    margin-bottom: 0.7rem;
    color: #555;
}

.home-blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(12,47,111,0.1);
}
.home-blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.home-blog-card__body {
    padding: 1.1rem 1.15rem 1.25rem;
}
.home-blog-card__date {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
}
.home-blog-card h3 {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.45rem;
    line-height: 1.35;
}
.home-blog-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.learn-course-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 14px;
    padding: 1.6rem 1.4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.learn-course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(12,47,111,0.12);
}
.learn-course-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(226,10,22,0.09);
    color: var(--accent, #e20a16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
}
.learn-course-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.5rem;
}
.learn-course-card p {
    color: #666;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.learn-course-card__meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}
.learn-course-card__meta span {
    background: #f5f7fa;
    color: var(--navy, #0c2f6f);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
}
.learn-course-card__cta {
    color: var(--accent, #e20a16);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== IELTS / PTE exam pages ===== */
.exam-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: #0a2560;
    padding: clamp(2.8rem, 6vw, 4.5rem) 0;
}
.exam-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 12% 20%, rgba(226,10,22,0.28), transparent 42%),
        radial-gradient(ellipse at 88% 10%, rgba(255,255,255,0.12), transparent 38%),
        linear-gradient(120deg, #071a42 0%, #0c2f6f 55%, #123a7a 100%);
}
.exam-hero--pte .exam-hero__bg {
    background:
        radial-gradient(ellipse at 85% 25%, rgba(226,10,22,0.22), transparent 40%),
        radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.1), transparent 42%),
        linear-gradient(135deg, #061633 0%, #0a2560 50%, #163f82 100%);
}
.exam-hero__grid {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: clamp(1.5rem, 4vw, 2.8rem);
    align-items: center;
}
.exam-hero__eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0.85rem;
}
.exam-hero__copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 3.15rem);
    font-weight: 650;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    max-width: 16ch;
}
.exam-hero__lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    max-width: 48ch;
    margin-bottom: 1.4rem;
    font-weight: 400;
}
.exam-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}
.exam-hero__meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin: 0;
    padding: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.exam-hero__meta i {
    color: #ffb4b8;
    margin-right: 0.35rem;
}
.exam-hero__price {
    background: rgba(255,255,255,0.97);
    color: #1a1a1a;
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}
.exam-hero__visual {
    display: grid;
    gap: 1rem;
}
.exam-hero__media {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.96);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.exam-hero__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.exam-hero__media--logo {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}
.exam-hero__media--logo img {
    width: min(240px, 70%);
    height: auto;
    object-fit: contain;
}
.exam-hero__media--photo img {
    height: 240px;
}
.exam-hero__price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.35rem;
}
.exam-hero__price-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--accent, #e20a16);
    letter-spacing: -0.03em;
    margin-bottom: 0.55rem;
}
.exam-hero__price-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.55;
    margin-bottom: 1.1rem;
}

.exam-strip {
    background: #fff;
    border-bottom: 1px solid rgba(12,47,111,0.08);
}
.exam-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1.35rem !important;
    padding-bottom: 1.35rem !important;
}
.exam-strip__inner div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.exam-strip__inner strong {
    font-family: var(--font-display);
    color: var(--navy, #0c2f6f);
    font-size: 0.98rem;
    font-weight: 600;
}
.exam-strip__inner span {
    font-size: 0.86rem;
    color: #777;
}

.exam-about {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}
.exam-subhead {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin: 1.4rem 0 0.7rem;
}
.exam-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}
.exam-checklist li {
    position: relative;
    padding: 0.45rem 0 0.45rem 1.55rem;
    color: #555;
    line-height: 1.55;
}
.exam-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--accent, #e20a16);
}
.exam-about__side { display: grid; gap: 1rem; }
.exam-side-card {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 1.35rem 1.3rem;
    border: 1px solid rgba(12,47,111,0.08);
}
.exam-side-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.85rem;
}
.exam-side-card dl { margin: 0; }
.exam-side-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(12,47,111,0.08);
    font-size: 0.92rem;
}
.exam-side-card dl > div:last-child { border-bottom: 0; }
.exam-side-card dt { color: #777; }
.exam-side-card dd {
    margin: 0;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    text-align: right;
}
.exam-side-card--accent {
    background: linear-gradient(145deg, #0c2f6f, #0a2560);
    color: #fff;
    border: none;
}
.exam-side-card--accent h3 { color: #fff; }
.exam-side-card--accent p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}
.exam-side-card--accent a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.45);
}

.exam-section-head {
    max-width: 58ch;
    margin-bottom: 1.6rem;
}
.exam-section-head p:last-child {
    color: #666;
    margin: 0;
}

.exam-modules {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.exam-module {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 12px;
    padding: 1.35rem 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.exam-module:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(12,47,111,0.1);
}
.exam-module .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(226,10,22,0.09);
    color: var(--accent, #e20a16);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}
.exam-module h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.45rem;
}
.exam-module p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.exam-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.exam-feature {
    padding: 1.35rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(12,47,111,0.1);
    background: #fff;
}
.exam-feature i {
    color: var(--accent, #e20a16);
    font-size: 1.15rem;
    margin-bottom: 0.7rem;
}
.exam-feature h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.4rem;
}
.exam-feature p {
    font-size: 0.92rem;
    color: #666;
    margin: 0;
    line-height: 1.55;
}

.exam-pricing {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}
.exam-price-card {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.12);
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 18px 40px rgba(12,47,111,0.08);
}
.exam-price-card__tag {
    display: inline-block;
    background: rgba(226,10,22,0.1);
    color: var(--accent, #e20a16);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}
.exam-price-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    margin-bottom: 0.35rem;
}
.exam-price-card__fee {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent, #e20a16);
    letter-spacing: -0.03em;
    margin-bottom: 0.45rem;
}
.exam-price-card__meta {
    color: #666;
    margin-bottom: 1.1rem;
    font-size: 0.95rem;
}
.exam-price-card__meta i { margin-right: 0.35rem; color: var(--navy); }
.exam-price-card__note {
    margin-top: 0.9rem;
    font-size: 0.82rem;
    color: #888;
    line-height: 1.5;
}

.exam-notes-panel {
    background: #f5f7fa;
    border-radius: 14px;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(12,47,111,0.08);
    max-width: 860px;
}

.exam-faq {
    display: grid;
    gap: 0.75rem;
    max-width: 860px;
}
.exam-faq details {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 10px;
    padding: 0.95rem 1.15rem;
}
.exam-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--navy, #0c2f6f);
    list-style: none;
    font-family: var(--font-display);
}
.exam-faq summary::-webkit-details-marker { display: none; }
.exam-faq summary::after {
    content: "+";
    float: right;
    color: var(--accent, #e20a16);
    font-weight: 500;
}
.exam-faq details[open] summary::after { content: "–"; }
.exam-faq p {
    margin: 0.75rem 0 0.2rem;
    color: #555;
    line-height: 1.65;
    font-size: 0.96rem;
}

.exam-book {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}
.exam-book__hint {
    margin-top: 1rem;
    color: #666;
}
.exam-book__hint a {
    color: var(--navy, #0c2f6f);
    font-weight: 600;
}
.exam-book__form {
    background: #fff;
    border: 1px solid rgba(12,47,111,0.1);
    border-radius: 16px;
    padding: 1.5rem 1.35rem 1.2rem;
    box-shadow: 0 16px 36px rgba(12,47,111,0.07);
}
.exam-book__form .contact-form-header h2 {
    color: var(--navy, #0c2f6f) !important;
    font-family: var(--font-display);
    font-size: 1.45rem !important;
}
.exam-book__form .contact-submit-btn {
    background: var(--accent, #e20a16) !important;
    border-radius: 8px !important;
}
.exam-book__form .contact-submit-btn:hover {
    background: #c40912 !important;
}
.exam-book__form .contact-form input:focus,
.exam-book__form .contact-form select:focus,
.exam-book__form .contact-form textarea:focus {
    border-color: var(--navy, #0c2f6f) !important;
    box-shadow: 0 0 0 3px rgba(12,47,111,0.12) !important;
}

@media (max-width: 900px) {
    .page-grid-3,
    .page-grid-2,
    .gallery-grid,
    .contact-layout,
    .exam-hero__grid,
    .exam-about,
    .exam-pricing,
    .exam-book {
        grid-template-columns: 1fr;
    }
    .exam-modules,
    .exam-features,
    .exam-strip__inner {
        grid-template-columns: 1fr 1fr;
    }
    .exam-hero__copy h1 { max-width: none; }
}

@media (max-width: 700px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .page-hero { min-height: 220px; }
    .exam-modules,
    .exam-features,
    .exam-strip__inner {
        grid-template-columns: 1fr;
    }
}
