/* ==========================================================================
   Holiday Vibez — Services pages (.sv / .sa study-abroad / .cc currency)
   ========================================================================== */
.sv-hero { position: relative; background-size: cover; background-position: center; padding: 60px 20px 54px; text-align: center; color: #fff; }
.sv-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,40,160,.88), rgba(0,18,66,.82)); }
.sv-hero-in { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; }
.sv-hero .sv-crumb { font-size: 12px; color: rgba(255,255,255,.85); margin-bottom: 12px; }
.sv-hero .sv-crumb a { color: #fff; text-decoration: none; }
.sv-hero .eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); padding: 6px 15px; border-radius: 50px; margin-bottom: 13px; }
.sv-hero h1 { font-size: clamp(27px, 4.4vw, 42px); font-weight: 800; color: #fff; margin: 0 0 13px; letter-spacing: -.6px; line-height: 1.14; }
.sv-hero h1 span { color: #ffd873; }
.sv-hero p { font-size: clamp(14px, 1.7vw, 16px); color: rgba(255,255,255,.9); line-height: 1.65; margin: 0 auto 22px; max-width: 680px; }
.sv-hero-cta { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; }
.sv-hero-cta .btn { font-size: 14px; font-weight: 700; padding: .68rem 1.5rem; border-radius: 50px; }

.sv-wrap { max-width: 1180px; margin: 0 auto; padding: 44px 20px 64px; }
.sv-head { text-align: center; margin-bottom: 30px; }
.sv-sec { margin-bottom: 34px; }
.sv-sec-h { font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; color: var(--hv-ink); margin: 0 0 8px; letter-spacing: -.4px; }
.sv-sec-h.center { text-align: center; }
.sv-sec-sub { font-size: 1rem; color: var(--hv-muted); line-height: 1.7; max-width: 720px; margin: 0 0 20px; }
.sv-sec-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Services index cards */
.sv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 900px) { .sv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sv-grid { grid-template-columns: 1fr; } }
.sv-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hv-line); border-radius: 16px; padding: 1.7rem 1.5rem; text-decoration: none; box-shadow: var(--hv-shadow-sm); transition: transform .22s, box-shadow .22s; }
.sv-card:hover { transform: translateY(-6px); box-shadow: var(--hv-shadow-lg); }
.sv-card-ico { width: 54px; height: 54px; border-radius: 14px; background: var(--hv-grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; box-shadow: var(--hv-shadow-primary); }
.sv-card h3 { font-size: 1.12rem; font-weight: 800; color: var(--hv-ink); margin: 0 0 .4rem; }
.sv-card p { font-size: .9rem; color: var(--hv-muted); line-height: 1.6; margin: 0 0 .9rem; flex: 1; }
.sv-card-go { font-size: .9rem; font-weight: 800; color: var(--hv-primary); }
.sv-card:hover .sv-card-go { color: var(--hv-accent-2); }

/* Study-abroad destination tiles */
.sa-dests { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .sa-dests { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sa-dests { grid-template-columns: 1fr 1fr; } }
.sa-dest { position: relative; height: 190px; border-radius: 15px; overflow: hidden; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--hv-shadow-sm); }
.sa-dest::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(2,4,28,.82) 100%); }
.sa-dest-body { position: relative; z-index: 2; padding: 14px; }
.sa-dest-name { font-size: 1.15rem; font-weight: 800; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.5); display: block; margin-bottom: 8px; }
.sa-dest-btn { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: #1f2937; background: var(--hv-accent); padding: 5px 12px; border-radius: 50px; text-decoration: none; }
.sa-dest-btn:hover { background: #fff; color: var(--hv-primary); }

/* Two-column feature (scholarship / loans) */
.sa-two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 760px) { .sa-two { grid-template-columns: 1fr; } }
.sa-feat { background: #fff; border: 1px solid var(--hv-line); border-radius: 16px; padding: 1.6rem; box-shadow: var(--hv-shadow-sm); }
.sa-feat-ico { font-size: 2rem; color: var(--hv-accent-2); margin-bottom: .5rem; }
.sa-feat h3 { font-size: 1.2rem; font-weight: 800; color: var(--hv-ink); margin: 0 0 .5rem; }
.sa-feat ul { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .5rem; }
.sa-feat li { font-size: .92rem; color: var(--hv-body); line-height: 1.5; display: flex; gap: 8px; }
.sa-feat li i { color: #16a34a; margin-top: 2px; }

/* Test-prep logo row */
.sa-testprep { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.sa-tp { width: 150px; height: 82px; background: #fff; border: 1px solid var(--hv-line); border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 14px; box-shadow: var(--hv-shadow-sm); }
.sa-tp img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Eligibility CTA cards (→ Vibedu) */
.sa-elig { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 820px) { .sa-elig { grid-template-columns: 1fr; } }
.sa-elig-card { background: #f4f7ff; border: 1px solid #dbe4ff; border-radius: 16px; padding: 1.4rem; text-align: center; }
.sa-elig-ico { font-size: 1.9rem; color: var(--hv-primary); margin-bottom: .5rem; }
.sa-elig-card h4 { font-size: 1.02rem; font-weight: 800; color: var(--hv-ink); margin: 0 0 .4rem; }
.sa-elig-card p { font-size: .85rem; color: var(--hv-muted); line-height: 1.55; margin: 0 0 .9rem; }
.sa-elig-btn { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 700; color: #fff; background: var(--hv-primary); padding: .55rem 1.1rem; border-radius: 50px; text-decoration: none; }
.sa-elig-btn:hover { background: var(--hv-accent-2); color: #fff; }

/* Vibedu partner band */
.sa-vibedu { background: var(--hv-grad); border-radius: 20px; padding: clamp(1.8rem, 4vw, 2.6rem); display: grid; grid-template-columns: 220px 1fr auto; gap: 1.6rem; align-items: center; }
@media (max-width: 780px) { .sa-vibedu { grid-template-columns: 1fr; text-align: center; gap: 1rem; } }
.sa-vibedu-logo { width: 200px; max-width: 100%; height: auto; }
.sa-vibedu h3 { color: #fff; font-size: 1.35rem; font-weight: 800; margin: 0 0 .4rem; }
.sa-vibedu p { color: rgba(255,255,255,.88); font-size: .95rem; line-height: 1.6; margin: 0; }
.sa-vibedu .btn { white-space: nowrap; }
@media (max-width: 780px) { .sa-vibedu .sa-vibedu-logo { margin: 0 auto; } }

/* ---- Currency converter ---- */
.cc-box { max-width: 640px; margin: 0 auto; background: #fff; border: 1px solid var(--hv-line); border-radius: 20px; box-shadow: var(--hv-shadow-lg); padding: clamp(1.4rem, 3vw, 2.2rem); }
.cc-amount { margin-bottom: 1rem; }
.cc-pair { display: grid; grid-template-columns: 1fr 48px 1fr; gap: .8rem; align-items: end; }
@media (max-width: 520px) { .cc-pair { grid-template-columns: 1fr; } .cc-swap { justify-self: center; } }
.cc-field label { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--hv-muted); margin-bottom: .35rem; }
.cc-field input, .cc-field select { width: 100%; border: 1.5px solid var(--hv-line); border-radius: 11px; padding: .8rem .85rem; font-size: 1.05rem; font-weight: 600; color: var(--hv-ink); background: #fff; }
.cc-field input:focus, .cc-field select:focus { outline: none; border-color: var(--hv-primary); box-shadow: 0 0 0 3px rgba(0,65,208,.12); }
.cc-swap { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--hv-grad); color: #fff; font-size: 1.1rem; cursor: pointer; transition: transform .3s; align-self: end; margin-bottom: 2px; box-shadow: var(--hv-shadow-primary); }
.cc-swap:hover { transform: rotate(180deg); }
.cc-result { margin-top: 1.5rem; text-align: center; background: #f4f7ff; border: 1px solid #dbe4ff; border-radius: 14px; padding: 1.4rem 1.2rem; }
.cc-result-sub { font-size: .95rem; font-weight: 600; color: var(--hv-muted); margin-bottom: .35rem; }
.cc-result-main { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; color: var(--hv-ink); line-height: 1.1; }
.cc-result-rate { font-size: .88rem; color: var(--hv-muted); margin-top: .5rem; }
.cc-updated { font-size: .78rem; color: var(--hv-muted); text-align: center; margin-top: .8rem; }
.cc-quick { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1rem; }
.cc-quick button { font-size: .8rem; font-weight: 700; color: var(--hv-primary); background: #eef3ff; border: none; border-radius: 50px; padding: .4rem .9rem; cursor: pointer; }
.cc-quick button:hover { background: var(--hv-primary); color: #fff; }
.cc-terms { max-width: 760px; margin: 1.8rem auto 0; background: #fff8e6; border: 1px solid #ffe6a3; border-radius: 14px; padding: 1.1rem 1.3rem; }
.cc-terms h4 { font-size: .95rem; font-weight: 800; color: var(--hv-ink); margin: 0 0 .5rem; display: flex; align-items: center; gap: 8px; }
.cc-terms h4 i { color: var(--hv-accent-2); }
.cc-terms ul { margin: 0; padding-left: 1.1rem; }
.cc-terms li { font-size: .84rem; color: var(--hv-muted); line-height: 1.65; }

/* ---- Visa checklists ---- */
.vc-group-h { font-size: clamp(2rem, 4.6vw, 2.9rem); line-height: 1.1; letter-spacing: -.8px; font-weight: 800; color: var(--hv-ink); margin: 3rem 0 1.4rem; display: flex; align-items: center; gap: 12px; }
.vc-group-h:first-of-type { margin-top: 1rem; }
.vc-group-h i { color: var(--hv-primary); font-size: .8em; }
.vc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 860px) { .vc-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (max-width: 520px) { .vc-grid { grid-template-columns: 1fr; } }
.vc-card { position: relative; display: flex; align-items: stretch; gap: 0; text-align: left; border: 1px solid var(--hv-line); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: var(--hv-shadow-sm); cursor: pointer; padding: 0; transition: transform .2s, box-shadow .2s; }
.vc-card:hover { transform: translateY(-4px); box-shadow: var(--hv-shadow-lg); }
.vc-thumb { flex: 0 0 100px; width: 100px; min-height: 116px; background-size: cover; background-position: center; position: relative; }
.vc-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,40,160,.25), rgba(0,18,66,.15)); }
.vc-flag { position: absolute; z-index: 2; left: 8px; top: 8px; font-size: 1.3rem; }
.vc-body { flex: 1; padding: 15px 16px; display: flex; flex-direction: column; }
.vc-country { font-size: 1.05rem; font-weight: 800; color: var(--hv-ink); line-height: 1.25; }
.vc-visa { font-size: .8rem; color: var(--hv-muted); margin: 4px 0 12px; }
.vc-dl { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 800; color: var(--hv-primary); }
.vc-card:hover .vc-dl { color: var(--hv-accent-2); }

/* Download modal */
.vc-modal .modal-content { border: none; border-radius: 16px; overflow: hidden; }
.vc-modal .modal-header { background: var(--hv-grad); color: #fff; border: none; padding: 1rem 1.25rem; }
.vc-modal .modal-title { font-weight: 800; font-size: 1.05rem; }
.vc-modal .btn-close { filter: invert(1) grayscale(1) brightness(2); }
.vc-modal .modal-body { padding: 1.25rem; }
.vc-modal label { font-size: .8rem; font-weight: 700; color: var(--hv-muted); margin-bottom: .3rem; display: block; }
.vc-modal .form-control { border: 1.5px solid var(--hv-line); border-radius: 10px; padding: .65rem .8rem; font-size: .95rem; }
.vc-modal .form-control:focus { border-color: var(--hv-primary); box-shadow: 0 0 0 3px rgba(0,65,208,.12); }
.vc-phone { display: flex; }
.vc-phone .cc { background: #f4f7ff; border: 1.5px solid var(--hv-line); border-right: none; border-radius: 10px 0 0 10px; padding: .65rem .7rem; font-weight: 700; color: var(--hv-ink); font-size: .95rem; }
.vc-phone .form-control { border-radius: 0 10px 10px 0; }
.vc-modal .vc-submit { width: 100%; margin-top: 1rem; }
.vc-modal .vc-fine { font-size: .74rem; color: var(--hv-muted); margin-top: .7rem; line-height: 1.5; }
.vc-thanks { text-align: center; padding: .5rem 0; }
.vc-thanks i { font-size: 2.4rem; color: #16a34a; }
.vc-thanks h4 { font-weight: 800; color: var(--hv-ink); margin: .5rem 0 .3rem; font-size: 1.1rem; }
.vc-thanks p { color: var(--hv-muted); font-size: .9rem; margin: 0; }
