@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #300066;
    --primary-light: #4c1d95;
    --accent: #7b1fa2;
    --accent-hover: #6a1b9a;
    --teal: #a855f7;
    --bg: #ffffff;
    --bg-light: #fdf4ff;
    --bg-dark: #1e003d;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(48, 0, 102, .08);
    --shadow-lg: 0 12px 40px rgba(48, 0, 102, .12);
    --transition: all .3s ease
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.3;
    font-weight: 700
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition)
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px)
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(245, 158, 11, .3)
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, .4)
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5)
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary)
}

.btn-dark {
    background: var(--primary);
    color: #fff
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px)
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(123, 31, 162, .08);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--text)
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 48px
}

.text-center {
    text-align: center
}

section {
    padding: clamp(60px, 10vw, 100px) 0;
}

section.hero {
    padding: 0 0;
}

/* TOP BAR */
.topbar {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .8);
    padding: 8px 0;
    font-size: .82rem
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px
}

.topbar-left {
    display: flex;
    gap: 20px;
    align-items: center
}

.topbar-left a {
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: 6px
}

.topbar-left a:hover {
    color: var(--accent)
}

.topbar-right {
    display: flex;
    gap: 12px
}

.topbar-right a {
    color: rgba(255, 255, 255, .7);
    font-size: 1rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    transition: var(--transition)
}

.topbar-right a:hover {
    background: var(--accent);
    color: #fff
}

/* NAVBAR */
.navbar {
    background: var(--bg);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition)
}

.navbar.scrolled {
    background: var(--bg);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0
}

.logo-img {
    height: 48px;
    /* width: 48px; */
    /* border-radius: 50%; */
    /* object-fit: cover; */
    /* border: 2px solid rgba(255, 255, 255, .2) */
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: #fff
}

.logo-text span {
    color: var(--accent)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center
}

.nav-links>li {
    position: relative
}

.nav-links>li>a {
    color: var(--primary);
    padding: 24px 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition)
}

.nav-links>li>a:hover,
.nav-links>li:hover>a {
    color: var(--accent)
}

.nav-links>li.nav-cta>a:hover,
.nav-links>li.nav-cta:hover>a {
    color: #fff !important;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    min-width: 220px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 100
}

.nav-links>li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--bg);
    font-size: .88rem;
}

.dropdown a:hover {
    background: var(--bg-light);
    color: var(--primary-light);
    padding-left: 24px
}

.nav-cta {
    margin-left: 16px
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition)
}

/* HERO */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease
}

.hero-slide.active {
    opacity: 1
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .92), rgba(15, 37, 87, .8));
    z-index: 1
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 80px 0;
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
    line-height: 1.2
}

.hero-content h1 span {
    color: var(--accent);
    display: block
}

.hero-content p {
    font-size: 1.1rem;
    opacity: .85;
    margin-bottom: 32px;
    max-width: 540px
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px
}

.hero-indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: var(--transition)
}

.hero-indicators span.active {
    background: var(--accent);
    transform: scale(1.2)
}

/* STATS */
.stats {
    background: var(--bg-dark);
    padding: 48px 0;
    position: relative;
    margin-top: -1px
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
    gap: 32px;
    text-align: center
}

.stat-item {
    padding: 20px;
    color: #fff
}

.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px
}

.stat-label {
    font-size: .85rem;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: 1px
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .1)
}

.stat-item {
    position: relative
}

.stat-item:last-child::after {
    display: none
}

/* ABOUT */
.about {
    padding: 100px 0
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(40px, 8vw, 80px);
    align-items: center
}

.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover
}

.about-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(transparent, rgba(15, 37, 87, .3))
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2
}

.about-text h2 {
    margin-bottom: 20px
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: .9rem
}

.about-feature .icon {
    width: 36px;
    height: 36px;
    background: rgba(123, 31, 162, .08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0
}

/* DESTINATIONS */
.destinations {
    padding: 100px 0;
    background: var(--bg-light)
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 24px
}

.dest-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    position: relative
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.dest-card-img {
    height: 180px;
    overflow: hidden;
    position: relative
}

.dest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.dest-card:hover .dest-card-img img {
    transform: scale(1.08)
}

.dest-card-img .flag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 2rem
}

.dest-card-overlay-title {
    display: none;
}

.dest-card-body {
    padding: 20px
}

.dest-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 6px
}

.dest-card-body p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.5
}

.dest-card-body .dest-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: .85rem;
    margin-top: 12px
}

.dest-card-body .dest-link:hover {
    gap: 10px
}

/* SERVICES */
.services {
    padding: 100px 0
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 28px
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--teal));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(26, 86, 219, .08), rgba(6, 182, 212, .08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-light)
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px
}

.service-card p {
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.6
}

/* PROCESS */
.process {
    padding: 100px 0;
    background: var(--bg-dark);
    color: #fff
}

.process .section-tag {
    background: #fff;
    color: var(--accent)
}

.process .section-title {
    color: #fff
}

.process .section-subtitle {
    color: rgba(255, 255, 255, .6)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 32px;
    position: relative
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--teal));
    opacity: .3
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1
}

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f97316);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 20px rgba(245, 158, 11, .3)
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px
}

.process-step p {
    font-size: .85rem;
    opacity: .6;
    line-height: 1.5
}

/* UNIVERSITIES */
.universities {
    padding: 80px 0;
    background: var(--bg-light)
}

.uni-track {
    overflow: hidden;
    position: relative;
    padding: 20px 0
}

.uni-slider {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite
}

.uni-logo {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
    font-weight: 700;
    color: var(--text-light);
    font-size: .75rem;
    text-align: center
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* TESTIMONIALS */
.testimonials {
    padding: 100px 0
}

.test-slider {
    position: relative;
    overflow: hidden
}

.test-track {
    display: flex;
    transition: transform .5s ease
}

.test-card {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 28px;
    padding: 0 4px
}

.test-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative
}

.test-item::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    color: rgba(26, 86, 219, .08);
    font-family: serif;
    line-height: 1
}

.test-stars {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: .9rem
}

.test-item p {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem
}

.test-info h4 {
    font-size: .9rem;
    margin-bottom: 2px
}

.test-info span {
    font-size: .78rem;
    color: var(--text-light)
}

.test-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px
}

.test-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center
}

.test-nav button:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

/* SCHOLARSHIPS */
.scholarships {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), #1e3a8a)
}

.scholarships .section-tag {
    background: #ffffff;
    color: var(--accent)
}

.scholarships .section-title {
    color: #fff
}

.scholarships .section-subtitle {
    color: rgba(255, 255, 255, .6)
}

.scholar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 28px
}

.scholar-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: 36px 28px;
    color: #fff;
    transition: var(--transition)
}

.scholar-card:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-4px)
}

.scholar-icon {
    font-size: 2.4rem;
    margin-bottom: 16px
}

.scholar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px
}

.scholar-card p {
    font-size: .88rem;
    opacity: .7;
    line-height: 1.6
}

/* EVENTS */
.events {
    padding: 100px 0
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 28px
}

.event-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition)
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.event-date-bar {
    background: var(--primary);
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px
}

.event-date-bar .day {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.event-date-bar .month-year {
    font-size: .85rem;
    opacity: .8;
    line-height: 1.3
}

.event-body {
    padding: 24px
}

.event-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px
}

.event-body p {
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 16px
}

.event-body .btn {
    padding: 10px 24px;
    font-size: .85rem
}

/* BLOG */
.blog {
    padding: 100px 0;
    background: var(--bg-light)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
    gap: 28px
}

.blog-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition)
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.blog-img {
    height: 200px;
    overflow: hidden
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition)
}

.blog-card:hover .blog-img img {
    transform: scale(1.06)
}

.blog-body {
    padding: 24px
}

.blog-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(26, 86, 219, .08);
    color: var(--primary-light);
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 10px
}

.blog-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.4
}

.blog-body p {
    font-size: .85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px
}

.blog-meta {
    font-size: .78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px
}

/* FAQ */
.faq {
    padding: 100px 0
}

.faq-list {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition)
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: 0 2px 12px rgba(26, 86, 219, .08)
}

.faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    background: #fff;
    transition: var(--transition)
}

.faq-q:hover {
    color: var(--primary-light)
}

.faq-q .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: .8rem
}

.faq-item.active .faq-q .icon {
    background: var(--primary-light);
    color: #fff;
    transform: rotate(180deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #fff
}

.faq-a-inner {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--text-light);
    line-height: 1.7
}

/* CONTACT/CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark), var(--primary));
    color: #fff;
    text-align: center
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 16px
}

.cta-section p {
    opacity: .7;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.contact {
    padding: 100px 0;
    background: var(--bg-light)
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 48px
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.form-group {
    margin-bottom: 20px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: #fff
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, .1)
}

.form-group textarea {
    height: 100px;
    resize: vertical
}

.contact-info h2 {
    margin-bottom: 20px
}

.contact-info>p {
    color: var(--text-light);
    margin-bottom: 32px
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 86, 219, .08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
    font-size: 1.1rem
}

.info-item h4 {
    font-size: .95rem;
    margin-bottom: 4px
}

.info-item p {
    font-size: .85rem;
    color: var(--text-light)
}

/* FOOTER */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, .7);
    padding: 80px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px
}

.footer-about p {
    font-size: .88rem;
    line-height: 1.7;
    margin-bottom: 20px
}

.footer-socials {
    display: flex;
    gap: 10px
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
    font-size: .9rem
}

.footer-socials a:hover {
    background: var(--accent);
    transform: translateY(-2px)
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: .88rem;
    transition: var(--transition)
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px
}

.footer-contact .item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: .85rem;
    align-items: flex-start
}

.footer-contact .item span:first-child {
    color: var(--accent)
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: .82rem;
    opacity: .5
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-wa 2s infinite
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

/* REGISTER FLOAT - RED GLOSSY CIRCLE */
.register-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5 0%, #b3b3b3 25%, #e8e8e8 50%, #999999 75%, #e0e0e0 100%);
    padding: 6px;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-float:hover {
    transform: scale(1.08);
}

.register-float .btn-content {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 40%, #e62020 0%, #8a0b0b 90%);
    box-shadow: inset 0 -4px 10px rgba(0, 0, 0, 0.6), inset 0 3px 6px rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Glossy reflection */
.register-float .btn-content::before {
    content: '';
    position: absolute;
    top: 2%;
    left: 10%;
    width: 80%;
    height: 45%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
    pointer-events: none;
}

.register-float .btn-text-main {
    color: white;
    font-size: 9px;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Arial', sans-serif;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.2px;
}

.register-float .btn-text-sub {
    color: white;
    font-size: 8px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, .6)
    }
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .process-grid::before {
        display: none
    }
}

/* DESKTOP HIDE MOBILE CTA */
.mobile-cta-bar {
    display: none;
}

@media(max-width:768px) {

    /* TOP BAR - Social only, centered */
    .topbar {
        background: var(--bg-dark);
        padding: 8px 0;
    }

    .topbar .container {
        justify-content: center;
    }

    .topbar-left {
        display: none;
    }

    .topbar-right {
        display: flex;
        gap: 18px;
    }

    .topbar-right a {
        background: transparent;
        width: auto;
        height: auto;
        font-size: 1rem;
        color: #fff;
    }

    /* NAVBAR - Navy background */
    .navbar {
        background: var(--bg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        height: 70px;
    }

    .nav-container {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-text,
    .logo-text span {
        color: #fff !important;
    }

    .logo-text span {
        color: var(--accent) !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        z-index: 1002;
    }

    .hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary);
        border-radius: 4px;
        transition: var(--transition);
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 24px 0;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown .4s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        color: #fff !important;
        padding: 14px 30px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        justify-content: space-between;
    }

    .nav-links li .dropdown a {
        justify-content: flex-start;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-cta {
        margin: 16px 30px 0;
    }

    .nav-cta a {
        width: 100%;
        justify-content: center;
    }

    /* MOBILE CTA BAR */
    .mobile-cta-bar {
        display: block;
        padding: 12px 20px 20px;
        background: #fff;
        border-bottom: 1px solid var(--border);
    }

    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: var(--bg-dark);
        color: #fff;
        padding: 16px;
        border-radius: 12px;
        font-weight: 700;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1rem;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(10, 22, 40, 0.2);
    }

    /* General Spacing Refinements */
    section,
    .destinations,
    .services,
    .process,
    .universities,
    .testimonials,
    .scholarships,
    .events,
    .blog,
    .faq,
    .cta-section,
    .contact,
    .about {
        padding: 35px 0;
    }

    .hero-content {
        padding: 30px 0 25px;
        text-align: center;
        position: static;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        display: none;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: .95rem;
        margin-bottom: 24px;
        display: none;
    }

    .hero-btns {
        justify-content: center;
        gap: 10px;
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
        padding: 0 16px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .hero-btns .btn {
        flex: 1;
        padding: 10px 8px;
        font-size: 0.75rem;
        white-space: normal;
        line-height: 1.3;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }

    .btn-text-full {
        display: none;
    }

    .hero-indicators {
        display: none;
    }

    .btn {
        padding: 12px 24px;
        font-size: .9rem;
    }

    .section-title {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: .9rem;
        margin-bottom: 24px;
    }

    .section-tag {
        font-size: .75rem;
        padding: 4px 12px;
        margin-bottom: 8px;
    }

    .stat-item::after {
        display: none;
    }

    .stats {
        padding: 30px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 10px 8px;
    }

    .stat-item {
        padding: 14px 6px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--radius);
        position: relative;
    }

    .stat-item::after {
        display: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        grid-column: span 3;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        grid-column: span 2;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 0.2px;
    }

    /* Grids & Cards */
    .dest-grid,
    .services-grid,
    .process-grid,
    .scholar-grid,
    .events-grid,
    .blog-grid,
    .contact-grid,
    .about-grid {
        gap: 16px;
    }

    .event-body,
    .blog-body {
        padding: 16px;
    }

    .service-card,
    .scholar-card {
        padding: 15px 18px;
    }

    .test-item {
        padding: 24px 20px;
    }

    .dest-card-img {
        height: 140px;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    .dest-card-overlay-title {
        display: flex;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
        padding: 30px 16px 10px 16px;
        color: #fff;
        justify-content: space-between;
        align-items: flex-end;
        z-index: 2;
    }

    .dest-card-overlay-title h3 {
        font-size: 1rem !important;
        font-weight: 700;
        margin: 0 !important;
        color: #fff !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    }

    .dest-chevron {
        color: #fff;
        font-size: 0.85rem;
        transition: transform 0.3s ease;
        margin-bottom: 2px;
    }

    .dest-card.open .dest-chevron {
        transform: rotate(180deg);
    }

    .dest-card-img .flag {
        display: none !important;
    }

    .dest-card-body h3 {
        display: none !important;
    }

    .dest-card-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.35s ease;
        padding: 0 16px;
    }

    .dest-card.open .dest-card-body {
        max-height: 250px;
        padding: 16px;
    }

    .blog-img {
        height: 180px;
    }

    .faq-q {
        padding: 16px 20px;
        font-size: .9rem;
    }

    .faq-a-inner {
        padding: 0 20px 16px;
        font-size: .85rem;
    }

    /* Typography on mobile */
    .dest-card-body h3,
    .service-card h3,
    .scholar-card h3,
    .event-body h3,
    .blog-body h3,
    .about-text h2 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .dest-card-body p,
    .service-card p,
    .scholar-card p,
    .event-body p,
    .blog-body p,
    .test-item p {
        font-size: .85rem;
        margin-bottom: 12px;
    }

    /* Contact Form */
    .contact-form {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: .9rem;
    }

    .contact-info>p {
        margin-bottom: 24px;
        font-size: .9rem;
    }

    .info-item h4 {
        font-size: .95rem;
    }

    .info-item p {
        font-size: .85rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        gap: 24px;
        padding-bottom: 24px;
    }

    /* Stack form columns on mobile */
}

@media(max-width:480px) {
    .hero-btns .btn {
        justify-content: center;
    }
}

/* === Responsive Grid Utility Classes === */
.responsive-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.responsive-grid-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.responsive-grid-sidebar-blog {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.featured-post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(48, 0, 102, .12);
    margin-bottom: 40px;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e2e8f0;
}

@media(max-width: 768px) {
    .responsive-grid-2 {
        grid-template-columns: 1fr !important;
    }

    .responsive-grid-sidebar,
    .responsive-grid-sidebar-blog {
        grid-template-columns: 1fr !important;
    }

    .featured-post-grid {
        grid-template-columns: 1fr !important;
    }
}

/* BLOG INDEX CUSTOM STYLES */
.blog-hero-section {
    background: linear-gradient(135deg, #300066 0%, #4c1d95 50%, #7c3aed 100%);
    padding: 100px 0 60px;
    margin-top: 70px;
}

.blog-hero-container {
    text-align: center;
    color: #fff;
}

.blog-hero-badge {
    background: rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.blog-hero-badge i {
    margin-right: 6px;
}

.blog-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.blog-hero-desc {
    font-size: 1rem;
    opacity: .85;
    max-width: 560px;
    margin: 0 auto;
}

.blog-tag-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.blog-tag-btn {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, .3);
    background: transparent;
    color: #fff;
    transition: all .2s;
    text-decoration: none;
}

.blog-tag-btn.active,
.blog-tag-btn:hover {
    border-color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.blog-main-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.featured-post-img-wrapper {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.featured-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.featured-post-grid:hover .featured-post-img {
    transform: scale(1.05);
}

.featured-post-content {
    background: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.featured-post-tag {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 700;
}

.featured-post-time {
    font-size: .78rem;
    color: #94a3b8;
}

.featured-post-time i {
    margin-right: 4px;
}

.featured-post-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.35;
    margin-bottom: 12px;
}

.featured-post-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: .9rem;
}

.featured-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-post-date {
    font-size: .8rem;
    color: #94a3b8;
}

.featured-post-date i {
    margin-right: 4px;
}

.featured-post-readmore {
    color: #7c3aed;
    font-weight: 700;
    font-size: .85rem;
}

.featured-post-readmore i {
    margin-left: 4px;
}

.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.blog-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}

.blog-empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    opacity: .3;
}

.blog-empty-text {
    font-size: 1rem;
}

.blog-empty-link {
    color: #7c3aed;
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

.blog-cta-section {
    background: linear-gradient(135deg, #1a0533, #300066);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.blog-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.blog-cta-desc {
    opacity: .8;
    margin-bottom: 28px;
}

.blog-cta-btn {
    font-size: 1rem;
    padding: 14px 36px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .blog-hero-section {
        margin-top: 7px;
        padding: 40px 0 20px;
    }

    .blog-main-section {
        padding: 6px 0 40px;
    }

    .blog-cta-section {
        padding: 40px 0;
    }

    .featured-post-content {
        padding: 20px;
    }
}

/* REGISTER PAGE STYLES */
.register-hero-section {
    background: linear-gradient(135deg, #300066 0%, #4c1d95 50%, #7c3aed 100%);
    padding: 100px 0 60px;
    margin-top: 70px;
}

.register-hero-container {
    text-align: center;
    color: #fff;
}

.register-hero-badge {
    background: rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.register-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.register-hero-desc {
    font-size: 1rem;
    opacity: .85;
    max-width: 560px;
    margin: 0 auto;
}

.register-main-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.register-success-msg {
    background: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.register-success-msg i {
    font-size: 1.2rem;
}

.register-grid {
    display: grid;
    align-items: start;
}

.register-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(48, 0, 102, .08);
    border: 1px solid #e2e8f0;
}

.register-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: #1e293b;
}

.register-form-desc {
    color: #64748b;
    margin-bottom: 24px;
    font-size: .9rem;
}

.register-form-group {
    margin-bottom: 16px;
}

.responsive-grid-2.register-form-group {
    margin-bottom: 16px;
    margin-top: 16px;
}

.register-label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.register-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    background: #fff;
    font-family: inherit;
    box-sizing: border-box;
}

.register-input:focus {
    border-color: #7c3aed;
}

.register-textarea {
    resize: vertical;
}

.register-error {
    color: red;
    font-size: .78rem;
    display: block;
    margin-top: 4px;
}

.register-submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 4px 16px rgba(124, 58, 237, .35);
}

.register-submit-btn:hover {
    opacity: .9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .register-hero-section {
        margin-top: 7px;
        padding: 40px 0 20px;
    }

    .register-main-section {
        padding: 6px 0 40px;
    }

    .register-form-card {
        padding: 20px;
    }
}

/* DESTINATION SHOW STYLES */
.dest-hero-section {
    position: relative;
    height: 480px;
    overflow: hidden;
    margin-top: 70px;
}

.dest-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 12, 41, .3) 0%, rgba(15, 12, 41, .75) 100%);
}

.dest-hero-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-bottom: 48px;
}

.dest-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.dest-breadcrumb a {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    text-decoration: none;
}

.dest-breadcrumb a:hover {
    color: #fff;
}

.dest-breadcrumb .sep {
    color: rgba(255, 255, 255, .4);
}

.dest-breadcrumb .current {
    color: #fff;
    font-size: .85rem;
}

.dest-hero-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dest-hero-flag {
    height: 48px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.dest-hero-title {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.dest-hero-desc {
    color: rgba(255, 255, 255, .8);
    margin-top: 8px;
    font-size: 1rem;
}

.dest-main-section {
    padding: 60px 0;
    background: #f8fafc;
}

.dest-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(48, 0, 102, .08);
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.dest-detail-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1e293b;
}

.dest-detail-title img {
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 4px;
}

.dest-detail-body {
    line-height: 1.8;
    color: #374151;
    font-size: .95rem;
}

.dest-facts-card {
    background: linear-gradient(135deg, #1a0533 0%, #300066 100%);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
}

.dest-facts-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.dest-facts-title img {
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 2px;
}

.dest-fact-item {
    background: rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 14px;
}

.dest-fact-label {
    font-size: .7rem;
    opacity: .6;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.dest-fact-value {
    font-weight: 700;
}

.dest-fact-value.highlight {
    color: #a78bfa;
}

.dest-sidebar {
    position: sticky;
    top: 90px;
}

.dest-cta-card {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, .35);
}

.dest-cta-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.dest-cta-icon img {
    border-radius: 4px;
    height: 36px;
}

.dest-cta-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.dest-cta-desc {
    font-size: .85rem;
    opacity: .85;
    margin-bottom: 20px;
}

.dest-cta-btn {
    display: block;
    background: #fff;
    color: #7c3aed;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: .9rem;
    transition: all .2s;
    text-decoration: none;
}

.dest-cta-btn:hover {
    background: #f3f4f6;
}

.dest-cta-btn i {
    margin-right: 6px;
}

.dest-others-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(48, 0, 102, .08);
    border: 1px solid #e2e8f0;
}

.dest-others-title {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
}

.dest-other-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 8px;
    transition: background .2s;
    color: #374151;
    text-decoration: none;
}

.dest-other-link:hover {
    background: #f8fafc;
}

.dest-other-link img {
    border-radius: 3px;
    flex-shrink: 0;
    height: 20px;
}

.dest-other-name {
    font-size: .875rem;
    font-weight: 600;
}

.dest-other-link i {
    margin-left: auto;
    font-size: .7rem;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .dest-hero-section {
        margin-top: 7px;
        height: 320px;
    }

    .dest-hero-container {
        padding-bottom: 24px;
    }

    .dest-main-section {
        padding: 24px 0 40px;
    }

    .dest-detail-card {
        padding: 20px;
    }

    .dest-facts-card {
        padding: 20px;
    }

    .dest-cta-card {
        padding: 20px;
    }

    .dest-others-card {
        padding: 20px;
    }
}