/* ============================================================
   GLORIES INTERNATIONAL SCHOOL — Public CSS
   ============================================================ */
:root {
    --navy:        #1B3A6B;
    --navy-mid:    #152E55;
    --royal:       #C4973A;
    --gold:        #C4973A;
    --gold-light:  #D9BA6B;
    --white:       #FFFFFF;
    --light-bg:    #F5F0E8;
    --text-dark:   #1A1209;
    --text-mid:    #4A3F30;
    --text-light:  #7A6D5A;
    --radius:      14px;
    --shadow:      0 8px 32px rgba(27,58,107,.2);
    --glass-bg:    rgba(255,255,255,.07);
    --glass-border:rgba(255,255,255,.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--light-bg);
    -webkit-font-smoothing: antialiased;
}

/* ---- COMING SOON PAGE ---- */
body.page-coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
    background: #080502;
}

/* Animated gradient bg */
body.page-coming-soon::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(196,151,58,.20) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 90%, rgba(27,58,107,.28) 0%, transparent 55%),
        radial-gradient(ellipse 50% 70% at 70% 20%, rgba(196,151,58,.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: bgPulse 12s ease-in-out infinite alternate;
}
@keyframes bgPulse {
    0%   { opacity:.7; }
    100% { opacity:1; }
}

/* Stars */
body.page-coming-soon::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,255,255,.7) 0%, transparent 100%),
        radial-gradient(1px 1px   at 75% 12%, rgba(255,255,255,.5) 0%, transparent 100%),
        radial-gradient(1px 1px   at 45% 78%, rgba(255,255,255,.45) 0%, transparent 100%),
        radial-gradient(2px 2px   at 8%  62%, rgba(196,151,58,.55) 0%, transparent 100%),
        radial-gradient(1px 1px   at 92% 68%, rgba(255,255,255,.35) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 30% 8%, rgba(255,255,255,.6) 0%, transparent 100%),
        radial-gradient(1px 1px   at 60% 40%, rgba(196,151,58,.38) 0%, transparent 100%),
        radial-gradient(1px 1px   at 85% 35%, rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(2px 2px   at 55% 88%, rgba(196,151,58,.30) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Floating orbs */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 28s ease-in-out infinite;
}
.orb-1 { width:600px; height:600px; background:rgba(196,151,58,.12); top:-200px; left:-200px; animation-delay:0s; }
.orb-2 { width:450px; height:450px; background:rgba(27,58,107,.20);  bottom:-120px; right:-120px; animation-delay:-11s; }
.orb-3 { width:320px; height:320px; background:rgba(196,151,58,.09); top:35%; right:8%; animation-delay:-20s; }

@keyframes orbFloat {
    0%,100%{ transform: translate(0,0)      scale(1); }
    33%    { transform: translate(50px,-50px) scale(1.06); }
    66%    { transform: translate(-25px,35px) scale(.94); }
}

/* ── Main Card ── */
.cs-card {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,.065);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid rgba(255,255,255,.14);
    border-top-color: rgba(255,255,255,.25);
    border-radius: 32px;
    padding: 52px 48px 48px;
    max-width: 660px;
    width: 100%;
    text-align: center;
    box-shadow:
        0 40px 100px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 1px 0 rgba(255,255,255,.18) inset;
    animation: cardIn .95s cubic-bezier(.16,1,.3,1) both;
}
@keyframes cardIn {
    from { opacity:0; transform: translateY(48px) scale(.95); }
    to   { opacity:1; transform: translateY(0)    scale(1); }
}

/* ── School Emblem ── */
.school-emblem {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, #D9BA6B, #C4973A, #8B6914);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 10px rgba(196,151,58,.15),
        0 0 50px rgba(196,151,58,.30),
        0 12px 30px rgba(0,0,0,.5);
    animation: emblemPulse 3.5s ease-in-out infinite;
    overflow: hidden;
}
/* When a real logo image is shown, remove gold fill */
.school-emblem.has-logo {
    background: rgba(0,0,0,.35);
    box-shadow:
        0 0 0 8px rgba(196,151,58,.12),
        0 0 40px rgba(196,151,58,.22),
        0 8px 24px rgba(0,0,0,.55);
}
.school-emblem.has-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

@keyframes emblemPulse {
    0%,100%{ box-shadow: 0 0 0 10px rgba(196,151,58,.15), 0 0 50px rgba(196,151,58,.30), 0 12px 30px rgba(0,0,0,.5); }
    50%    { box-shadow: 0 0 0 20px rgba(196,151,58,.06), 0 0 75px rgba(196,151,58,.42), 0 12px 30px rgba(0,0,0,.5); }
}
.school-emblem svg { width:54px; height:54px; }

/* ── Typography ── */
.cs-tagline {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    opacity: .9;
}
.cs-name-en {
    font-size: clamp(1.7rem, 4.5vw, 2.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.cs-name-ar {
    font-size: clamp(1.15rem, 3vw, 1.55rem);
    font-weight: 700;
    color: rgba(255,255,255,.65);
    margin-top: 8px;
    direction: rtl;
}

/* ── Contact Info ── */
.cs-contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
    margin: 20px 0 0;
    padding: 14px 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
}
.cs-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .84rem;
    color: rgba(255,255,255,.78);
    padding: 4px 16px;
    white-space: nowrap;
}
.cs-contact-item + .cs-contact-item {
    border-inline-start: 1px solid rgba(255,255,255,.15);
}
.cs-contact-item i {
    color: var(--gold);
    font-size: .82rem;
    flex-shrink: 0;
}
.cs-contact-item a,
.cs-contact-item a:visited,
.cs-contact-item a:link {
    color: rgba(255,255,255,.85) !important;
    text-decoration: none !important;
    transition: color .2s;
}
.cs-contact-item a:hover {
    color: var(--gold-light) !important;
}
.cs-email {
    color: rgba(255,255,255,.85);
    transition: color .2s;
}
.cs-email:hover {
    color: var(--gold-light);
}

/* ── Divider ── */
.cs-divider {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 28px auto 24px;
    border-radius: 2px;
}

/* ── Coming Soon Badge ── */
.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(196,151,58,.18), rgba(196,151,58,.07));
    border: 1px solid rgba(196,151,58,.40);
    color: var(--gold-light);
    padding: 7px 22px;
    border-radius: 100px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 0 20px rgba(196,151,58,.12);
}

/* ── Subtitle ── */
.cs-subtitle {
    margin: 0 0 32px;
    color: rgba(255,255,255,.48);
    font-size: .95rem;
    line-height: 1.7;
}

/* ── CTA Buttons ── */
.cs-buttons { display: flex; flex-direction: column; gap: 12px; }

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #D9BA6B, #C4973A, #8B6914);
    color: #1A1209;
    font-weight: 800;
    font-size: 1.05rem;
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 8px 28px rgba(196,151,58,.45), 0 2px 6px rgba(0,0,0,.35);
    letter-spacing: .01em;
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(196,151,58,.55), 0 2px 8px rgba(0,0,0,.35);
    color: #1A1209;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 30px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.2);
    text-decoration: none !important;
    transition: all .25s ease;
}
.btn-outline-light:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.45);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(196,151,58,.08);
    color: #D9BA6B;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 36px;
    border-radius: 100px;
    border: 1.5px solid rgba(196,151,58,.40);
    text-decoration: none !important;
    cursor: pointer;
    transition: all .25s ease;
    letter-spacing: .01em;
}
.btn-outline-gold:hover {
    background: rgba(196,151,58,.16);
    border-color: rgba(196,151,58,.70);
    color: #D9BA6B;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196,151,58,.22);
}

/* ── Language Toggle ── */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 100;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: .84rem;
    font-weight: 700;
    text-decoration: none !important;
    backdrop-filter: blur(12px);
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.lang-toggle:hover {
    background: rgba(255,255,255,.18);
    color: #fff;
    transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .cs-contact-item { font-size: .78rem; padding: 4px 10px; }
    .cs-contact-item + .cs-contact-item { border-inline-start: none; border-top: 1px solid rgba(255,255,255,.12); }
    .cs-contact-info { flex-direction: column; gap: 2px; }
}

/* ---- FORMS (Admission / Jobs) ---- */
body.page-form {
    background: linear-gradient(150deg, #080502 0%, #0D1F40 60%, #0A0703 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.form-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 36px;
    color: var(--white);
}
.form-header .school-logo-sm {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 30px rgba(196,151,58,.28);
}
.form-header .school-logo-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.form-header .school-logo-sm:has(img) {
    background: rgba(0,0,0,.3);
    box-shadow: 0 0 20px rgba(196,151,58,.18);
}
.form-header h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 6px; }
.form-header p  { color: rgba(255,255,255,.6); font-size: .9rem; }

.form-card {
    background: rgba(255,255,255,.97);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-section-title {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--royal);
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 8px;
    margin: 24px 0 20px;
}

.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: .88rem;
    color: var(--text-dark);
    margin-bottom: 7px;
}
.form-label .req { color: #E53E3E; margin-inline-start: 3px; }
.form-control, .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #CBD5E0;
    border-radius: 10px;
    font-size: .95rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #FAFBFC;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    appearance: auto;
}
.form-control:focus, .form-select:focus {
    border-color: var(--royal);
    box-shadow: 0 0 0 3px rgba(196,151,58,.18);
    background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 100px; }

/* Contact type radio */
.contact-radio-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.contact-radio-item { position: relative; }
.contact-radio-item input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.contact-radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1.5px solid #CBD5E0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-mid);
    transition: all .2s;
    background: #FAFBFC;
}
.contact-radio-item input[type="radio"]:checked + .contact-radio-label {
    border-color: var(--royal);
    background: rgba(196,151,58,.08);
    color: var(--royal);
}

/* Age display */
.age-display {
    display: none;
    margin-top: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(196,151,58,.10), rgba(217,186,107,.08));
    border: 1px solid rgba(196,151,58,.25);
    border-radius: 8px;
    font-size: .9rem;
    color: var(--royal);
    font-weight: 600;
}
.age-display.visible { display: block; }

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--navy-mid), var(--royal));
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 10px;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(13,27,42,.25);
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13,27,42,.35);
}

/* Alert */
.alert-success-box {
    background: linear-gradient(135deg, #F0FFF4, #C6F6D5);
    border: 1.5px solid #68D391;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    color: #276749;
}
.alert-success-box .success-icon { font-size: 2.5rem; margin-bottom: 10px; }
.alert-success-box h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }

/* Nav bar (form pages) */
.form-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(4,12,24,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 36px;
}
.form-nav .brand { color: var(--white); font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.form-nav .nav-links { display: flex; gap: 6px; }
.form-nav .nav-link-item {
    color: rgba(255,255,255,.7);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
}
.form-nav .nav-link-item:hover { background: rgba(255,255,255,.1); color: var(--white); }
.form-nav .nav-lang {
    color: var(--gold);
    padding: 6px 14px;
    border: 1px solid rgba(196,151,58,.35);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}
.form-nav .nav-lang:hover { background: rgba(196,151,58,.12); color: var(--gold-light); }

/* ---- JOBS PAGE ---- */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.job-card {
    background: rgba(255,255,255,.97);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(13,27,42,.12);
    border: 1.5px solid rgba(255,255,255,.6);
    transition: all .3s;
    display: flex;
    flex-direction: column;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(13,27,42,.18); }
.job-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-mid);
    margin-bottom: 12px;
}
.job-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.7; flex: 1; }
.job-card .apply-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #D9BA6B, #C4973A, #8B6914);
    color: #1A1209;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all .2s;
    text-align: center;
    box-shadow: 0 4px 14px rgba(196,151,58,.35);
}
.job-card .apply-btn:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(196,151,58,.48); color: #1A1209; }
.job-card .apply-btn.apply-btn-outline {
    background: rgba(196,151,58,.08);
    color: var(--gold-light);
    box-shadow: none;
    border: 1.5px solid rgba(196,151,58,.4);
}
.job-card .apply-btn.apply-btn-outline:hover {
    background: rgba(196,151,58,.18);
    box-shadow: 0 4px 14px rgba(196,151,58,.2);
    color: var(--gold-light);
    transform: scale(1.03);
}
.job-reqs {
    margin-top: 12px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: .85rem;
    color: var(--text-mid);
}

/* ---- RTL Support ---- */
[dir="rtl"] .lang-toggle { right: auto; left: 24px; }
[dir="rtl"] .form-nav .nav-links { flex-direction: row-reverse; }

/* ---- Responsive ---- */
@media (max-width: 640px) {
    .form-card { padding: 24px 16px; }
    .contact-radio-group { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
    .contact-radio-label { padding: 10px 6px; font-size: .82rem; gap: 4px; }
    .form-nav { padding: 10px 14px; gap: 8px; }
    .form-nav .brand { font-size: .85rem; max-width: 150px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .form-nav .nav-link-item { padding: 6px 10px; font-size: .8rem; }
    .form-nav .nav-lang { padding: 5px 10px; font-size: .75rem; }
    .form-header h1 { font-size: 1.4rem; }
    .jobs-grid { grid-template-columns: 1fr; }
}

/* ---- Animations ---- */
.fade-in { animation: fadeIn .5s ease both; }
@keyframes fadeIn { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }

/* 2-column form grid — collapses to 1 on mobile */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 520px) {
    .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .contact-radio-group { grid-template-columns: 1fr; gap: 6px; }
    .contact-radio-label { padding: 12px; }
}

/* Landing page mobile — allow scroll, fix padding */
@media (max-width: 700px) {
    body.page-coming-soon {
        align-items: flex-start;
        padding: 70px 14px 28px;
        overflow-y: auto;
    }
    .cs-card { padding: 32px 18px 26px; border-radius: 22px; }
    .cs-stack { max-width: 100%; }
    .lang-toggle { top: 14px; right: 14px; padding: 7px 14px; font-size: .8rem; }
    [dir="rtl"] .lang-toggle { left: 14px; right: auto; }
    .orb-1 { width:300px; height:300px; }
    .orb-2 { width:240px; height:240px; }
    .orb-3 { display: none; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--royal); border-radius: 4px; }

/* ── CS Stack (landing page wrapper) ── */
.cs-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 660px;
    gap: 0;
}

/* ── Jobs CTA Card ── */
.jobs-cta-card {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    margin-top: 14px;
    padding: 20px 26px;
    background: rgba(196,151,58,.06);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(196,151,58,.22);
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(0,0,0,.28);
    animation: cardIn .95s .18s cubic-bezier(.16,1,.3,1) both;
}
.jobs-cta-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(196,151,58,.14);
    border: 1px solid rgba(196,151,58,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #D9BA6B;
}
.jobs-cta-text { flex: 1; text-align: start; }
.jobs-cta-title {
    font-size: .98rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}
.jobs-cta-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.48);
    line-height: 1.45;
}
.btn-jobs-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    background: rgba(196,151,58,.12);
    border: 1px solid rgba(196,151,58,.35);
    color: #D9BA6B;
    font-weight: 700;
    font-size: .86rem;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all .22s;
    flex-shrink: 0;
}
.btn-jobs-cta:hover {
    background: rgba(196,151,58,.22);
    border-color: rgba(196,151,58,.58);
    color: #D9BA6B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196,151,58,.22);
}
@media (max-width: 520px) {
    .jobs-cta-card { flex-direction: column; text-align: center; padding: 20px 18px; gap: 14px; }
    .jobs-cta-text { text-align: center; }
    .btn-jobs-cta { width: 100%; justify-content: center; }
}
