/* =========================================================
   STUDYBRIDGE
   Premium Global Education Website
   Theme: Navy Blue + Orange + White
   ========================================================= */


/* =========================
   ROOT VARIABLES
   ========================= */

:root {
    --navy: #071b3a;
    --navy-light: #0b2c5c;
    --navy-mid: #103d73;

    --orange: #f58220;
    --orange-light: #ff9b45;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-blue: #eef5fb;

    --text: #17233b;
    --text-light: #68758b;
    --border: #e2e8f0;

    --shadow: 0 15px 45px rgba(7, 27, 58, 0.10);
    --shadow-hover: 0 20px 55px rgba(7, 27, 58, 0.16);

    --radius: 18px;
    --container: 1180px;

    --transition: all 0.3s ease;
}


/* =========================
   RESET
   ========================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================
   COMMON
   ========================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading.light {
    color: var(--white);
}

.section-label {
    display: inline-block;

    color: var(--orange);
    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-heading h2 span,
.hero-content h1 span,
.university-content h2 span,
.loan-content h2 span,
.contact-content h2 span {
    color: var(--orange);
}

.section-heading p {
    color: var(--text-light);
    font-size: 17px;
}

.section-heading.light p {
    color: rgba(255, 255, 255, 0.72);
}


/* =========================
   BUTTONS
   ========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 50px;
    padding: 0 24px;

    border-radius: 10px;
    border: 2px solid transparent;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;

    transition: var(--transition);
}

.btn-primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 8px 25px rgba(245, 130, 32, 0.25);
}

.btn-primary:hover {
    background: #df6d0e;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 130, 32, 0.35);
}

.btn-outline {
    color: var(--navy);
    border-color: rgba(7, 27, 58, 0.2);
    background: var(--white);
}

.btn-outline:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-3px);
}

.btn-light {
    color: var(--navy);
    background: var(--white);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}


/* =========================
   HEADER
   ========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(7, 27, 58, 0.08);

    backdrop-filter: blur(15px);
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    flex-shrink: 0;
}

.logo-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-mid)
        );

    font-size: 13px;
    font-weight: 900;

    box-shadow: 0 7px 18px rgba(7, 27, 58, 0.18);
}

.logo-text {
    display: flex;
    flex-direction: column;

    color: var(--navy);

    font-size: 22px;
    line-height: 1;
}

.logo-text strong {
    font-weight: 800;
}

.logo-text small {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.main-nav > a {
    color: #344158;
    font-size: 13px;
    font-weight: 650;

    white-space: nowrap;

    transition: var(--transition);
}

.main-nav > a:hover {
    color: var(--orange);
}

.main-nav .nav-button {
    padding: 11px 16px;

    color: var(--white);
    background: var(--orange);

    border-radius: 8px;
}

.main-nav .nav-button:hover {
    color: var(--white);
    background: var(--navy);
}


/* MOBILE MENU BUTTON */

.menu-toggle {
    display: none;

    width: 43px;
    height: 43px;

    border: 0;
    border-radius: 9px;

    color: var(--white);
    background: var(--navy);

    font-size: 21px;

    cursor: pointer;
}


/* =========================
   HERO
   ========================= */

.hero {
    position: relative;
    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(245, 130, 32, 0.09),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f9fbfe 0%,
            #ffffff 55%,
            #edf5fb 100%
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -250px;

    border-radius: 50%;

    background: rgba(245, 130, 32, 0.04);
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 60px;

    position: relative;
    z-index: 2;
}


/* HERO CONTENT */

.hero-content {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    margin-bottom: 20px;

    border-radius: 50px;

    color: var(--navy);
    background: rgba(245, 130, 32, 0.10);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.hero-content h1 {
    font-size: clamp(45px, 5.3vw, 72px);
    line-height: 1.03;

    letter-spacing: -2.5px;

    margin-bottom: 25px;

    color: var(--navy);
}

.hero-content p {
    max-width: 620px;

    color: var(--text-light);

    font-size: 18px;
    line-height: 1.75;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;

    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;

    gap: 35px;

    margin-top: 38px;
}

.hero-trust > div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--navy);

    font-size: 19px;
}

.hero-trust span {
    color: var(--text-light);

    font-size: 12px;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    min-height: 510px;

    display: grid;
    place-items: center;
}


/* GLOBE */

.globe {
    position: relative;

    width: min(390px, 80vw);
    aspect-ratio: 1;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #dcebf8 40%,
            #aacbe5 100%
        );

    box-shadow:
        inset -25px -25px 50px rgba(7, 27, 58, 0.12),
        0 30px 70px rgba(7, 27, 58, 0.14);

    border: 10px solid rgba(255, 255, 255, 0.9);
}

.globe::before {
    content: "";

    position: absolute;
    inset: 18px;

    border-radius: 50%;

    border:
        1px solid rgba(7, 27, 58, 0.12);

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 45px,
            rgba(7, 27, 58, 0.07) 46px 47px
        ),
        repeating-linear-gradient(
            0deg,
            transparent 0 45px,
            rgba(7, 27, 58, 0.07) 46px 47px
        );
}

.globe-inner {
    position: relative;
    z-index: 2;

    font-size: 145px;

    filter:
        drop-shadow(
            0 20px 20px rgba(7, 27, 58, 0.12)
        );
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;
    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 13px 17px;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(7, 27, 58, 0.08);

    border-radius: 13px;

    box-shadow: var(--shadow);

    animation: floating 4s ease-in-out infinite;
}

.floating-card strong {
    display: block;

    color: var(--navy);

    font-size: 13px;
}

.floating-card small {
    display: block;

    color: var(--text-light);

    font-size: 10px;
}

.floating-card.card-one {
    left: 0;
    top: 110px;
}

.floating-card.card-two {
    right: 0;
    bottom: 105px;

    animation-delay: 1.5s;
}

.book-visual {
    position: absolute;

    left: 14%;
    bottom: 40px;

    font-size: 62px;

    transform: rotate(-10deg);

    filter:
        drop-shadow(
            0 15px 15px rgba(7, 27, 58, 0.12)
        );
}

.student-visual {
    position: absolute;

    right: 12%;
    top: 35px;

    font-size: 72px;

    filter:
        drop-shadow(
            0 15px 15px rgba(7, 27, 58, 0.12)
        );
}


@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* =========================
   TRUST STRIP
   ========================= */

.trust-strip {
    background: var(--navy);

    padding: 25px 0;

    border-bottom: 3px solid var(--orange);
}

.trust-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.trust-item {
    text-align: center;

    padding: 8px;

    border-right:
        1px solid rgba(255, 255, 255, 0.12);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;

    color: var(--white);

    font-size: 27px;
}

.trust-item span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
}


/* =========================
   FEATURE / WHY US
   ========================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.feature-card {
    position: relative;

    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 8px 30px rgba(7, 27, 58, 0.045);

    transition: var(--transition);

    overflow: hidden;
}

.feature-card::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -30px;
    bottom: -30px;

    border-radius: 50%;

    background: rgba(245, 130, 32, 0.07);
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(245, 130, 32, 0.35);

    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #fff4e9;

    font-size: 25px;
}

.feature-card h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 19px;
}

.feature-card p {
    color: var(--text-light);

    font-size: 14px;
}


/* =========================
   DESTINATIONS
   ========================= */

.section-dark {
    position: relative;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(245, 130, 32, 0.08),
            transparent 28%
        ),
        var(--navy);
}

.destination-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 55px;

    align-items: center;
}


/* MAP */

.world-map {
    position: relative;

    min-height: 440px;

    display: grid;
    place-items: center;
}

.map-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 130, 32, 0.18),
            transparent 65%
        );

    filter: blur(5px);
}

.map-symbol {
    position: relative;
    z-index: 2;

    font-size: 190px;

    filter:
        drop-shadow(
            0 25px 30px rgba(0, 0, 0, 0.2)
        );
}

.map-label {
    position: absolute;
    z-index: 3;

    padding: 7px 12px;

    border-radius: 20px;

    color: var(--white);

    background: rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.16);

    font-size: 11px;
    font-weight: 700;

    backdrop-filter: blur(10px);
}

.label-uk {
    top: 90px;
    right: 25%;
}

.label-usa {
    left: 8%;
    top: 40%;
}

.label-canada {
    left: 20%;
    top: 25%;
}

.label-australia {
    right: 10%;
    bottom: 25%;
}


/* DESTINATION CARDS */

.destination-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.destination-card {
    padding: 22px;

    background:
        rgba(255, 255, 255, 0.065);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    border-radius: 15px;

    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);

    background:
        rgba(255, 255, 255, 0.11);

    border-color:
        rgba(245, 130, 32, 0.6);
}

.destination-card > span {
    font-size: 25px;
}

.destination-card h3 {
    margin-top: 10px;

    color: var(--white);

    font-size: 17px;
}

.destination-card p {
    margin: 4px 0 12px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;
}

.destination-card b {
    color: var(--orange);

    font-size: 12px;
}


/* =========================
   COURSES
   ========================= */

.course-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.course-card {
    position: relative;

    padding: 30px 25px;

    min-height: 290px;

    border-radius: var(--radius);

    background: var(--white);

    border:
        1px solid var(--border);

    box-shadow:
        0 8px 30px rgba(7, 27, 58, 0.05);

    overflow: hidden;

    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);

    border-color:
        rgba(245, 130, 32, 0.35);
}

.course-number {
    position: absolute;

    top: 20px;
    right: 20px;

    color: #e7edf4;

    font-size: 38px;
    font-weight: 900;
}

.course-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 23px;

    border-radius: 15px;

    background: #fff4e9;

    font-size: 26px;
}

.course-card h3 {
    color: var(--navy);

    font-size: 21px;

    margin-bottom: 10px;
}

.course-card p {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 22px;
}

.course-card a {
    color: var(--orange);

    font-size: 13px;
    font-weight: 800;
}


/* =========================
   PROCESS
   ========================= */

.process-section {
    background: var(--off-white);

    overflow: hidden;
}

.process-track {
    display: flex;

    gap: 14px;

    overflow-x: auto;

    padding:
        20px
        10px
        30px;

    scroll-snap-type: x mandatory;
}

.process-track::-webkit-scrollbar {
    height: 8px;
}

.process-track::-webkit-scrollbar-track {
    background: #e8edf3;
    border-radius: 20px;
}

.process-track::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 20px;
}

.process-step {
    flex: 0 0 185px;

    min-height: 155px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 15px;

    box-shadow:
        0 8px 25px rgba(7, 27, 58, 0.05);

    scroll-snap-align: start;

    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);

    border-color: var(--orange);
}

.process-step span {
    color: var(--orange);

    font-size: 30px;
    font-weight: 900;
}

.process-step strong {
    color: var(--navy);

    font-size: 14px;

    line-height: 1.35;
}


/* =========================
   UNIVERSITY EXPLORER
   ========================= */

.university-section {
    background:
        linear-gradient(
            135deg,
            #edf5fb,
            #ffffff
        );
}

.university-wrapper {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    gap: 80px;

    align-items: center;
}

.university-content {
    max-width: 600px;
}

.university-content h2,
.loan-content h2,
.contact-content h2 {
    color: var(--navy);

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.12;

    margin-bottom: 20px;
}

.university-content p,
.loan-content p,
.contact-content > p {
    color: var(--text-light);

    font-size: 17px;

    margin-bottom: 28px;
}


/* SEARCH BOX */

.university-search {
    padding: 35px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);
}

.search-title {
    color: var(--navy);

    font-size: 22px;
    font-weight: 800;

    margin-bottom: 25px;
}

.university-search label {
    display: block;

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;

    margin: 14px 0 6px;
}

.university-search select {
    width: 100%;

    height: 48px;

    padding: 0 13px;

    color: var(--text);

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 9px;

    outline: none;
}

.university-search select:focus {
    border-color: var(--orange);
}

.search-button {
    width: 100%;

    margin-top: 20px;
}

.search-message {
    color: var(--orange);

    font-size: 12px;

    text-align: center;

    margin-top: 12px;
}


/* =========================
   LOAN
   ========================= */

.loan-section {
    background: var(--navy);

    color: var(--white);
}

.loan-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.loan-visual {
    position: relative;

    min-height: 350px;

    display: grid;
    place-items: center;
}

.loan-circle {
    width: 270px;
    height: 270px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #ffffff,
            #dceaf7
        );

    font-size: 105px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}

.loan-card {
    position: absolute;

    right: 5%;
    bottom: 25px;

    padding: 15px 20px;

    color: var(--navy);

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow);

    font-weight: 800;
    font-size: 13px;
}

.loan-content .section-label {
    color: var(--orange);
}

.loan-content h2 {
    color: var(--white);
}

.loan-content p {
    color: rgba(255, 255, 255, 0.68);
}

.loan-content ul {
    list-style: none;

    margin: 25px 0 30px;
}

.loan-content li {
    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 14px;
}


/* =========================
   REVIEWS
   ========================= */

.review-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.review-card {
    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow:
        0 8px 30px rgba(7, 27, 58, 0.045);

    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-hover);
}

.review-stars {
    color: var(--orange);

    letter-spacing: 3px;

    margin-bottom: 18px;
}

.review-card > p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 25px;
}

.review-user {
    display: flex;

    align-items: center;

    gap: 12px;
}

.avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);
    background: var(--navy);

    font-weight: 800;
}

.review-user strong {
    display: block;

    color: var(--navy);

    font-size: 13px;
}

.review-user small {
    display: block;

    color: var(--text-light);

    font-size: 10px;
}


/* =========================
   REFER
   ========================= */

.refer-section {
    padding: 70px 0;
}

.refer-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 50px 60px;

    border-radius: 25px;

    background:
        linear-gradient(
            120deg,
            var(--orange),
            #f99a4b
        );

    box-shadow:
        0 20px 60px rgba(245, 130, 32, 0.20);
}

.refer-box .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.refer-box h2 {
    max-width: 650px;

    color: var(--white);

    font-size: clamp(30px, 4vw, 43px);

    line-height: 1.15;

    margin-bottom: 13px;
}

.refer-box p {
    max-width: 600px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 15px;
}


/* =========================
   FAQ
   ========================= */

.faq-section {
    background: var(--off-white);
}

.faq-list {
    max-width: 850px;

    margin: 0 auto;
}

.faq-list details {
    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 12px;

    margin-bottom: 12px;

    overflow: hidden;
}

.faq-list summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    color: var(--navy);

    font-size: 15px;
    font-weight: 750;

    cursor: pointer;

    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--orange);

    font-size: 22px;

    transition: var(--transition);
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    padding:
        0
        22px
        22px;

    color: var(--text-light);

    font-size: 14px;
}


/* =========================
   CONTACT
   ========================= */

.contact-section {
    background:
        linear-gradient(
            135deg,
            #edf5fb,
            #ffffff
        );
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 0.85fr;

    gap: 70px;

    align-items: center;
}

.contact-points {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 30px;
}

.contact-points > div {
    display: flex;

    align-items: center;

    gap: 15px;
}

.contact-points > div > span {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: var(--white);

    box-shadow:
        0 7px 20px rgba(7, 27, 58, 0.08);

    font-size: 20px;
}

.contact-points strong {
    display: block;

    color: var(--navy);

    font-size: 14px;
}

.contact-points small {
    display: block;

    color: var(--text-light);

    font-size: 11px;
}


/* CONTACT FORM */

.contact-form-wrapper {
    padding: 35px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    color: var(--navy);

    font-size: 25px;

    margin-bottom: 4px;
}

.contact-form-wrapper > form > p {
    color: var(--text-light);

    font-size: 13px;

    margin-bottom: 22px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 12px 13px;

    color: var(--text);

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: 9px;

    outline: none;

    transition: var(--transition);
}

.form-group input,
.form-group select {
    height: 46px;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);

    box-shadow:
        0 0 0 3px rgba(245, 130, 32, 0.08);
}

.form-submit {
    width: 100%;
}

.form-message {
    text-align: center;

    margin-top: 12px;

    color: var(--orange);

    font-size: 13px;
}


/* =========================
   FOOTER
   ========================= */

.site-footer {
    color: rgba(255, 255, 255, 0.72);

    background: #04142d;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 50px;

    padding: 65px 0;
}

.footer-brand p {
    max-width: 350px;

    margin-top: 20px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 13px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-text small {
    color: rgba(255, 255, 255, 0.45);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    color: var(--white);

    margin-bottom: 8px;

    font-size: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--orange);

    padding-left: 3px;
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    min-height: 60px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 11px;
}


/* =========================
   WHATSAPP
   ========================= */

.whatsapp-float {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--white);

    background: #20b85a;

    font-size: 25px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    transition: var(--transition);

    animation:
        whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(32, 184, 90, 0.35);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(32, 184, 90, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(32, 184, 90, 0);
    }
}


/* =========================
   BACK TO TOP
   ========================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 92px;

    z-index: 890;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border: 0;
    border-radius: 10px;

    color: var(--white);
    background: var(--navy);

    font-size: 18px;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--orange);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .main-nav {
        gap: 12px;
    }

    .main-nav > a {
        font-size: 12px;
    }

    .hero-grid {
        gap: 30px;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .course-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .destination-layout {
        grid-template-columns: 1fr;
    }

    .world-map {
        min-height: 300px;
    }

    .university-wrapper,
    .loan-grid,
    .contact-grid {
        gap: 45px;
    }
}


/* =========================================================
   TABLET / MOBILE NAV
   ========================================================= */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px;

        background: var(--white);

        border-bottom:
            1px solid var(--border);

        box-shadow:
            0 20px 30px rgba(7, 27, 58, 0.10);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav > a {
        padding: 13px 10px;

        font-size: 14px;

        border-bottom:
            1px solid #f0f2f5;
    }

    .main-nav .nav-button {
        margin-top: 10px;

        text-align: center;

        border: 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-content {
        max-width: 760px;
        margin: 0 auto;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
    }

    .university-wrapper,
    .loan-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .loan-content {
        text-align: center;
    }

    .loan-content ul {
        display: inline-block;

        text-align: left;
    }

    .contact-content {
        text-align: center;
    }

    .contact-points {
        max-width: 350px;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(92%, 520px);
    }

    .section {
        padding: 70px 0;
    }

    .nav-container {
        min-height: 68px;
    }

    .logo-mark {
        width: 38px;
        height: 38px;
    }

    .logo-text {
        font-size: 19px;
    }

    .logo-text small {
        font-size: 7px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding:
            65px 0
            50px;
    }

    .hero-content h1 {
        font-size: 43px;

        letter-spacing: -1.8px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;

        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 350px;
    }

    .globe {
        width: 280px;
    }

    .globe-inner {
        font-size: 105px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .floating-card.card-one {
        left: 0;
        top: 70px;
    }

    .floating-card.card-two {
        right: 0;
        bottom: 70px;
    }

    .book-visual {
        left: 8%;
        bottom: 15px;

        font-size: 45px;
    }

    .student-visual {
        right: 5%;
        top: 20px;

        font-size: 55px;
    }


    /* TRUST */

    .trust-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }


    /* FEATURES */

    .feature-grid {
        grid-template-columns: 1fr;
    }


    /* DESTINATIONS */

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .world-map {
        min-height: 260px;
    }

    .map-symbol {
        font-size: 135px;
    }


    /* COURSES */

    .course-grid {
        grid-template-columns: 1fr;
    }


    /* PROCESS */

    .process-step {
        flex-basis: 175px;
    }


    /* UNIVERSITY */

    .university-search {
        padding: 25px 20px;
    }


    /* LOAN */

    .loan-circle {
        width: 220px;
        height: 220px;

        font-size: 80px;
    }


    /* REVIEWS */

    .review-grid {
        grid-template-columns: 1fr;
    }


    /* REFER */

    .refer-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .refer-box .btn {
        width: 100%;
    }


    /* CONTACT */

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }

    .footer-bottom .container {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 18px 0;
    }


    /* FLOATING BUTTONS */

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 16px;
        bottom: 16px;
    }

    .back-to-top {
        right: 18px;
        bottom: 80px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-trust {
        gap: 12px;
    }

    .hero-trust strong {
        font-size: 16px;
    }

    .hero-trust span {
        font-size: 10px;
    }

    .globe {
        width: 240px;
    }

    .globe-inner {
        font-size: 90px;
    }

    .floating-card {
        transform: scale(0.88);
    }

    .floating-card.card-one {
        left: -10px;
    }

    .floating-card.card-two {
        right: -10px;
    }
}
/* ================================
   StudyBridge Header Logo
================================ */

.site-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header .logo img {
    width: 270px;
    height: auto;
    display: block;
}

/* ================================
   Mobile Header Logo
================================ */

@media (max-width: 900px) {

    .site-header .logo img {
        width: 210px;
        max-width: 65vw;
    }

}
/* =========================================
   STUDYBRIDGE ENQUIRY SUCCESS POPUP
========================================= */

.enquiry-success-popup {
    display: none;
    position: relative;
    width: 90%;
    max-width: 430px;
    margin: 25px auto 0;
    padding: 24px 18px;
    background: #ffffff;
    border: 2px solid #0B2A4A;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    text-align: center;
    overflow: hidden;
    z-index: 20;
}

/* Show popup only after successful submission */

.enquiry-success-popup.show {
    display: block;
    animation: popupAppear 0.45s ease forwards;
}


/* =========================================
   ANIMATION AREA
========================================= */

.success-animation {
    position: relative;
    height: 75px;
    width: 100%;
    overflow: hidden;
    margin-bottom: 8px;
}


/* Dashed flight path */

.success-animation::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    top: 43px;
    border-top: 2px dashed #F47B20;
}


/* Airplane */

.success-plane {
    position: absolute;
    left: -55px;
    top: 25px;
    font-size: 36px;
    opacity: 0;
    z-index: 3;
}


/* Graduation cap */

.success-cap {
    position: absolute;
    right: 18px;
    top: 8px;
    font-size: 46px;
    opacity: 0;
    transform: scale(0.5);
    z-index: 3;
}


/* Green check */

.success-check {
    position: absolute;
    right: 70px;
    top: 2px;
    width: 25px;
    height: 25px;
    background: #18A558;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    opacity: 0;
    z-index: 4;
}


/* =========================================
   AIRPLANE FLIGHT
========================================= */

.enquiry-success-popup.show .success-plane {
    animation: flyToGraduation 2.2s ease-in-out forwards;
}


/* =========================================
   GRADUATION CAP
========================================= */

.enquiry-success-popup.show .success-cap {
    animation: graduationAppear 0.6s ease 1.9s forwards;
}


/* =========================================
   CHECK
========================================= */

.enquiry-success-popup.show .success-check {
    animation: checkAppear 0.5s ease 2.35s forwards;
}


/* =========================================
   TEXT
========================================= */

.enquiry-success-popup h3 {
    margin: 5px 0 7px;
    color: #0B2A4A;
    font-size: 20px;
    font-weight: 700;
}

.enquiry-success-popup p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes flyToGraduation {

    0% {
        left: -55px;
        top: 38px;
        opacity: 0;
        transform: rotate(-5deg);
    }

    10% {
        opacity: 1;
    }

    35% {
        top: 10px;
    }

    65% {
        top: 35px;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 75px);
        top: 25px;
        opacity: 0;
        transform: rotate(5deg);
    }
}


@keyframes graduationAppear {

    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-15deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.15) rotate(5deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}


@keyframes checkAppear {

    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    70% {
        opacity: 1;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes popupAppear {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .enquiry-success-popup {
        width: 88%;
        padding: 22px 15px;
        border-radius: 18px;
    }

    .success-animation {
        height: 70px;
    }

    .success-plane {
        font-size: 32px;
    }

    .success-cap {
        font-size: 42px;
        right: 12px;
    }

    .enquiry-success-popup h3 {
        font-size: 18px;
    }

    .enquiry-success-popup p {
        font-size: 13px;
    }
}
/* =========================================
   TALK TO US - PHONE ICON BOX
========================================= */

.contact-point-link {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: inherit;
}

.contact-point-link > span {
    width: 60px;
    height: 60px;
    min-width: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 16px;

    font-size: 28px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Keep text styling consistent */

.contact-point-link strong {
    display: block;
    color: #071A3D;
    font-size: 17px;
}

.contact-point-link small {
    display: block;
    margin-top: 4px;
    color: #64748B;
    font-size: 13px;
}


/* Mobile */

@media (max-width: 600px) {

    .contact-point-link {
        gap: 18px;
    }

    .contact-point-link > span {
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 16px;
        font-size: 28px;
    }

}
/* ==========================================
   SEPARATE LEFT WHATSAPP BUTTON
========================================== */

.studybridge-whatsapp-left {
    position: fixed !important;

    left: 20px !important;
    bottom: 20px !important;

    width: 64px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #25D366 !important;
    color: #ffffff !important;

    border-radius: 50% !important;

    text-decoration: none !important;

    font-size: 34px !important;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;

    z-index: 9999 !important;

    transition: transform 0.25s ease !important;
}

.studybridge-whatsapp-left:hover {
    transform: scale(1.1);
}


/* Small notification dot */

.studybridge-whatsapp-left::after {
    content: "";

    position: absolute;

    top: 2px;
    right: 2px;

    width: 12px;
    height: 12px;

    background: #ff3b30;

    border: 2px solid #ffffff;

    border-radius: 50%;

    animation: whatsappLeftPulse 1.8s infinite;
}

@keyframes whatsappLeftPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .studybridge-whatsapp-left {
        left: 16px !important;
        bottom: 16px !important;

        width: 60px !important;
        height: 60px !important;

        font-size: 31px !important;
    }

}
/* Actual WhatsApp Logo */

.studybridge-whatsapp-left .whatsapp-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studybridge-whatsapp-left .whatsapp-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}
/* Match WhatsApp button size with right-side button */

.studybridge-whatsapp-left {
    width: 60px !important;
    height: 60px !important;
}

.studybridge-whatsapp-left .whatsapp-icon {
    width: 30px;
    height: 30px;
}

.studybridge-whatsapp-left .whatsapp-icon svg {
    width: 30px;
    height: 30px;
}
/* ==========================================
   STUDYBRIDGE - LEFT WHATSAPP BUTTON FIX
========================================== */

.studybridge-whatsapp-left {
    position: fixed !important;

    left: 20px !important;
    bottom: 20px !important;

    /* Smaller outer green circle */
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;

    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: #25D366 !important;
    border-radius: 50% !important;

    box-sizing: border-box !important;

    text-decoration: none !important;

    z-index: 9999 !important;

    /* Keep normal orientation */
    direction: ltr !important;

    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.22) !important;
}


/* ==========================================
   WHATSAPP LOGO
========================================== */

.studybridge-whatsapp-left .whatsapp-icon {
    width: 28px !important;
    height: 28px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    margin: 0 !important;
    padding: 0 !important;

    flex-shrink: 0 !important;

    /* DO NOT MIRROR THE LOGO */
    transform: none !important;
}


.studybridge-whatsapp-left .whatsapp-icon svg {
    width: 28px !important;
    height: 28px !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    /* Normal WhatsApp orientation */
    transform: none !important;

    flex-shrink: 0 !important;
}


/* ==========================================
   RED NOTIFICATION DOT
========================================== */

.studybridge-whatsapp-left::after {
    content: "";

    position: absolute;

    top: 0px;
    right: 0px;

    width: 11px;
    height: 11px;

    background: #ff3b30;

    border: 2px solid #ffffff;

    border-radius: 50%;

    box-sizing: content-box;

    animation: whatsappLeftPulse 1.8s infinite;
}


/* ==========================================
   HOVER
========================================== */

.studybridge-whatsapp-left:hover {
    transform: scale(1.08) !important;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

    .studybridge-whatsapp-left {
        left: 16px !important;
        bottom: 16px !important;

        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
        min-height: 56px !important;
    }

    .studybridge-whatsapp-left .whatsapp-icon {
        width: 28px !important;
        height: 28px !important;
    }

    .studybridge-whatsapp-left .whatsapp-icon svg {
        width: 28px !important;
        height: 28px !important;
    }
}
/* =========================================
   STUDYBRIDGE ACADEMIC VISUAL
   ========================================= */

.academic-visual {
    position: relative;
    min-height: 300px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #eef5fb);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(7, 27, 58, 0.08);
}

/* Soft background circle */
.academic-circle {
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.08);
}

/* Main book */
.academic-book {
    position: relative;
    z-index: 3;
    width: 125px;
    height: 95px;
    border-radius: 12px;
    background: linear-gradient(145deg, #071b3a, #103d73);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    box-shadow: 0 15px 25px rgba(7, 27, 58, 0.25);
    transform: rotate(-5deg);
}

/* Graduation cap */
.academic-cap {
    position: absolute;
    z-index: 4;
    top: 48px;
    right: 65px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 10px 25px rgba(7, 27, 58, 0.14);
    animation: academicFloat 3s ease-in-out infinite;
}

/* Floating information cards */
.academic-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(7, 27, 58, 0.12);
    border: 1px solid #e2e8f0;
}

.academic-card span {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff3e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.academic-card strong {
    display: block;
    color: #071b3a;
    font-size: 13px;
    line-height: 1.2;
}

.academic-card small {
    display: block;
    color: #68758b;
    font-size: 10px;
    margin-top: 3px;
}

.academic-card-one {
    left: 20px;
    bottom: 38px;
}

.academic-card-two {
    right: 18px;
    bottom: 32px;
}

/* Subtle floating animation */
@keyframes academicFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Mobile */
@media (max-width: 900px) {

    .academic-visual {
        min-height: 280px;
        margin-bottom: 30px;
    }

    .academic-cap {
        top: 42px;
        right: 55px;
    }

    .academic-card-one {
        left: 12px;
        bottom: 25px;
    }

    .academic-card-two {
        right: 12px;
        bottom: 20px;
    }
}

@media (max-width: 600px) {

    .academic-visual {
        min-height: 270px;
        border-radius: 22px;
    }

    .academic-book {
        width: 105px;
        height: 80px;
        font-size: 48px;
    }

    .academic-cap {
        top: 35px;
        right: 35px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .academic-card {
        padding: 9px 11px;
        gap: 7px;
    }

    .academic-card span {
        width: 32px;
        height: 32px;
        font-size: 17px;
    }

    .academic-card strong {
        font-size: 11px;
    }

    .academic-card small {
        font-size: 9px;
    }

    .academic-card-one {
        left: 8px;
        bottom: 18px;
    }

    .academic-card-two {
        right: 8px;
        bottom: 15px;
    }
}
/* ==========================================
   STUDYBRIDGE PREMIUM GLOBAL MAP
========================================== */

.world-map {
    position: relative;
    min-height: 440px;

    display: grid;
    place-items: center;

    overflow: hidden;
}

/* Soft orange global glow */
.map-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(245, 130, 32, 0.20),
            rgba(245, 130, 32, 0.06) 45%,
            transparent 70%
        );

    filter: blur(8px);

    animation: globalGlow 4s ease-in-out infinite;
}

/* Globe */
.map-symbol {
    position: relative;
    z-index: 2;

    font-size: 190px;

    line-height: 1;

    filter:
        drop-shadow(
            0 20px 25px rgba(0, 0, 0, 0.25)
        );

    animation: globeFloat 5s ease-in-out infinite;
}

/* Decorative orbit */
.map-orbit {
    position: absolute;

    width: 330px;
    height: 120px;

    border: 1px solid rgba(245, 130, 32, 0.30);

    border-radius: 50%;

    z-index: 1;

    pointer-events: none;
}

.orbit-one {
    transform: rotate(25deg);
}

.orbit-two {
    transform: rotate(-25deg);
}

/* Destination markers */
.map-dot {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 6px 10px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(10px);

    color: var(--white);

    font-size: 11px;
    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);

    white-space: nowrap;
}

.map-dot span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 4px rgba(245, 130, 32, 0.18),
        0 0 15px rgba(245, 130, 32, 0.65);

    animation: mapPulse 2s infinite;
}

.map-dot small {
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

/* Marker positions */

.dot-uk {
    top: 18%;
    right: 25%;
}

.dot-usa {
    top: 42%;
    left: 5%;
}

.dot-canada {
    top: 25%;
    left: 14%;
}

.dot-australia {
    right: 5%;
    bottom: 22%;
}

.dot-ireland {
    top: 31%;
    right: 40%;
}

.dot-europe {
    top: 38%;
    right: 23%;
}

.dot-switzerland {
    top: 48%;
    right: 28%;
}


/* ==========================================
   MAP ANIMATIONS
========================================== */

@keyframes globalGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes globeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes mapPulse {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: 0.65;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ==========================================
   MOBILE GLOBAL MAP
========================================== */

@media (max-width: 600px) {

    .world-map {
        min-height: 350px;
    }

    .map-symbol {
        font-size: 135px;
    }

    .map-glow {
        width: 260px;
        height: 260px;
    }

    .map-orbit {
        width: 260px;
        height: 95px;
    }

    .map-dot {
        padding: 5px 8px;
        font-size: 9px;
    }

    .map-dot small {
        font-size: 9px;
    }

    .map-dot span {
        width: 6px;
        height: 6px;
    }

    .dot-uk {
        top: 16%;
        right: 12%;
    }

    .dot-usa {
        top: 40%;
        left: 2%;
    }

    .dot-canada {
        top: 22%;
        left: 5%;
    }

    .dot-australia {
        right: 2%;
        bottom: 18%;
    }

    .dot-ireland {
        top: 29%;
        right: 35%;
    }

    .dot-europe {
        top: 39%;
        right: 10%;
    }

    .dot-switzerland {
        top: 50%;
        right: 16%;
    }
}

/* ==========================================
   STUDYBRIDGE 3D EARTH GLOBE
========================================== */

#studybridge-globe {
    width: 190px;
    height: 190px;

    border-radius: 50%;
    position: relative;
    overflow: hidden;

    background: #1769aa;

    box-shadow:
        inset -25px -20px 35px rgba(0, 0, 0, 0.55),
        inset 12px 10px 25px rgba(255, 255, 255, 0.18),
        0 20px 40px rgba(0, 0, 0, 0.28);
}

/* Moving Earth map */
#studybridge-globe::before {
    content: "";

    position: absolute;

    top: 0;
    left: -190px;

    width: 570px;
    height: 190px;

    background-image: url("https://upload.wikimedia.org/wikipedia/commons/8/83/Equirectangular_projection_SW.jpg");

    background-size: 570px 190px;
    background-repeat: repeat-x;

    animation: earthSpin 18s linear infinite;
}

/* 3D lighting */
#studybridge-globe::after {
    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 30% 25%,
            rgba(255,255,255,0.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(0,0,0,0.55),
            transparent 60%
        );

    pointer-events: none;
}

@keyframes earthSpin {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(190px);
    }
}
