/* assets/css/style.css */

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Rubik:wght@400;500;600;700;800&family=Alex+Brush&family=Playball&display=swap');

/* --- Design Tokens & Variables --- */
:root {
    --primary: #06a3da;
    --primary-dark: #008fca;
    --primary-light: #eef9ff;
    --secondary: #091e3e;
    --secondary-light: #162a45;
    --secondary-dark: #040f21;
    --accent: #34ad54;
    --accent-dark: #279444;
    --accent-light: #e8f7ec;
    --text-main: #4b5563;
    --text-muted: #9ca3af;
    --text-white: #ffffff;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --bg-card-dark: #111827;
    --border-color: #e5e7eb;
    --font-sans: 'Nunito', sans-serif;
    --font-heading: 'Rubik', sans-serif;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.25;
}

/* --- Utility Classes --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-bg-white {
    background-color: var(--bg-white);
}

.section-bg-dark {
    background-color: var(--secondary);
    color: var(--text-white);
}

.section-bg-dark h2 {
    color: var(--text-white);
}

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

.section-header {
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.section-bg-dark .section-header p {
    color: #94a3b8;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary);
}

.badge-accent {
    background-color: var(--accent-light);
    color: var(--accent-dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 79, 144, 0.25);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 129, 55, 0.25);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-white);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 129, 55, 0.25);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 79, 144, 0.2);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--secondary);
}

.btn-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

/* --- Header & Navbar --- */
.top-bar {
    background-color: #2d3238;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info, .top-bar-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-info a:hover {
    color: var(--accent);
}

.top-bar-social a:hover {
    color: var(--accent);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

/* --- Logo Styling --- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(13, 79, 144, 0.2);
}

.logo-text h2 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text h2 span.brand-edu {
    color: var(--secondary);
}

.logo-text h2 span.brand-vista {
    color: var(--primary);
}

.logo-text p {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* --- Nav Links --- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-light);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(230, 247, 238, 0.4) 0%, rgba(248, 250, 252, 1) 100%);
    padding: 7rem 0 6rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(13, 79, 144, 0.15);
    z-index: -1;
}

.hero-content p.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-light);
}

.hero-feature-item svg {
    color: var(--primary);
}

/* --- Hero Form --- */
.hero-form-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-form-card p {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-light);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--secondary);
    transition: var(--transition);
    outline: none;
    background-color: var(--bg-light);
}

.form-control:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(13, 79, 144, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* --- Quick Stats Section --- */
.stats-bar {
    background-color: var(--secondary);
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    color: var(--text-white);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- Services Showcase --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 79, 144, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--text-white);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-link svg {
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* --- Destinations Section --- */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    background-color: var(--secondary);
}

.destination-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    transition: var(--transition);
}

.destination-card:hover .destination-card-bg {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    color: var(--text-white);
    z-index: 2;
}

.destination-content h3 {
    color: var(--text-white);
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.destination-content p {
    font-size: 0.85rem;
    color: #cbd5e1;
    transform: translateY(15px);
    opacity: 0;
    transition: var(--transition);
}

.destination-card:hover .destination-content p {
    transform: translateY(0);
    opacity: 1;
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

/* --- Testimonials Section (Carousel / Grid) --- */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--secondary-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -2.5rem;
    left: 0;
    line-height: 1;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info h4 {
    font-size: 1rem;
    text-align: left;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: left;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* --- Call To Action (CTA) --- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* --- Footer --- */
.footer {
    background-color: var(--secondary-dark);
    color: #94a3b8;
    padding: 5rem 1.5rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo h3 {
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer-logo p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-column ul a {
    font-size: 0.95rem;
}

.footer-column ul a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* --- Page Hero Component --- */
.page-hero {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-dark) 100%);
    color: var(--text-white);
    padding: 5rem 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--text-white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- About Page Details --- */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-feature-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Mission & Vision Grid --- */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.mission-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary);
}

.mission-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mission-card h3 svg {
    color: var(--primary);
}

/* --- Timeline Working Process --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    width: 50%;
    padding: 0 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item-left {
    left: 0;
    text-align: right;
}

.timeline-item-right {
    left: 50%;
}

.timeline-badge {
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 0 4px var(--bg-light);
    z-index: 10;
}

.timeline-item-left .timeline-badge {
    right: -20px;
}

.timeline-item-right .timeline-badge {
    left: -20px;
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* --- Services Detailed Tabs --- */
.services-tabs-container {
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    gap: 3rem;
}

.services-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-tab-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-tab-btn:hover, .service-tab-btn.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.service-tab-panel {
    display: none;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    animation: fadeIn 0.4s ease-in-out;
}

.service-tab-panel.active {
    display: block;
}

.service-tab-panel h2 {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
}

.service-tab-panel p.lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-feature-item-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--secondary-light);
}

.service-feature-item-detail svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* --- Courses Page Layout --- */
.courses-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.course-card-detail {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.course-card-detail h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.course-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.course-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.course-duration {
    font-weight: 700;
    color: var(--secondary);
}

.course-features-badge {
    color: var(--text-muted);
    font-style: italic;
}

/* --- Destinations & Universities Layout --- */
.destinations-detail-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.destination-detail-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.destination-detail-row:nth-child(even) {
    grid-template-columns: 1.2fr 1fr;
}

.destination-detail-row:nth-child(even) .destination-info-column {
    order: -1;
}

.destination-img-column img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.destination-info-column h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.destination-info-column p.desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.destination-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fact-box h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.fact-box p {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* --- Universities Filters & Grid --- */
.filters-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.universities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.university-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.university-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.uni-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
}

.university-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.university-card p.location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.uni-ranking-badge {
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary-light);
    padding: 0.25rem 0.5rem;
    display: inline-block;
}

/* --- Contact Us Components --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-card-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-card-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-card-text a:hover {
    color: var(--primary);
}

.map-container {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* --- Testimonials Form & Grid (Page) --- */
.testimonials-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card-grid {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-grid p.msg {
    font-size: 0.95rem;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.write-review-section {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 4rem auto 0 auto;
}

.rating-select {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rating-star-input {
    font-size: 1.5rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.rating-star-input:hover, .rating-star-input.active {
    color: var(--accent);
}

/* --- Floating Action Elements --- */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.floating-whatsapp {
    background-color: #25d366;
}

.floating-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-4px);
}

/* --- Toast Messages --- */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: var(--secondary);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(-50px);
    opacity: 0;
    transition: var(--transition);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid var(--primary);
}

.toast-error {
    border-left: 4px solid #ef4444;
}

/* --- Keyframe Animations --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-tabs-container {
        grid-template-columns: 1fr;
    }
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .universities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-cta {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .services-grid, .destinations-grid, .courses-grid-list, .testimonials-grid-page {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-item-right {
        left: 0;
    }
    .timeline-item-left .timeline-badge, .timeline-item-right .timeline-badge {
        left: 0;
    }
    .destination-detail-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .destination-detail-row:nth-child(even) .destination-info-column {
        order: initial;
    }
    .destination-facts {
        grid-template-columns: 1fr;
    }
    .universities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats-grid, .universities-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none !important;
    }
}

/* --- VISUAL REDESIGN ADDITIONS --- */

/* Brush Underline Accent */
.brush-underline {
    position: relative;
    display: inline-block;
}

.brush-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 4px;
    background-color: #ef4444; /* Crimson Red */
    border-radius: var(--radius-full);
    transform: rotate(-1deg);
    z-index: 1;
}

/* Redesigned Testimonials (Horizontal Card Slider) */
.testimonial-horizontal-card {
    display: flex;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 850px;
    margin: 0 auto;
    min-height: 250px;
    transition: var(--transition);
}

.testimonial-horizontal-img {
    width: 30%;
    position: relative;
    background-color: var(--primary-light);
}

.testimonial-horizontal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-horizontal-body {
    width: 70%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
}

/* Hero Circle Avatar & Badges */
.hero-avatar-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-avatar-circle {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 79, 144, 0.12) 0%, rgba(15, 23, 42, 0.08) 100%);
    z-index: 1;
}

.hero-avatar-image {
    width: 85%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 8px solid var(--bg-white);
    box-shadow: var(--shadow-md);
}

.hero-badge-overlay {
    position: absolute;
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--secondary);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
}

.hero-badge-1 { top: 12%; left: -2%; }
.hero-badge-2 { bottom: 20%; right: -2%; }
.hero-badge-3 { bottom: 5%; left: 8%; }

/* Redesigned Dark Counseling Panel */
.counseling-panel-dark {
    background-color: #1a3b8b; /* Deep Blue theme */
    color: var(--text-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.counseling-panel-img {
    position: relative;
    min-height: 100%;
}

.counseling-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counseling-panel-form {
    padding: 3.5rem;
}

.counseling-panel-form h3 {
    color: var(--text-white);
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.counseling-panel-form p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.counseling-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.counseling-form-grid label {
    color: #e2e8f0;
}

.counseling-form-grid .form-control {
    background-color: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: var(--text-white);
}

.counseling-form-grid .form-control:focus {
    border-color: var(--primary);
    background-color: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 4px rgba(13, 79, 144, 0.25);
}

.counseling-form-grid select.form-control option {
    background-color: #0f172a;
    color: var(--text-white);
}

/* Steps Timeline Cards */
.step-card-horizontal {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.step-card-horizontal:hover {
    transform: translateX(5px);
    border-color: rgba(13, 79, 144, 0.3);
    box-shadow: var(--shadow-md);
}

.step-card-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.step-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--secondary);
}

.step-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.step-card-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.step-card-btn:hover {
    color: var(--primary-dark);
}

/* FAQ Accordions */
.faq-accordion {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-header {
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    user-select: none;
    transition: var(--transition);
}

.faq-header:hover {
    background-color: var(--bg-light);
}

.faq-icon {
    font-size: 1.35rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-accordion.active .faq-content {
    max-height: 250px;
    padding: 1.25rem 2rem;
    border-top-color: var(--border-color);
}

.faq-accordion.active .faq-icon {
    transform: rotate(45deg); /* converts + to x */
}

/* Redesigned Course Cards (Trending Courses) */
.trending-course-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.trending-course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 79, 144, 0.2);
}

.trending-course-img {
    height: 180px;
    position: relative;
    background-color: #f1f5f9;
}

.trending-course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trending-course-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trending-course-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.trending-course-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Blogs Grid Cards */
.blog-card-new {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-img {
    height: 200px;
    background-color: #e2e8f0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .testimonial-horizontal-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonial-horizontal-card {
        flex-direction: column;
    }
    .testimonial-horizontal-img {
        width: 100%;
        height: 180px;
    }
    .testimonial-horizontal-body {
        width: 100%;
        padding: 1.5rem;
    }
}

/* --- Additional Mobile Friendly Fixes --- */
.steps-section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.blogs-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.cta-inner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

@media (max-width: 992px) {
    .steps-section-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .steps-section-grid > div:last-child {
        order: -1;
    }
    .blogs-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .counseling-panel-dark {
        grid-template-columns: 1fr;
    }
    .counseling-panel-img {
        height: 240px;
        min-height: auto;
    }
    .counseling-panel-form {
        padding: 2.5rem 1.5rem;
    }
    .counseling-form-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    .cta-inner-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .cta-inner-grid div:last-child {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .blogs-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu-cta-mobile {
        display: block !important;
    }
    .footer-subscribe-bar-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .subscribe-form-flex {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    .subscribe-form-flex .form-control {
        width: 100% !important;
    }
    .subscribe-form-flex button {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-badge-overlay {
        padding: 0.35rem 0.65rem;
        font-size: 0.7rem;
    }
    .hero-badge-1 { left: -3%; }
    .hero-badge-2 { right: -3%; }
    /* Logo scaling on tiny viewports */
    .logo {
        gap: 0.45rem !important;
    }
    .logo span:first-child {
        font-size: 1.3rem !important;
    }
    .logo span:last-child {
        font-size: 0.42rem !important;
        letter-spacing: 1.6px !important;
    }
    .logo div:first-child {
        width: 11px !important;
        height: 34px !important;
        border-radius: 5.5px !important;
    }
}


/* ==========================================================================
   HOMEPAGE REDESIGN (IDP STYLE UPGRADE)
   ========================================================================== */

/* Typography & Accent colors matching IDP -> BOC style */
:root {
    --idp-blue: #06a3da;
    --idp-orange: #091e3e;
    --idp-green: #34ad54;
    --idp-light-bg: #eef9ff;
    --idp-gray-border: #e5e7eb;
}

/* 1. Hero V2 Section */
.hero-v2 {
    background: linear-gradient(135deg, #fbfcfd 0%, #edf3f8 100%);
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-v2-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-v2-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero-v2-content h1 span.highlight {
    color: var(--primary);
}

.hero-v2-content p.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-v2-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-idp-primary {
    background-color: var(--idp-blue);
    color: var(--text-white) !important;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

.btn-idp-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

.hero-v2-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Decorative background shapes for student banner */
.hero-v2-visual .blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-v2-visual .shape {
    position: absolute;
    border-radius: 50%;
}

.hero-v2-visual .shape-orange {
    width: 250px;
    height: 250px;
    background-color: var(--idp-orange);
    top: 5%;
    right: 5%;
    border-radius: 60px;
    transform: rotate(15deg);
    opacity: 0.85;
}

.hero-v2-visual .shape-blue {
    width: 150px;
    height: 150px;
    background-color: var(--idp-blue);
    bottom: 5%;
    left: 5%;
    border-radius: 40px;
    transform: rotate(-25deg);
    opacity: 0.9;
}

.hero-v2-visual img.student-img {
    position: relative;
    z-index: 2;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* Dots Page Indicator */
.hero-dots-indicator {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    width: 24px;
    border-radius: var(--radius-full);
    background-color: var(--primary);
}

/* 2. Floating Stats Panel V2 */
.floating-stats-panel-v2 {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
}

.stat-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item-v2 .icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.stat-item-v2:nth-child(1) .icon-box { background-color: #e6f0fa; color: var(--idp-blue); }
.stat-item-v2:nth-child(2) .icon-box { background-color: #fef0e6; color: var(--idp-orange); }
.stat-item-v2:nth-child(3) .icon-box { background-color: #e6f7f0; color: var(--idp-green); }
.stat-item-v2:nth-child(4) .icon-box { background-color: #f3e8ff; color: #8b5cf6; }

.stat-item-v2 .number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.stat-item-v2 .label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* Links bar under stats */
.stats-links-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stats-link-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.stats-link-item:hover {
    color: var(--idp-orange);
    text-decoration: underline;
}

/* 3. Counselling Form Redesign */
.counseling-grid-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.counseling-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 3rem;
}

.counseling-form-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.counseling-form-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.counseling-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.counseling-fields-grid .span-2 {
    grid-column: span 2;
}

.form-group-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-group-v2 label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.form-group-v2 .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--idp-gray-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--secondary);
    transition: var(--transition);
}

.form-group-v2 .form-control:focus {
    border-color: var(--idp-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-checkbox-group {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-top: 0.5rem;
}

.form-checkbox-group input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--idp-blue);
}

.form-checkbox-group label {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.counseling-right-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counseling-right-visual .green-circle-backdrop {
    width: 420px;
    height: 420px;
    background-color: var(--idp-green);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.counseling-right-visual .orange-accent-blob {
    width: 120px;
    height: 120px;
    background-color: var(--idp-orange);
    border-radius: 30px;
    position: absolute;
    right: 5%;
    bottom: 5%;
    transform: rotate(30deg);
    z-index: 2;
}

.counseling-right-visual img {
    position: relative;
    z-index: 3;
    max-height: 480px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

/* 4. Services Showcase */
.services-section-title {
    margin-bottom: 3rem;
}

.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-v2 {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--idp-blue);
}

.service-card-v2 .icon-box {
    color: var(--idp-blue);
    margin-bottom: 1.25rem;
}

.service-card-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.service-card-v2 p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-v2 .learn-more-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--idp-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-card-v2 .learn-more-link:hover {
    color: var(--idp-orange);
}

/* 5. EduVista Portal Banner */
.portal-banner {
    background-color: #f7edd3;
    border-radius: var(--radius-lg);
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.portal-banner-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.portal-banner-content p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-portal-details {
    background-color: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    padding: 0.6rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.btn-portal-details:hover {
    background-color: var(--secondary);
    color: var(--text-white);
}

.portal-banner-graphic {
    display: flex;
    justify-content: center;
}

.portal-banner-graphic img {
    max-height: 250px;
    object-fit: contain;
}

/* 6. Know Your Destination */
.destinations-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 7 Grid configuration: 4 top, 3 bottom */
.destinations-grid-v2.bottom-row {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.destination-card-v2 {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-sm);
}

.destination-card-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card-v2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.1) 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1.5rem;
    transition: var(--transition);
}

.destination-card-v2 h3 {
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    text-align: center;
}

.destination-card-v2:hover img {
    transform: scale(1.08);
}

.destination-card-v2:hover .overlay {
    background: linear-gradient(to top, rgba(0, 102, 204, 0.9) 0%, rgba(15, 23, 42, 0.3) 100%);
}

/* 7. Student Community Section */
.community-card-banner {
    background-color: #00774a;
    border-radius: var(--radius-lg);
    color: var(--text-white);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    background-image: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
}

.community-card-banner h3 {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.community-card-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-community {
    background-color: var(--bg-white);
    color: #00774a !important;
    border: none;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.btn-community:hover {
    background-color: #e2f5ee;
    transform: translateY(-2px);
}

.community-banner-right {
    display: flex;
    justify-content: center;
}

.community-banner-right img {
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* Chat to a student ambassador */
.ambassador-section {
    background-color: #fff9e6;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-top: 3rem;
}

.ambassador-header {
    margin-bottom: 2rem;
}

.ambassador-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
}

.ambassador-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.ambassador-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.ambassador-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.ambassador-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--idp-orange);
}

.ambassador-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid var(--idp-orange);
}

.ambassador-card h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.ambassador-card p.title {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.btn-ambassador-chat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--idp-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.btn-ambassador-chat:hover {
    color: var(--idp-orange);
}

/* 8. Student Life Video Grid */
.vlog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.vlog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.vlog-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vlog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vlog-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--idp-blue);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.vlog-play-btn:hover {
    background-color: var(--idp-blue);
    color: var(--text-white);
    transform: translate(-50%, -50%) scale(1.1);
}

.vlog-lock-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(15, 23, 42, 0.85);
    color: var(--text-white);
    padding: 0.25rem 0.65rem;
    font-size: 0.68rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
}

.vlog-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vlog-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.vlog-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
}

.vlog-author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.vlog-author span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* 9. Steps Accordion */
.steps-accordion-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.steps-accordion-visual {
    display: flex;
    justify-content: center;
}

.steps-accordion-visual img {
    border-radius: var(--radius-lg);
    max-height: 480px;
    object-fit: contain;
}

.accordion-container-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item-v2 {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item-v2.active {
    border-color: var(--idp-blue);
    box-shadow: var(--shadow-sm);
}

.accordion-header-v2 {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
}

.accordion-header-v2 .icon {
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.accordion-item-v2.active .accordion-header-v2 {
    color: var(--idp-blue);
}

.accordion-item-v2.active .accordion-header-v2 .icon {
    transform: rotate(90deg);
    color: var(--idp-blue);
}

.accordion-content-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-item-v2.active .accordion-content-v2 {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.accordion-content-v2 p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 10. Important Links */
.important-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.important-link-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.important-link-card:hover {
    border-color: var(--idp-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.important-link-card .icon-box {
    margin-bottom: 1rem;
}

.important-link-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.important-link-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.important-link-card .action-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--idp-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.important-link-card .action-link:hover {
    color: var(--idp-orange);
}

/* 11. FastLane Banner */
.fastlane-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg);
    color: var(--text-white);
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.fastlane-banner-content h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.fastlane-banner-content p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-fastlane {
    background-color: var(--accent);
    color: var(--text-white) !important;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(52, 173, 84, 0.3);
}

.btn-fastlane:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.fastlane-banner-right {
    display: flex;
    justify-content: center;
}

.fastlane-banner-right img {
    max-height: 220px;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* 12. Student Essentials */
.essentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.essential-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.essential-card:hover {
    border-color: var(--idp-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.essential-card .icon-box {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.essential-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.essential-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.essential-card .action-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--idp-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.essential-card .action-link:hover {
    color: var(--idp-orange);
}

/* Redesigned partner grids */
.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

/* FAQ Upgrade */
.faq-accordion-v2 {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-accordion-v2.active {
    border-color: var(--idp-blue);
}

.faq-header-v2 {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
}

.faq-header-v2 .icon {
    font-size: 1.25rem;
    transition: var(--transition);
}

.faq-accordion-v2.active .faq-header-v2 {
    color: var(--idp-blue);
}

.faq-accordion-v2.active .faq-header-v2 .icon {
    transform: rotate(45deg);
    color: var(--idp-blue);
}

.faq-content-v2 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-accordion-v2.active .faq-content-v2 {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-content-v2 p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Media Queries for Redesigned Sections */
@media (max-width: 1024px) {
    .hero-v2-grid, .counseling-grid-v2, .steps-accordion-grid, .community-card-banner, .portal-banner, .fastlane-banner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-v2-visual, .counseling-right-visual, .steps-accordion-visual, .community-banner-right, .portal-banner-graphic, .fastlane-banner-right {
        order: -1;
    }
    .stats-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid-v2, .important-links-grid, .essentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .destinations-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
    .destinations-grid-v2.bottom-row {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
    .ambassador-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vlog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-v2-content h1 {
        font-size: 2.2rem;
    }
    .counseling-form-card {
        padding: 1.75rem;
    }
    .counseling-fields-grid {
        grid-template-columns: 1fr;
    }
    .counseling-fields-grid .span-2 {
        grid-column: span 1;
    }
    .services-grid-v2, .destinations-grid-v2, .important-links-grid, .essentials-grid, .vlog-grid, .partner-logo-grid {
        grid-template-columns: 1fr !important;
    }
    .stats-grid-v2 {
        grid-template-columns: 1fr;
    }
    .ambassador-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .floating-stats-panel-v2 {
        padding: 1.25rem;
    }
    .portal-banner, .fastlane-banner, .community-card-banner {
        padding: 2rem;
    }
}

/* Redesigned Header, Navbar & Hero Elements */
.top-bar {
    background-color: #091e3e !important; /* Premium Deep Navy */
    color: #ffffff !important;
}

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.top-link {
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--transition);
}

.top-link:hover {
    color: #ffffff;
}

.badge-new-orange {
    background-color: var(--idp-orange);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    margin-left: 0.2rem;
    text-transform: uppercase;
}

.divider {
    color: #4b5563;
    font-size: 0.8rem;
}

.caret-down {
    font-size: 0.6rem;
    vertical-align: middle;
}

.globe-icon {
    font-size: 0.8rem;
}

/* Nav Actions Pills */
.btn-nav-counseling {
    background-color: #34ad54; /* BOC Green */
    color: #ffffff !important;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    font-size: 0.82rem;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(52, 173, 84, 0.15);
}

.btn-nav-counseling:hover {
    background-color: #279444;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(52, 173, 84, 0.25);
}

.btn-nav-signin {
    background-color: transparent;
    color: var(--secondary) !important;
    border: 1.5px solid #dcdfe3;
    border-radius: 24px;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    font-size: 0.82rem;
    transition: var(--transition);
}

.btn-nav-signin:hover {
    background-color: #f1f5f9;
    transform: translateY(-1px);
}

.wishlist-heart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    transition: var(--transition);
}

.wishlist-heart-btn:hover {
    transform: scale(1.1);
}

/* Upgraded Fullscreen Hero Slider Styles */
.hero-v2 {
    position: relative;
    padding: 10rem 0 8rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(5px) brightness(0.42); /* Slight blur and darken to make text readable */
    transform: scale(1.05); /* Avoid white edges during blur */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.35); /* Elegant translucent shadow overlay */
    z-index: 2;
}

.hero-v2-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
}

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

.hero-v2-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-v2-content p.lead {
    font-size: 1.25rem;
    color: #f1f5f9 !important;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.highlight-white {
    color: #38bdf8; /* Vibrant sky blue highlight */
    font-weight: 800;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #ffffff !important;
    border-radius: 24px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: var(--secondary) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.25);
}

.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.hero-slider-nav:hover {
    background-color: #ffffff;
    color: var(--secondary);
    border-color: #ffffff;
}

.hero-slider-nav.prev-slide {
    left: 20px;
}

.hero-slider-nav.next-slide {
    right: 20px;
}

/* Destination Modal Overlay Styles */
.dest-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.dest-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.dest-modal-box {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dest-modal-overlay.active .dest-modal-box {
    transform: scale(1);
}

.dest-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background-color: rgba(15, 23, 42, 0.6);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 32px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.dest-modal-close-btn:hover {
    background-color: #ef4444;
}

.dest-modal-header-img {
    position: relative;
    height: 220px;
}

.dest-modal-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-modal-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.1) 80%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.dest-modal-title-overlay h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}

.dest-modal-info-body {
    padding: 2rem;
}

.dest-modal-description {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.dest-modal-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.dest-modal-fact-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.dest-modal-fact-card h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.dest-modal-fact-card p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1.4;
}

/* Service Card Upgraded Style */
.service-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--idp-blue) !important;
}

.service-card-v3:hover span {
    color: var(--idp-orange) !important;
}

.service-card-v3 span {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .services-grid-page {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .services-grid-page {
        grid-template-columns: 1fr !important;
    }
    
    /* Body padding-bottom to avoid bottom overlap */
    body {
        padding-bottom: 60px !important;
    }
    
    /* Mobile App-Style Bottom Tab Bar */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #ffffff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
        z-index: 9999;
        justify-content: space-around;
        align-items: center;
    }
    
    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #64748b; /* Slate grey */
        font-size: 0.68rem;
        font-weight: 700;
        width: 20%;
        height: 100%;
        transition: all 0.25s ease;
    }
    
    .mobile-nav-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 2px;
        transition: all 0.25s ease;
    }
    
    .mobile-nav-item.active {
        color: var(--idp-blue) !important;
    }
    
    .mobile-nav-item.active .mobile-nav-icon {
        transform: translateY(-2px);
        stroke: var(--idp-blue);
    }
}

/* Hide on desktop and tablet viewports */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 767px) {
    .navbar {
        padding: 0.5rem 1.25rem !important;
    }
    .logo img {
        height: 38px !important;
    }
}

/* Hide vlog play buttons */
.vlog-play-btn {
    display: none !important;
}

/* --- EduVista AI Navigator Specific Styles --- */

/* Hero AI Section */
.hero-ai {
    background: radial-gradient(circle at 70% 30%, #1e1b4b 0%, #090a0f 70%);
    color: #ffffff;
    padding: 7rem 0 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-ai .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-right: -15px;
    margin-left: -15px;
}

.hero-ai .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.hero-ai .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (max-width: 991px) {
    .hero-ai .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
    .hero-ai .col-lg-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
}

.hero-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-ai-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero-ai-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-ai-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-ai-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    text-align: center;
}

.hero-ai-stat-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 0.15rem;
}

.hero-ai-stat-card p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
}

.hero-ai-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-ai-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.hero-ai-pill:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
}

.hero-ai-search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.4rem;
    align-items: center;
    max-width: 650px;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    transition: var(--transition);
}

.hero-ai-search-box:focus-within {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 8px 30px rgba(99,102,241,0.2);
}

.hero-ai-search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    flex-grow: 1;
    font-size: 0.95rem;
    padding: 0.5rem 1.5rem;
}

.hero-ai-search-box input::placeholder {
    color: #64748b;
}

.hero-ai-search-box button {
    background-color: #6366f1;
    border: none;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.hero-ai-search-box button:hover {
    background-color: #4f46e5;
}

.hero-ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.hero-ai-tag {
    color: #cbd5e1;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.hero-ai-tag:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
}

.hero-ai-robot-wrapper {
    position: relative;
    text-align: center;
    perspective: 1200px; /* Enable 3D perspective */
    z-index: 10;
}

.hero-ai-robot-svg {
    max-height: 520px; /* Increased from 440px */
    width: 120%; /* Overflow column width for a larger visual impact */
    max-width: 420px;
    margin-left: -10%; /* Center it back after overflow */
    display: inline-block;
    vertical-align: middle;
    animation: floatRobot 6s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
    transform-style: preserve-3d;
    /* Soft cyan/blue neon glow matching the robot's glowing highlights */
    filter: drop-shadow(0 15px 30px rgba(56, 189, 248, 0.25))
            drop-shadow(0 5px 15px rgba(99, 102, 241, 0.15));
}

/* Float animation with a subtle 3D tilt rotation */
@keyframes floatRobot {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) rotateX(2deg) rotateY(-2deg);
        filter: drop-shadow(0 15px 30px rgba(56, 189, 248, 0.25))
                drop-shadow(0 5px 15px rgba(99, 102, 241, 0.15));
    }
    50% {
        transform: translateY(-20px) rotate(1deg) rotateX(-2deg) rotateY(2deg);
        /* Glow intensifies as it floats up */
        filter: drop-shadow(0 30px 45px rgba(56, 189, 248, 0.45))
                drop-shadow(0 10px 25px rgba(99, 102, 241, 0.25));
    }
}

/* Premium 3D tilt and scale effect on hover */
.hero-ai-robot-wrapper:hover .hero-ai-robot-svg {
    transform: scale(1.1) translateY(-10px) rotateY(18deg) rotateX(8deg);
    filter: drop-shadow(-15px 35px 50px rgba(56, 189, 248, 0.55))
            drop-shadow(-5px 15px 25px rgba(99, 102, 241, 0.35));
}

.hero-ai-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-ai-sidebar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.hero-ai-sidebar-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.hero-ai-sidebar-card .icon-box {
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5b4fc;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-ai-sidebar-card h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
}

.hero-ai-sidebar-card p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
}

/* Destinations Section */
.boc-dest-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.boc-dest-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.boc-dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #6366f1;
}

.boc-dest-card-img {
    height: 110px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.boc-dest-card-body {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.boc-dest-card-body h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.boc-dest-card-body p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.boc-dest-card-body a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Worldwide Universities Section */
.univ-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.univ-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem 0.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.univ-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.univ-logo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #6366f1;
    margin: 0 auto 0.75rem auto;
    font-size: 1rem;
}

.univ-card h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.univ-card p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0;
}

.univ-stats-strip {
    background-color: #fffbeb;
    border-top: 1px solid #fef3c7;
    border-bottom: 1px solid #fef3c7;
    padding: 1.5rem 0;
}

.univ-stats-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.univ-stats-strip-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #b45309;
    margin-bottom: 0.15rem;
}

.univ-stats-strip-item p {
    font-size: 0.75rem;
    color: #78350f;
    margin: 0;
    font-weight: 600;
}

/* Scholarships Section */
.scholarship-purple-card {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scholarship-purple-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
}

.scholarship-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.scholarship-item-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.scholarship-item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #a78bfa;
}

.scholarship-item-card .icon-box {
    width: 40px;
    height: 40px;
    background: #f3e8ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c3aed;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.scholarship-item-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.scholarship-item-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.scholarship-item-card a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #7c3aed;
    text-decoration: none;
}

/* Budget Planner Section */
.budget-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.budget-tier-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.budget-tier-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #10b981;
}

.budget-tier-card .icon-box {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.budget-tier-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.15rem;
}

.budget-tier-card .total-cost {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.budget-tier-card .country-flags {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.budget-tier-card .country-flags img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
}

.budget-tier-card a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #10b981;
    text-decoration: none;
}

.budget-calc-card {
    background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
}

.budget-calc-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.budget-calc-card .form-control {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-size: 0.85rem;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
}

.budget-calc-card .form-control option {
    color: var(--secondary);
}

.budget-calc-card label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

/* Settle & Career Dials Section */
.career-dials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.career-dial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    color: #ffffff;
}

.career-dial-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.career-dial-card p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    min-height: 52px;
}

.dial-svg-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.dial-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.15rem;
    font-weight: 800;
    color: #38bdf8;
}

/* Bottom Strip */
.bottom-trust-strip {
    background-color: #f8fafc;
    border-top: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.bottom-trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.bottom-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bottom-trust-item .icon-circle {
    width: 36px;
    height: 36px;
    background: #eef9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06a3da;
    font-size: 1rem;
    flex-shrink: 0;
}

.bottom-trust-item .text-wrapper h5 {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 0 0.1rem 0;
}

.bottom-trust-item .text-wrapper p {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0;
}

/* Media Queries for AI Layout */
@media (max-width: 1199px) {
    .boc-dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .univ-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .univ-stats-strip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .career-dials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-ai-title {
        font-size: 2.5rem;
    }
    .hero-ai-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .scholarship-list-grid {
        grid-template-columns: 1fr;
    }
    .budget-tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .boc-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .univ-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .univ-stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .budget-tiers-grid {
        grid-template-columns: 1fr;
    }
    .career-dials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bottom-trust-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
}

@media (max-width: 575px) {
    .boc-dest-grid {
        grid-template-columns: 1fr;
    }
    .univ-grid {
        grid-template-columns: 1fr;
    }
    .career-dials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   GLOBAL LIGHT THEME ALIGNMENT (100% MATCH HOMEPAGE PREMIUM STYLE)
   ========================================================================== */

/* Core background variable overrides */
:root {
    --bg-light: #f8fafc !important;
    --bg-white: #ffffff !important;
    --border-color: #e2e8f0 !important;
}

/* Body & Sections Backgrounds */
body {
    background-color: #f8fafc !important;
    color: #334155 !important;
}

.section {
    background-color: #ffffff !important;
    color: #334155 !important;
}

.section-bg-white {
    background-color: #ffffff !important;
}

/* Headings Text Color */
h1, h2, h3, h4, h5, h6 {
    color: var(--mockup-blue) !important;
}

/* Global Border Colors */
.border-top, .border-bottom, hr {
    border-color: #e2e8f0 !important;
}

/* --- Top Bar overrides --- */
.top-bar {
    background-color: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

.top-link, .top-bar-info a {
    color: #475569 !important;
}

.top-link:hover, .top-bar-info a:hover {
    color: #3b82f6 !important;
}

/* --- Project Cards (Premium Clean Look) --- */
.boc-dest-card, .univ-card, .scholarship-item-card, .budget-tier-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

.boc-dest-card:hover, .univ-card:hover, .scholarship-item-card:hover, .budget-tier-card:hover {
    background: #ffffff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1) !important;
}

.boc-dest-card-body h4, .univ-card h4, .scholarship-item-card h4, .budget-tier-card h4 {
    color: var(--mockup-blue) !important;
}

.boc-dest-card-body p, .univ-card p, .scholarship-item-card p, .budget-tier-card p {
    color: #4b5563 !important;
}

.univ-logo-placeholder {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

/* Stats Strip on orange/gold themes */
.univ-stats-strip {
    background-color: #fffbeb !important;
    border-top: 1px solid rgba(245, 158, 11, 0.2) !important;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.univ-stats-strip-item h4 {
    color: #ea580c !important;
}

.univ-stats-strip-item p {
    color: #c2410c !important;
}

/* Scholarship matching box items */
.scholarship-item-card .icon-box {
    background: #f5f3ff !important;
    color: #7c3aed !important;
}

/* Budget calculator & Form fields */
.budget-calc-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
    border: 1px solid #d1fae5 !important;
}

.form-control, 
.budget-calc-card .form-control {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #1e293b !important;
}

.form-control:focus, 
.budget-calc-card .form-control:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
}

/* Testimonials adjustments */
.testimonial-horizontal-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
}

.testimonial-horizontal-body h4 {
    color: var(--mockup-blue) !important;
}

.testimonial-horizontal-body p {
    color: #334155 !important;
}

.testimonial-horizontal-body span, .testimonial-horizontal-body p.text-muted {
    color: #64748b !important;
}

/* Bottom Strip */
.bottom-trust-strip {
    background-color: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}

.bottom-trust-item .icon-circle {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

.bottom-trust-item .text-wrapper h5 {
    color: var(--mockup-blue) !important;
}

.bottom-trust-item .text-wrapper p {
    color: #475569 !important;
}

/* Wishlist Icon fix in header */
.wishlist-heart-btn svg {
    color: #f43f5e !important;
}

/* Service Card v3 dark theme overrides */
.service-card-v3 {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.service-card-v3:hover {
    background-color: #ffffff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1) !important;
}

.service-card-v3 h3 {
    color: var(--mockup-blue) !important;
}

.service-card-v3 p {
    color: #4b5563 !important;
}

.service-card-v3 span {
    color: #3b82f6 !important;
}

/* Course card detail overrides */
.course-card-detail {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    transition: var(--transition);
}

.course-card-detail:hover {
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1) !important;
    transform: translateY(-2px);
}

.course-card-detail h3 {
    color: var(--mockup-blue) !important;
}

.course-card-detail .course-desc {
    color: #4b5563 !important;
}

.course-card-detail .course-duration {
    color: #0284c7 !important;
}

.course-card-detail .course-features-badge {
    color: #4f46e5 !important;
    background-color: #f5f3ff !important;
    border: 1px solid #e0e7ff !important;
}

/* Courses sidebar form styling */
.container > div:last-child > div[style*="position: sticky"] {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

/* Testimonials page overrides */
.testimonial-card-grid {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.testimonial-card-grid:hover {
    background-color: #ffffff !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1) !important;
}

.testimonial-card-grid p.msg {
    color: #334155 !important;
}

.write-review-section {
    background-color: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

/* Success Stories navbar item highlight */
.nav-link[href="testimonials.php"] {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border: 1px solid #bbf7d0 !important;
    padding: 0.35rem 0.85rem !important;
    border-radius: 20px !important;
    color: #166534 !important;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 0 10px rgba(22, 101, 52, 0.05);
}

.nav-link[href="testimonials.php"]::after {
    display: none !important; /* Hide standard underline since it is badged */
}

/* ==========================================================================
   EDUVISTA MOCKUP REDESIGN STYLES (100% SAME AS MOCKUP)
   ========================================================================== */

/* Variables / Color Scheme */
:root {
    --mockup-blue: #0b1a30;
    --mockup-dream-blue: #1e3a8a;
    --mockup-orange: #f97316;
    --mockup-purple: #7c3aed;
    --mockup-green: #22c55e;
    --mockup-light-blue: #f0f9ff;
    --mockup-light-orange: #fff7ed;
    --mockup-light-green: #f0fdf4;
    --mockup-light-yellow: #fefce8;
    --mockup-light-purple: #faf5ff;
    --mockup-light-pink: #fdf2f8;
}

/* Section Common */
.mockup-section {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.mockup-section-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.mockup-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mockup-blue);
    margin: 0;
}

.mockup-section-link {
    color: var(--mockup-dream-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.mockup-section-link:hover {
    color: var(--mockup-orange);
}

/* Hero Section */
.mockup-hero {
    background: linear-gradient(90deg, #f0f6ff 0%, rgba(240, 246, 255, 0) 25%, rgba(240, 246, 255, 0) 75%, #f0f6ff 100%),
                url('../images/hero_student_landmarks.jpg') no-repeat center center !important;
    background-size: cover !important;
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .mockup-hero {
        background: linear-gradient(180deg, rgba(240, 246, 255, 0.95) 0%, rgba(240, 246, 255, 0.85) 100%),
                    url('../images/hero_student_landmarks.jpg') no-repeat center center !important;
        background-size: cover !important;
        padding: 3.5rem 0;
    }
}

.mockup-hero .container {
    max-width: 1440px !important;
    width: 95% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.mockup-hero-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 3rem;
}

.mockup-hero-left-col {
    flex: 1;
    max-width: 42%;
    position: relative;
    z-index: 2;
}

.mockup-hero-form-col {
    flex: 1;
    max-width: 35%;
    position: relative;
    z-index: 2;
}

/* Navbar adjustments to fit 8 links on desktop */
@media (min-width: 992px) {
    .header .nav-menu {
        gap: 1.15rem !important;
    }
    .header .nav-link {
        font-size: 0.88rem !important;
    }
}

/* Hero Left Title */
.mockup-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--mockup-blue) !important;
    margin-bottom: 1.5rem;
}

.mockup-hero-title span.blue {
    color: var(--mockup-dream-blue) !important;
}

.mockup-hero-title span.orange {
    color: var(--mockup-orange) !important;
}

.mockup-hero-title span.purple {
    color: var(--mockup-purple) !important;
}

.mockup-hero-subtitle {
    font-size: 1.05rem;
    color: #374151 !important;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero Stats Badges Grid */
.mockup-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 480px;
}

.mockup-hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mockup-hero-stat-icon {
    width: 20px;
    height: 20px;
    color: var(--mockup-green);
    flex-shrink: 0;
}

.mockup-hero-stat-text {
    font-size: 0.9rem;
    color: #374151;
}

.mockup-hero-stat-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--mockup-blue);
}

/* Hero Center Background Image Wrapper */
.mockup-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 30%;
    width: 44%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.mockup-hero-bg-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0.95;
}

/* Hero Form Card */
.mockup-hero-form-col {
    position: relative;
    z-index: 2;
}

.mockup-hero-form-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 2rem;
    max-width: 440px;
    margin-left: auto;
}

.mockup-hero-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mockup-blue);
    text-align: center;
    margin-bottom: 0.25rem;
}

.mockup-hero-form-card h3 span.blue {
    color: var(--mockup-dream-blue);
}

.mockup-hero-form-card h3 span.orange {
    color: var(--mockup-orange);
}

.mockup-hero-form-card p {
    font-size: 0.85rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.5rem;
}

.mockup-hero-form-group {
    margin-bottom: 1rem;
}

.mockup-hero-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--mockup-blue);
    background: #ffffff;
    transition: border-color 0.2s;
}

.mockup-hero-input:focus {
    outline: none;
    border-color: var(--mockup-dream-blue);
}

/* Phone input layout */
.mockup-phone-group {
    display: flex;
    gap: 0.5rem;
}

.mockup-phone-dropdown {
    width: 80px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #475569;
    background: #f8fafc;
}

/* Submit button */
.mockup-hero-form-btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #f97316 0%, #ec4899 100%); /* Orange to Pink-red gradient */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    margin-top: 0.5rem;
}

.mockup-hero-form-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.mockup-hero-form-privacy {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 0.75rem;
    display: block;
}

/* Social Proof Bar */
.mockup-social-proof {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 1.25rem 0;
    text-align: center;
}

.mockup-social-proof-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.mockup-social-proof-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
}

.mockup-rating-item {
    font-size: 0.9rem;
    color: #1e293b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.mockup-rating-stars {
    color: #eab308; /* Yellow stars */
}

/* Quiz Banner */
.mockup-quiz-banner {
    background: linear-gradient(135deg, #f5f3ff 0%, #e0e7ff 100%);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.mockup-quiz-avatar-col {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
}

.mockup-quiz-avatar {
    width: 130px;
    height: auto;
    display: block;
    object-fit: contain;
}

.mockup-quiz-text-col {
    flex-grow: 1;
    max-width: 280px;
}

.mockup-quiz-text-col h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mockup-blue);
    margin-bottom: 0.5rem;
}

.mockup-quiz-text-col p {
    font-size: 0.88rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
}

.mockup-quiz-steps-col {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mockup-quiz-step-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    width: 110px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.mockup-quiz-step-num {
    display: block;
    font-size: 0.75rem;
    color: var(--mockup-orange);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.mockup-quiz-step-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--mockup-blue);
    line-height: 1.3;
}

.mockup-quiz-arrow {
    font-size: 1.25rem;
    color: #818cf8;
}

.mockup-quiz-cta-col {
    flex-shrink: 0;
    text-align: center;
    position: relative;
}

.mockup-quiz-btn {
    background-color: var(--mockup-purple);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    display: inline-block;
}

.mockup-quiz-btn:hover {
    background-color: #6d28d9;
    transform: translateY(-1px);
}

.mockup-quiz-cta-note {
    font-size: 0.78rem;
    color: #6366f1;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
    font-family: cursive, sans-serif;
}

/* Destination Cards (5-column layout) */
.mockup-dest-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.mockup-dest-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.mockup-dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mockup-dest-img-box {
    height: 130px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.mockup-dest-flag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    width: 28px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.mockup-dest-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mockup-dest-body h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--mockup-blue);
    margin-bottom: 0.75rem;
}

.mockup-dest-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
}

.mockup-dest-table td {
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.mockup-dest-table td:first-child {
    color: #64748b;
    font-weight: 500;
}

.mockup-dest-table td:last-child {
    text-align: right;
    color: var(--mockup-blue);
    font-weight: 700;
}

.mockup-dest-btn {
    width: 100%;
    padding: 0.6rem;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.2s;
    margin-top: auto;
}

.mockup-dest-btn:hover {
    opacity: 0.9;
}

/* Smart Decisions Section (6-column layout) */
.mockup-tools-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

.mockup-tool-card {
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

.mockup-tool-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mockup-tool-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.mockup-tool-card h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--mockup-blue);
    margin-bottom: 0.5rem;
}

.mockup-tool-card p {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Scholarships Section */
.mockup-scholarships-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.mockup-scholarship-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mockup-scholarship-card:hover {
    transform: translateY(-4px);
}

.mockup-scholarship-img {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.mockup-scholarship-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mockup-scholarship-body h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--mockup-blue);
    margin-bottom: 0.15rem;
}

.mockup-scholarship-provider {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.mockup-scholarship-value {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: auto;
}

.mockup-scholarship-amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--mockup-dream-blue);
    margin-bottom: 0.75rem;
}

.mockup-scholarship-badge {
    align-self: flex-start;
    font-size: 0.72rem;
    background-color: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
}

/* Student Success Stories */
.mockup-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.mockup-testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.mockup-testimonial-card:hover {
    transform: translateY(-2px);
}

.mockup-student-profile {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.mockup-student-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f1f5f9;
}

.mockup-student-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--mockup-blue);
}

.mockup-student-uni {
    font-size: 0.75rem;
    color: #64748b;
}

.mockup-testimonial-quote {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Purple Stats Banner */
.mockup-purple-stats-banner {
    background-color: var(--mockup-purple);
    color: #ffffff;
    padding: 2.5rem 0;
}

.mockup-purple-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.mockup-purple-stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mockup-purple-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.mockup-purple-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
}

.mockup-purple-stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Pre-Footer Action Banner */
.mockup-prefooter {
    background: linear-gradient(180deg, #ffffff 0%, #fffbfa 100%);
    padding: 4rem 0;
    border-top: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.mockup-prefooter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.mockup-prefooter-text-col {
    flex-grow: 1;
    max-width: 500px;
    z-index: 2;
}

.mockup-prefooter-text-col h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--mockup-blue);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.mockup-prefooter-text-col p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* skyline backdrop */
.mockup-prefooter-skyline {
    width: 100%;
    max-width: 440px;
    height: auto;
    opacity: 0.15;
    display: block;
}

.mockup-prefooter-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 520px;
    z-index: 2;
}

.mockup-prefooter-action-tile {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: transform 0.2s, box-shadow 0.2s;
}

.mockup-prefooter-action-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mockup-prefooter-tile-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    flex-shrink: 0;
}

.mockup-prefooter-tile-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--mockup-blue);
    margin: 0;
}

.mockup-prefooter-tile-info p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0.15rem 0 0 0;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .mockup-hero-title {
        font-size: 3rem;
    }
    .mockup-hero-bg-wrapper {
        left: 48%;
        width: 25%;
    }
    .mockup-tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mockup-dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .mockup-hero-bg-wrapper {
        display: none;
    }
    .mockup-hero-stats {
        margin-bottom: 2.5rem;
    }
    .mockup-hero-form-card {
        margin-left: 0;
    }
    .mockup-quiz-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }
    .mockup-quiz-avatar-col {
        display: none;
    }
    .mockup-quiz-text-col {
        max-width: 100%;
    }
    .mockup-quiz-steps-col {
        width: 100%;
        justify-content: space-between;
    }
    .mockup-quiz-cta-col {
        width: 100%;
        text-align: left;
    }
    .mockup-dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-scholarships-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-purple-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mockup-prefooter-row {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 767px) {
    .mockup-hero-title {
        font-size: 2.5rem;
    }
    .mockup-hero-stats {
        grid-template-columns: 1fr;
    }
    .mockup-quiz-steps-col {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .mockup-quiz-step-card {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 0.5rem 1rem;
    }
    .mockup-quiz-arrow {
        display: none;
    }
    .mockup-dest-grid {
        grid-template-columns: 1fr;
    }
    .mockup-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-scholarships-grid {
        grid-template-columns: 1fr;
    }
    .mockup-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .mockup-purple-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mockup-prefooter-actions-grid {
        grid-template-columns: 1fr;
    }
}

/* Active navigation link highlights matching the mockup */
.header .nav-link.active {
    color: #1e3a8a !important; /* Royal/Navy Blue */
}

.header .nav-link.active::after {
    width: 100% !important;
    background-color: #3b82f6 !important; /* Royal Blue line */
}

.header .nav-link:hover {
    color: #3b82f6 !important;
}

.header .nav-link:hover::after {
    background-color: #3b82f6 !important;
}

/* Force dark hamburger menu bars on white background */
.hamburger span {
    background-color: #1e293b !important;
}

/* --- Hero Section Height & Size Compactness --- */
.mockup-hero {
    padding: 3rem 0 !important;
}

.mockup-hero-title {
    font-size: 3rem !important;
}

/* --- Quiz Section Compactness & Text Wrapping Fix --- */
.mockup-quiz-banner {
    padding: 1.5rem 2rem !important;
    gap: 1.25rem !important;
}

.mockup-quiz-avatar-col {
    width: 110px !important;
}

.mockup-quiz-avatar {
    width: 100px !important;
}

.mockup-quiz-text-col {
    flex-grow: 1 !important;
    max-width: 320px !important;
    min-width: 240px !important;
    flex-shrink: 0 !important;
}

.mockup-quiz-steps-col {
    gap: 0.75rem !important;
}

.mockup-quiz-step-card {
    padding: 0.6rem 0.8rem !important;
    width: 105px !important;
}

.mockup-quiz-arrow {
    font-size: 1rem !important;
}

.mockup-quiz-text-col h3 {
    color: var(--mockup-blue) !important;
}

.mockup-quiz-text-col p {
    color: #374151 !important;
}

/* --- Card Readability & High Contrast Overrides (Fixing White Text on Light Backgrounds) --- */

/* Destination Cards */
.mockup-dest-card h4 {
    color: var(--mockup-blue) !important;
}

.mockup-dest-table td {
    color: #374151 !important;
    font-weight: 500 !important;
}

/* Smart Tools Cards */
.mockup-tool-card h4 {
    color: var(--mockup-blue) !important;
}

.mockup-tool-card p {
    color: #4b5563 !important;
    font-weight: 500 !important;
}

/* Top Scholarships */
.mockup-scholarship-card h4 {
    color: var(--mockup-blue) !important;
}

.mockup-scholarship-provider {
    color: #4b5563 !important;
}

.mockup-scholarship-value {
    color: #64748b !important;
}

/* Student Success Stories */
.mockup-student-name {
    color: var(--mockup-blue) !important;
}

.mockup-student-uni {
    color: #4b5563 !important;
}

.mockup-testimonial-quote {
    color: #374151 !important;
}

/* Pre-footer Action Tiles */
.mockup-prefooter-action-tile h4 {
    color: var(--mockup-blue) !important;
}

.mockup-prefooter-action-tile p {
    color: #4b5563 !important;
}

/* Page Hero Contrast fixes for subpages (White text on dark header banner) */
.page-hero h1 {
    color: #ffffff !important;
}

.page-hero p {
    color: #e2e8f0 !important;
}

/* Destination card overlays should have white headings */
.destination-card-v2 h3,
.destination-card-v2 .overlay h3 {
    color: #ffffff !important;
}

/* Footer & Newsletter Header Contrast fixes (White text on dark footer backgrounds) */
.footer-subscribe-bar-container h3,
.footer h4,
.footer-column h4 {
    color: #ffffff !important;
}

.footer-subscribe-bar-container p {
    color: #94a3b8 !important;
}

/* --- Mobile Layout Adjustments (Making Header & Hero Mobile Friendly) --- */

/* Hide phone contact and Counselling CTA stack in mobile header to prevent overcrowding */
@media (max-width: 767px) {
    .header .nav-right-container {
        display: none !important;
    }
}

/* Stack Hero text and registration form card vertically on mobile and tablet viewports */
@media (max-width: 991px) {
    .mockup-hero-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 2.5rem !important;
    }
    .mockup-hero-left-col {
        max-width: 100% !important;
        text-align: left !important;
    }
    .mockup-hero-form-col {
        max-width: 100% !important;
    }
    .mockup-hero-title {
        font-size: 2.25rem !important;
        text-align: left !important;
    }
    .mockup-hero-subtitle {
        margin: 0 0 2rem 0 !important;
        max-width: 100% !important;
        text-align: left !important;
    }
    .mockup-hero-stats {
        margin: 0 !important;
        max-width: 100% !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Hide quiz steps on mobile and tablet viewports to restore original responsive design intent */
@media (max-width: 991px) {
    .mockup-quiz-steps-col {
        display: none !important;
    }
}

/* --- Premium & Colorful Footer Design Overhaul --- */

/* 1. Newsletter Subscribe Section: Premium Colorful Gradient */
.footer-subscribe-bar-container {
    max-width: 1200px;
    margin: 0 auto;
}

div[style*="background-color: #05060b"][style*="border-top"] {
    background: linear-gradient(135deg, #0b1a30 0%, #1e3a8a 50%, #4f46e5 100%) !important;
    border-top: none !important;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
}

div[style*="background-color: #05060b"][style*="border-top"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.footer-subscribe-bar-container h3 {
    color: #ffffff !important;
    font-size: 1.6rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.footer-subscribe-bar-container p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer-subscribe-bar-container .btn-secondary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3) !important;
    transition: var(--transition) !important;
}

.footer-subscribe-bar-container .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(234, 88, 12, 0.4) !important;
}

/* 2. Main Footer Segment: Dark Theme with Gradient Top Border */
.footer {
    background-color: #080b11 !important;
    border-top: 4px solid transparent !important;
    border-image: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899, #f97316) 1 !important;
    padding-top: 4rem !important;
}

.footer h4 {
    color: #ffffff !important;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

/* 3. Social Icons: Colorful Brand Color Hover Transitions */
.footer-socials a {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #94a3b8 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.footer-socials a[aria-label="Facebook"]:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.footer-socials a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.footer-socials a[aria-label="LinkedIn"]:hover {
    background: #0a66c2 !important;
    border-color: #0a66c2 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}

/* 4. Pinned Mobile Navigation App Tab Bar: Glassmorphic & Multi-colored Active Icons */
@media (max-width: 767px) {
    .mobile-bottom-nav {
        background-color: rgba(255, 255, 255, 0.88) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-top: 1px solid rgba(226, 232, 240, 0.8) !important;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.06) !important;
    }
    
    .mobile-nav-item {
        color: #64748b !important;
    }
    
    /* Unique Active Colors matching premium web applications */
    .mobile-nav-item.active[href="index.php"] {
        color: #2563eb !important; /* Royal Blue */
    }
    .mobile-nav-item.active[href="index.php"] .mobile-nav-icon {
        stroke: #2563eb !important;
    }
    
    .mobile-nav-item.active[href="services.php"] {
        color: #7c3aed !important; /* Deep Purple */
    }
    .mobile-nav-item.active[href="services.php"] .mobile-nav-icon {
        stroke: #7c3aed !important;
    }
    
    .mobile-nav-item.active[href="destinations.php"] {
        color: #0284c7 !important; /* Sky Blue */
    }
    .mobile-nav-item.active[href="destinations.php"] .mobile-nav-icon {
        stroke: #0284c7 !important;
    }
    
    .mobile-nav-item.active[href="universities.php"] {
        color: #ea580c !important; /* Vibrant Orange */
    }
    .mobile-nav-item.active[href="universities.php"] .mobile-nav-icon {
        stroke: #ea580c !important;
    }
    
    .mobile-nav-item.active[href="contact.php"] {
        color: #10b981 !important; /* Emerald Green */
    }
    .mobile-nav-item.active[href="contact.php"] .mobile-nav-icon {
        stroke: #10b981 !important;
    }
}

/* --- Redesigned Capsule-based Operational Process Section --- */
.mockup-process-section {
    position: relative;
    overflow: hidden;
}

.mockup-process-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.mockup-process-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.mockup-process-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.mockup-process-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 105px;
}

.mockup-process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.mockup-process-left-cap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 100px 0 0 100px;
}

.mockup-process-num {
    background: #ffffff;
    color: #0f172a;
    font-size: 2.25rem;
    font-weight: 800;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.mockup-process-body {
    flex-grow: 1;
    padding: 1.25rem 2rem 1.25rem 150px; /* Offset for left cap width */
    text-align: left;
}

.mockup-process-step-label {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.mockup-process-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0b1a30;
    margin-bottom: 0.25rem;
}

.mockup-process-desc {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

.mockup-process-right-badge {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* Colors and Gradients per step */

/* Step 1: Blue */
.mockup-process-card.step-1 {
    background: linear-gradient(to right, #eff6ff 0%, #ffffff 100%);
    border: 1px solid #dbeafe;
}
.mockup-process-card.step-1 .mockup-process-left-cap {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}
.mockup-process-card.step-1 .mockup-process-step-label {
    color: #2563eb;
}
.mockup-process-card.step-1 .mockup-process-right-badge {
    border: 2px dashed #2563eb;
    color: #2563eb;
}

/* Step 2: Green */
.mockup-process-card.step-2 {
    background: linear-gradient(to right, #f0fdf4 0%, #ffffff 100%);
    border: 1px solid #dcfce7;
}
.mockup-process-card.step-2 .mockup-process-left-cap {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}
.mockup-process-card.step-2 .mockup-process-step-label {
    color: #16a34a;
}
.mockup-process-card.step-2 .mockup-process-right-badge {
    border: 2px dashed #16a34a;
    color: #16a34a;
}

/* Step 3: Orange */
.mockup-process-card.step-3 {
    background: linear-gradient(to right, #fff7ed 0%, #ffffff 100%);
    border: 1px solid #ffedd5;
}
.mockup-process-card.step-3 .mockup-process-left-cap {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}
.mockup-process-card.step-3 .mockup-process-step-label {
    color: #f97316;
}
.mockup-process-card.step-3 .mockup-process-right-badge {
    border: 2px dashed #f97316;
    color: #f97316;
}

/* Step 4: Purple */
.mockup-process-card.step-4 {
    background: linear-gradient(to right, #faf5ff 0%, #ffffff 100%);
    border: 1px solid #f3e8ff;
}
.mockup-process-card.step-4 .mockup-process-left-cap {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.mockup-process-card.step-4 .mockup-process-step-label {
    color: #8b5cf6;
}
.mockup-process-card.step-4 .mockup-process-right-badge {
    border: 2px dashed #8b5cf6;
    color: #8b5cf6;
}

/* Step 5: Teal/Cyan */
.mockup-process-card.step-5 {
    background: linear-gradient(to right, #f0fdfa 0%, #ffffff 100%);
    border: 1px solid #ccfbf1;
}
.mockup-process-card.step-5 .mockup-process-left-cap {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}
.mockup-process-card.step-5 .mockup-process-step-label {
    color: #0d9488;
}
.mockup-process-card.step-5 .mockup-process-right-badge {
    border: 2px dashed #0d9488;
    color: #0d9488;
}

/* --- Bottom Strip --- */
.mockup-process-bottom-strip {
    background-color: var(--secondary) !important;
    border-radius: 16px;
    margin-top: 3.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mockup-process-strip-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1.25rem;
}

.mockup-process-strip-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
    justify-content: center;
    min-width: 160px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-process-strip-item:last-child {
    border-right: none;
}

.mockup-process-strip-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.mockup-process-strip-icon-box.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.mockup-process-strip-icon-box.green {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}
.mockup-process-strip-icon-box.orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.mockup-process-strip-icon-box.teal {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.mockup-process-strip-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #ffffff;
}

.mockup-process-strip-footer .footer-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.mockup-process-strip-footer .arrow {
    color: #34ad54;
    font-size: 1.25rem;
}

/* Mobile Responsiveness for process section */
@media (max-width: 767px) {
    .mockup-process-card {
        flex-direction: column;
        border-radius: 20px;
        min-height: auto;
        padding-top: 100px; /* Offset for left cap positioned at top */
    }
    
    .mockup-process-left-cap {
        width: 100%;
        height: 80px;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .mockup-process-body {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        text-align: center;
    }
    
    .mockup-process-right-badge {
        margin: 0 0 1.5rem 0;
    }
    
    .mockup-process-strip-item {
        border-right: none;
        flex: 1 1 40%;
    }
    
    .mockup-process-strip-footer .footer-text {
        font-size: 0.95rem;
    }
}

/* --- Redesigned Why Choose EduVista Section --- */
.mockup-whychoose-section {
    position: relative;
    padding: 4.5rem 0 15rem 0 !important; /* Large bottom padding for the background banner overlap */
    background-color: #f8fafc !important;
}

.mockup-whychoose-header {
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 5;
}

.mockup-whychoose-header .script-title {
    font-family: 'Playball', 'Alex Brush', cursive;
    font-size: 2.5rem;
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.25rem;
}

.mockup-whychoose-header .bold-title {
    font-family: 'Rubik', sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    color: #0b1a30 !important;
    letter-spacing: -0.5px;
    margin: 0;
}

.mockup-whychoose-header .three-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin: 0.75rem 0 1.25rem 0;
}

.mockup-whychoose-header .three-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-whychoose-header .three-dots .dot.blue { background-color: #2563eb; }
.mockup-whychoose-header .three-dots .dot.teal { background-color: #0d9488; }
.mockup-whychoose-header .three-dots .dot.green { background-color: #16a34a; }

.mockup-whychoose-header .commitment-ribbon {
    background: linear-gradient(135deg, #0b1a30 0%, #1e3a8a 100%);
    padding: 0.6rem 2.5rem;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(11, 26, 48, 0.2);
}

.mockup-whychoose-header .commitment-ribbon span {
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 600;
}

/* 2-column Grid of cards */
.mockup-whychoose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.mockup-whychoose-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: none;
    padding: 0;
    position: relative;
    height: 70px;
    transition: all 0.25s ease;
}

.mockup-whychoose-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
    border-color: #cbd5e1;
}

/* Left Pointed Ribbon/Tag Icon Block */
.mockup-whychoose-ribbon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    padding-right: 8px;
}

.mockup-whychoose-ribbon .icon-circle {
    background: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.mockup-whychoose-ribbon svg {
    width: 20px;
    height: 20px;
}

.mockup-whychoose-card-content {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 80px; /* Offset for ribbon width */
    padding-right: 1.5rem;
}

.mockup-whychoose-num {
    font-size: 2rem;
    font-weight: 800;
    margin-right: 1rem;
    line-height: 1;
    width: 40px;
    flex-shrink: 0;
    text-align: center;
}

.mockup-whychoose-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0b1a30;
    margin: 0;
    line-height: 1.35;
    text-align: left;
}

/* Alternate Colors matching the mockup */
/* Teal/Blue Theme */
.mockup-whychoose-card.color-teal .mockup-whychoose-ribbon {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}
.mockup-whychoose-card.color-teal .mockup-whychoose-ribbon svg {
    color: #0d9488;
}
.mockup-whychoose-card.color-teal .mockup-whychoose-num {
    color: #0d9488;
}

/* Green Theme */
.mockup-whychoose-card.color-green .mockup-whychoose-ribbon {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}
.mockup-whychoose-card.color-green .mockup-whychoose-ribbon svg {
    color: #16a34a;
}
.mockup-whychoose-card.color-green .mockup-whychoose-num {
    color: #16a34a;
}

/* Dark Blue Theme */
.mockup-whychoose-card.color-darkblue .mockup-whychoose-ribbon {
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}
.mockup-whychoose-card.color-darkblue .mockup-whychoose-ribbon svg {
    color: #1e3a8a;
}
.mockup-whychoose-card.color-darkblue .mockup-whychoose-num {
    color: #1e3a8a;
}

/* Blue/Cyan Theme */
.mockup-whychoose-card.color-blue .mockup-whychoose-ribbon {
    background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
}
.mockup-whychoose-card.color-blue .mockup-whychoose-ribbon svg {
    color: #2563eb;
}
.mockup-whychoose-card.color-blue .mockup-whychoose-num {
    color: #2563eb;
}

/* 3. Bottom Background Graphic overlapping banner */
.mockup-whychoose-bottom-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background-image: url('../images/why_choose_bottom_banner.jpg');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .mockup-whychoose-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
    .mockup-whychoose-section {
        padding-bottom: 220px !important;
    }
    .mockup-whychoose-bottom-banner {
        height: 160px;
    }
    .mockup-whychoose-header .bold-title {
        font-size: 2.25rem;
    }
}

