/* =========================================================
   ZEE GLOBAL EDUCATION SERVICES
   STYLE.CSS (PART 1)

   Includes:
   - CSS Variables
   - Reset
   - Base Styles
   - Typography
   - Layout Utilities
   - Buttons
   - Navigation
   - Mobile Navigation
   - Hero Section
   - Accessibility Features
   - Reduced Motion Support
========================================================= */


/* =========================================================
   CSS VARIABLES
========================================================= */

:root {

    /* Brand Colors */
    --navy-950: #040912;
    --navy-900: #07142B;
    --navy-800: #0D1E3D;
    --navy-700: #122A55;
    --navy-600: #183770;

    --gold-500: #D4AF37;
    --gold-400: #E2C76A;
    --gold-300: #F1DEA2;

    --white: #F7F8FA;
    --gray-100: #ECEFF4;
    --gray-200: #D9DEE8;
    --gray-300: #BFC7D5;
    --gray-400: #94A0B8;

    --success: #2FBF71;
    --danger: #E24C4C;

    /* Typography */
    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;

    /* Widths */
    --container-width: 1200px;
    --container-narrow: 900px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 36px;

    /* Shadows */
    --shadow-sm:
        0 4px 12px rgba(0,0,0,0.15);

    --shadow-md:
        0 12px 35px rgba(0,0,0,0.25);

    --shadow-lg:
        0 20px 60px rgba(0,0,0,0.35);

    --shadow-gold:
        0 0 30px rgba(212,175,55,0.20);

    /* Timing */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.35s ease;
    --transition-slow: 0.6s ease;

    /* Header */
    --header-height: 88px;

    /* Glass */
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.12);

}


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

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

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}


/* =========================================================
   BASE STYLES
========================================================= */

html {
    overflow-x: hidden;
}

body {

    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;

    color: var(--white);

    background:
        radial-gradient(
            circle at top right,
            rgba(212,175,55,0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(255,255,255,0.03),
            transparent 25%
        ),
        var(--navy-900);

    overflow-x: hidden;
}

::selection {
    background: var(--gold-500);
    color: var(--navy-900);
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

p {
    color: var(--gray-100);
}

.section-tag {

    display: inline-flex;
    align-items: center;
    gap: 0.75rem;

    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;

    color: var(--gold-500);

    margin-bottom: 1rem;
}

.section-tag::before {

    content: "";

    width: 42px;
    height: 2px;

    background: var(--gold-500);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}


/* =========================================================
   LAYOUT UTILITIES
========================================================= */

.container {

    width: min(
        calc(100% - 2rem),
        var(--container-width)
    );

    margin-inline: auto;
}

.container-narrow {

    width: min(
        calc(100% - 2rem),
        var(--container-narrow)
    );

    margin-inline: auto;
}

.section {
    padding: 7rem 0;
}

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

.glass {

    background: var(--glass-bg);

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

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: var(--radius-lg);
}


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

.btn {

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

    gap: 0.65rem;

    padding: 1rem 1.8rem;

    border-radius: 999px;

    font-weight: 700;
    font-size: 0.95rem;

    transition:
        transform var(--transition-normal),
        background var(--transition-normal),
        color var(--transition-normal),
        box-shadow var(--transition-normal);

    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {

    background: var(--gold-500);
    color: var(--navy-900);

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

.btn-primary:hover {
    background: var(--gold-400);
}

.btn-secondary {

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

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

    color: var(--white);

    backdrop-filter: blur(12px);
}

.btn-secondary:hover {

    border-color: var(--gold-500);

    color: var(--gold-500);
}


/* =========================================================
   NAVIGATION
========================================================= */

.header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    background: var(--white);
    box-shadow: 0 2px 16px rgba(4,9,18,0.08);

    transition:
        background var(--transition-normal),
        box-shadow var(--transition-normal);
}

.header.scrolled {

    background: var(--white);

    backdrop-filter: blur(20px);

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

.header .nav-menu a {
    color: var(--navy-900);
}

.header .nav-menu a:hover {
    color: var(--gold-500);
}

.header .mobile-toggle {
    color: var(--navy-900);
}

.navbar {

    height: var(--header-height);

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

.logo img {

    width: auto;
    height: 64px;

    object-fit: contain;
}

.nav-menu {

    display: flex;
    align-items: center;

    gap: 2rem;
}

.nav-menu a {

    position: relative;

    font-weight: 600;

    transition:
        color var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--gold-500);
}

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--gold-500);

    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {

    display: flex;
    align-items: center;
    gap: 1rem;
}


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

.mobile-toggle {

    display: none;

    width: 52px;
    height: 52px;

    border-radius: 50%;

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

    gap: 0.35rem;

    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: var(--white);

    transition:
        background var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal);
}

.mobile-toggle:hover {

    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.35);
}

.mobile-toggle-bars {

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle-bars span {

    display: block;
    width: 22px;
    height: 2px;

    border-radius: 999px;
    background: currentColor;

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}

.mobile-toggle-chevron {

    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);

    transition: transform var(--transition-normal);
}

.mobile-menu-open .mobile-toggle {

    color: var(--gold-300);
    transform: translateY(-1px);
}

.mobile-menu-open .mobile-toggle-bars span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-open .mobile-toggle-bars span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .mobile-toggle-bars span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-open .mobile-toggle-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}


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

.hero {

    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: var(--header-height);
}

.hero-bg {

    position: absolute;
    inset: 0;

    background-image:
        url("../assets/images/hero/hero-campus.jpg");

    background-position: center;
    background-size: cover;

    animation:
        heroZoom 24s ease-in-out infinite alternate;

    transform-origin: center center;
}

.hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(4,9,18,0.88),
            rgba(7,20,43,0.70)
        );
}

.hero-content {

    position: relative;
    z-index: 2;
}

.hero-text {

    max-width: 760px;
}

.hero-tag {

    display: inline-flex;

    padding: 0.6rem 1rem;

    margin-bottom: 1.5rem;

    border-radius: 999px;

    border: 1px solid rgba(212,175,55,0.25);

    background:
        rgba(212,175,55,0.08);

    color: var(--gold-400);

    font-weight: 600;
}

.hero h1 {

    margin-bottom: 1.5rem;
}

.hero h1 span {

    color: var(--gold-500);
}

.hero p {

    max-width: 680px;

    font-size: 1.15rem;

    margin-bottom: 2rem;

    color: var(--gray-100);
}

.article-hero {

    min-height: 78vh;
}

.article-hero::before,
.article-hero::after {

    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.article-hero::before {

    inset: auto 8% 12% auto;
    width: min(28vw, 360px);
    height: min(28vw, 360px);
    border: 1px solid rgba(226,199,106,0.22);
    border-radius: 50%;
    box-shadow: inset 0 0 60px rgba(226,199,106,0.08);
    animation: articleRingFloat 10s ease-in-out infinite alternate;
}

.article-hero::after {

    inset: 18% auto auto 6%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47,191,113,0.18), transparent 68%);
    filter: blur(4px);
}

.article-hero .hero-overlay {

    background:
        linear-gradient(90deg, rgba(4,9,18,0.94) 0%, rgba(7,20,43,0.76) 48%, rgba(4,9,18,0.46) 100%),
        radial-gradient(circle at 72% 42%, rgba(212,175,55,0.24), transparent 34%);
}

.article-hero-grid {

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
    gap: clamp(2rem, 6vw, 5rem);
}

.article-hero .hero-text {

    max-width: 820px;
}

.article-hero .hero-tag {

    border-color: rgba(226,199,106,0.42);
    background: rgba(7,20,43,0.54);
    box-shadow: 0 16px 40px rgba(0,0,0,0.24);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.article-hero h1 {

    max-width: 900px;
    text-wrap: balance;
}

.article-hero-panel {

    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.article-hero-panel::before {

    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, transparent, rgba(226,199,106,0.22), transparent);
    transform: translateX(-100%);
    animation: articlePanelSheen 7s ease-in-out infinite;
}

.article-hero-panel-header,
.article-hero-stats,
.article-hero-progress,
.article-hero-panel p {

    position: relative;
    z-index: 1;
}

.article-hero-panel-header {

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.article-hero-panel-header span {

    color: var(--gold-300);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-hero-panel-header strong {

    color: var(--white);
    font-family: var(--font-heading);
    font-size: 4.6rem;
    line-height: 0.85;
}

.article-hero-stats {

    display: grid;
    gap: 0.65rem;
    margin-bottom: 1.1rem;
}

.article-hero-stats span {

    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: var(--radius-sm);
    background: rgba(4,9,18,0.30);
    color: var(--gray-100);
    font-size: 0.9rem;
    font-weight: 700;
}

.article-hero-progress {

    height: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.13);
}

.article-hero-progress span {

    display: block;
    width: 74%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-500), var(--success));
    box-shadow: 0 0 24px rgba(226,199,106,0.34);
}

.article-hero-panel p {

    margin: 0;
    color: var(--gray-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

.article-hero-panel:hover {

    transform: translateY(-4px);
    border-color: rgba(226,199,106,0.34);
    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal);
}

@keyframes articleRingFloat {

    from {
        transform: translate3d(0, 0, 0) scale(1);
    }

    to {
        transform: translate3d(-18px, -14px, 0) scale(1.05);
    }
}

@keyframes articlePanelSheen {

    0%,
    58% {
        transform: translateX(-105%);
    }

    100% {
        transform: translateX(105%);
    }
}

.hero-buttons {

    display: flex;
    align-items: center;

    gap: 1rem;

    flex-wrap: wrap;
}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}


/* =========================================================
   ACCESSIBILITY FEATURES
========================================================= */

:focus-visible {

    outline: 3px solid var(--gold-500);
    outline-offset: 4px;
}

.skip-link {

    position: absolute;

    left: -999px;
    top: 0;

    background: var(--gold-500);
    color: var(--navy-900);

    padding: 1rem;
    z-index: 9999;
}

.skip-link:focus {
    left: 1rem;
}


/* =========================================================
   REDUCED MOTION SUPPORT
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

        scroll-behavior: auto !important;
    }

    .hero-bg {
        animation: none;
    }
}

-

/* =========================================================
   ZEE GLOBAL EDUCATION SERVICES
   STYLE.CSS (PART 2)

   Includes:
   • Stats Section
   • About Preview Section
   • Feature List
   • Shared Card Components
   • Hover Effects
   • Scroll Reveal Base Classes
   • Services Section
   • Service Cards

   End exactly after Services Section styles
========================================================= */


/* =========================================================
   STATS SECTION
========================================================= */

.stats {

    position: relative;

    margin-top: -80px;
    z-index: 5;
}

.stats-grid {

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

    gap: 1.5rem;
}

.stat-card {

    position: relative;

    padding: 2rem 1.5rem;

    text-align: center;

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

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

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-radius: var(--radius-lg);

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

    overflow: hidden;

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.stat-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-500),
            transparent
        );
}

.stat-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(212,175,55,0.35);

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

.stat-card h3 {

    font-size: clamp(2.2rem, 4vw, 3.5rem);

    font-weight: 700;

    color: var(--gold-500);

    margin-bottom: 0.5rem;
}

.stat-card p {

    color: var(--gray-200);

    font-size: 0.95rem;

    font-weight: 500;
}


/* =========================================================
   ABOUT PREVIEW SECTION
========================================================= */

.about-preview {

    position: relative;
}

.about-grid {

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

    align-items: center;

    gap: 5rem;
}

.about-image {

    position: relative;
}

.about-image img {

    width: 100%;
    height: 650px;

    object-fit: cover;

    border-radius: var(--radius-xl);

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

.about-image::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -30px;
    right: -30px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.18),
            transparent 70%
        );

    z-index: -1;
}

.about-content {

    position: relative;
}

.about-content p {

    margin-bottom: 1.5rem;

    color: var(--gray-100);

    font-size: 1.05rem;
}

.about-content .btn {

    margin-top: 2rem;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {

    margin-top: 2rem;

    display: grid;

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

    gap: 1rem;
}

.feature-list li {

    position: relative;

    padding-left: 2rem;

    color: var(--gray-100);

    font-weight: 500;
}

.feature-list li::before {

    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: var(--gold-500);

    font-weight: 700;
}


/* =========================================================
   SHARED CARD COMPONENTS
========================================================= */

.card-base {

    position: relative;

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

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

    border-radius: var(--radius-lg);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    overflow: hidden;

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.card-base::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(212,175,55,0.05),
            transparent
        );

    opacity: 0;

    transition:
        opacity var(--transition-normal);
}

.card-base:hover::before {

    opacity: 1;
}

.card-base:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(212,175,55,0.30);

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


/* =========================================================
   GLOBAL HOVER EFFECTS
========================================================= */

.hover-lift {

    transition:
        transform var(--transition-normal);
}

.hover-lift:hover {

    transform:
        translateY(-8px);
}

.hover-glow:hover {

    box-shadow:
        0 0 30px rgba(212,175,55,0.20);
}

.hover-scale {

    transition:
        transform var(--transition-normal);
}

.hover-scale:hover {

    transform:
        scale(1.03);
}


/* =========================================================
   SCROLL REVEAL BASE CLASSES
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-left {

    opacity: 0;

    transform:
        translateX(-50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-right {

    opacity: 0;

    transform:
        translateX(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal-scale {

    opacity: 0;

    transform:
        scale(0.95);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {

    opacity: 1;

    transform:
        translate(0,0)
        scale(1);
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.services {

    position: relative;
}

.services-grid {

    display: grid;

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

    gap: 2rem;
}

.service-card {

    position: relative;

    padding: 2.5rem;

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

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

    border-radius:
        var(--radius-lg);

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    overflow: hidden;

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-500),
            transparent
        );
}

.service-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(212,175,55,0.08),
            transparent 50%
        );

    pointer-events: none;
}

.service-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(212,175,55,0.30);

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

.service-card h3 {

    margin-bottom: 1rem;

    color: var(--white);

    font-size: 1.8rem;
}

.service-card p {

    color: var(--gray-200);

    line-height: 1.8;
}

.service-card .service-link {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    margin-top: 1.5rem;

    color: var(--gold-500);

    font-weight: 600;
}

.service-card .service-link:hover {

    color: var(--gold-300);
}

-

/* =========================================================
   ZEE GLOBAL EDUCATION SERVICES
   STYLE.CSS (PART 3)

   Includes:
   • Destinations Section
   • Destination Cards
   • Process Section
   • Timeline Connector Line
   • Team Section
   • Team Cards
   • Team Images
   • Team Social Links Styling
   • Hover Effects

   End exactly after Team Section styles
========================================================= */


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

.destinations {

    position: relative;

    overflow: hidden;
}

.destinations::before {

    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.08),
            transparent 70%
        );

    pointer-events: none;
}

.destination-grid {

    display: grid;

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

    gap: 2rem;
}


/* =========================================================
   DESTINATION CARDS
========================================================= */

.destination-card {

    position: relative;

    display: block;

    height: 420px;

    border-radius: var(--radius-xl);

    overflow: hidden;

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

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.destination-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1.2s ease;
}

.destination-card::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4,9,18,0.95),
            rgba(4,9,18,0.20),
            transparent
        );

    z-index: 1;
}

.destination-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,0.08),
            transparent
        );

    opacity: 0;

    transition:
        opacity var(--transition-normal);

    z-index: 2;
}

.destination-card span {

    position: absolute;

    left: 2rem;
    bottom: 2rem;

    z-index: 3;

    font-family: var(--font-heading);

    font-size: 2rem;
    font-weight: 700;

    color: var(--white);

    transition:
        color var(--transition-normal),
        transform var(--transition-normal);
}

.destination-card:hover {

    transform:
        translateY(-10px);

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

.destination-card:hover img {

    transform:
        scale(1.10);
}

.destination-card:hover::after {

    opacity: 1;
}

.destination-card:hover span {

    color: var(--gold-500);

    transform:
        translateY(-5px);
}


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

.process {

    position: relative;

    overflow: hidden;
}

.process-grid {

    position: relative;

    display: grid;

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

    gap: 2rem;

    margin-top: 5rem;
}


/* =========================================================
   TIMELINE CONNECTOR LINE
========================================================= */

.process-grid::before {

    content: "";

    position: absolute;

    top: 40px;
    left: 10%;
    right: 10%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--gold-500),
            var(--gold-300),
            var(--gold-500)
        );

    z-index: 0;
}

.process-step {

    position: relative;

    text-align: center;

    z-index: 1;
}

.step-number {

    width: 80px;
    height: 80px;

    margin: 0 auto 1.5rem;

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

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold-500),
            var(--gold-400)
        );

    color: var(--navy-900);

    font-weight: 800;
    font-size: 1.25rem;

    box-shadow:
        0 0 30px rgba(212,175,55,0.25);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.process-step h3 {

    font-size: 1.25rem;

    color: var(--white);

    max-width: 160px;

    margin: 0 auto;
}

.process-step:hover .step-number {

    transform:
        scale(1.08);

    box-shadow:
        0 0 45px rgba(212,175,55,0.45);
}


/* =========================================================
   TEAM SECTION
========================================================= */

.team {

    position: relative;

    overflow: hidden;
}

.team::before {

    content: "";

    position: absolute;

    bottom: -250px;
    left: -250px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.07),
            transparent 70%
        );

    pointer-events: none;
}

.team-grid {

    display: grid;

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

    gap: 2rem;
}


/* =========================================================
   TEAM CARDS
========================================================= */

.team-card {

    position: relative;

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

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

    border-radius:
        var(--radius-xl);

    overflow: hidden;

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.team-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(212,175,55,0.30);

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

.team-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-500),
            transparent
        );
}


/* =========================================================
   TEAM IMAGES
========================================================= */

.team-card img {

    width: 100%;
    height: 360px;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}

.team-card:hover img {

    transform:
        scale(1.05);
}

.team-card h3 {

    padding:
        2rem 2rem 0.5rem;

    color:
        var(--white);
}

.team-card .role {

    padding:
        0 2rem;

    color:
        var(--gold-500);

    font-weight: 600;

    margin-bottom: 1rem;
}

.team-card p:not(.role) {

    padding:
        0 2rem;

    color:
        var(--gray-200);
}

.team-card p:not(.role):last-child {

    padding-bottom: 2rem;
}

.team-card p:not(.role) + p:not(.role) {

    margin-top: -0.65rem;
}


/* =========================================================
   TEAM SOCIAL LINKS STYLING
========================================================= */

.team-social {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding:
        0 2rem 2rem;
}

.team-social a {

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

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

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

    color:
        var(--gray-100);

    transition:
        all var(--transition-normal);
}

.team-social a:hover {

    background:
        var(--gold-500);

    color:
        var(--navy-900);

    border-color:
        var(--gold-500);

    transform:
        translateY(-4px);
}


/* =========================================================
   TEAM HOVER EFFECTS
========================================================= */

.team-card:hover h3 {

    color:
        var(--gold-400);
}

.team-card:hover .role {

    color:
        var(--gold-300);
}

.team-card:hover::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(212,175,55,0.03),
            transparent
        );

    pointer-events: none;
}

-

/* =========================================================
   ZEE GLOBAL EDUCATION SERVICES
   STYLE.CSS (PART 4)

   Includes:
   • Blog Preview Section
   • Blog Cards
   • Blog Images
   • Blog Content Styling
   • CTA Band
   • Footer
   • Footer Grid
   • Footer Links
   • Footer Bottom Bar
   • Hover Effects

   End exactly after Footer styles
========================================================= */


/* =========================================================
   BLOG PREVIEW SECTION
========================================================= */

.blog-preview {

    position: relative;

    overflow: hidden;
}

.blog-preview::before {

    content: "";

    position: absolute;

    top: -200px;
    right: -200px;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.08),
            transparent 70%
        );

    pointer-events: none;
}

.blog-grid {

    display: grid;

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

    gap: 2rem;
}


/* =========================================================
   BLOG CARDS
========================================================= */

.blog-card {

    position: relative;

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

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

    border-radius:
        var(--radius-xl);

    overflow: hidden;

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
}

.blog-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(212,175,55,0.30);

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

.blog-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold-500),
            transparent
        );

    z-index: 2;
}

.blog-card-featured {

    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(13,30,61,0.92), rgba(7,20,43,0.98));
}

.blog-media {

    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(212,175,55,0.22), rgba(7,20,43,0.88)),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 30%);
}

.blog-media::after {

    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 38%, rgba(4,9,18,0.58));
    pointer-events: none;
}

.blog-media-badge,
.blog-meta {

    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-media-badge {

    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 2;
    padding: 0.45rem 0.75rem;
    background: rgba(4,9,18,0.72);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blog-meta {

    margin-bottom: 0.85rem;
    padding: 0.35rem 0.7rem;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.20);
    color: var(--gold-300);
}


/* =========================================================
   BLOG IMAGES
========================================================= */

.blog-card img {

    width: 100%;
    height: 260px;

    object-fit: cover;

    transition:
        transform 1s ease;
}

.blog-media img {

    height: 220px;
    min-height: 220px;
    filter: saturate(1.04) contrast(1.02);
}

.blog-card-visa {

    background:
        linear-gradient(180deg, rgba(13,30,61,0.96), rgba(7,20,43,0.98));
}

.blog-media-visa {

    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 1.25rem;
    background:
        linear-gradient(135deg, rgba(4,9,18,0.88), rgba(13,30,61,0.72)),
        radial-gradient(circle at 22% 20%, rgba(212,175,55,0.26), transparent 34%),
        radial-gradient(circle at 80% 72%, rgba(47,191,113,0.16), transparent 38%);
}


.blog-card:hover img {

    transform:
        scale(1.08);
}


/* =========================================================
   BLOG CONTENT STYLING
========================================================= */

.blog-content {

    padding: 2rem;
}

.blog-content h3 {

    margin-bottom: 1rem;

    font-size: 1.7rem;

    color:
        var(--white);

    line-height: 1.25;

    transition:
        color var(--transition-normal);
}

.blog-card:hover h3 {

    color:
        var(--gold-400);
}

.blog-content p {

    color:
        var(--gray-200);

    margin-bottom: 1.5rem;
}

.blog-content a {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    font-weight: 700;

    color:
        var(--gold-500);

    transition:
        color var(--transition-normal),
        transform var(--transition-normal);
}

.blog-content a::after {

    content: "→";

    transition:
        transform var(--transition-normal);
}

.blog-content a:hover {

    color:
        var(--gold-300);
}

.blog-content a:hover::after {

    transform:
        translateX(5px);
}


/* =========================================================
   CTA BAND
========================================================= */

.cta-band {

    position: relative;

    padding:
        7rem 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,0.12),
            rgba(212,175,55,0.05)
        );
}

.cta-band::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at top right,
            rgba(212,175,55,0.12),
            transparent 40%
        );
}

.cta-band .container {

    position: relative;

    z-index: 2;

    text-align: center;

    max-width: 900px;
}

.cta-band h2 {

    margin-bottom: 1rem;

    color:
        var(--white);
}

.cta-band p {

    max-width: 700px;

    margin:
        0 auto 2rem;

    color:
        var(--gray-100);

    font-size: 1.1rem;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 1rem;

    flex-wrap: wrap;
}


/* =========================================================
   CTA HOVER EFFECTS
========================================================= */

.cta-band .btn-primary:hover {

    box-shadow:
        0 0 45px rgba(212,175,55,0.45);
}

.cta-band .btn-secondary:hover {

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


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

.footer {

    position: relative;

    background:
        var(--navy-950);

    padding:
        6rem 0 0;

    overflow: hidden;
}

.footer::before {

    content: "";

    position: absolute;

    top: -250px;
    left: -250px;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(212,175,55,0.05),
            transparent 70%
        );

    pointer-events: none;
}


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

.footer-grid {

    display: grid;

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

    gap: 3rem;

    padding-bottom: 4rem;
}

.footer img {

    max-width: 180px;

    margin-bottom: 1.5rem;
}

.footer h4 {

    margin-bottom: 1.5rem;

    color:
        var(--gold-500);

    font-size: 1.4rem;
}

.footer p {

    color:
        var(--gray-300);

    margin-bottom: 0.75rem;
}


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

.footer ul {

    display: flex;

    flex-direction: column;

    gap: 0.85rem;
}

.footer ul li a {

    color:
        var(--gray-200);

    transition:
        color var(--transition-normal),
        transform var(--transition-normal);

    display: inline-flex;
}

.footer ul li a:hover {

    color:
        var(--gold-500);

    transform:
        translateX(5px);
}


/* =========================================================
   FOOTER CONTACT LINKS
========================================================= */

.footer a {

    transition:
        color var(--transition-normal);
}

.footer a:hover {

    color:
        var(--gold-500);
}


/* =========================================================
   FOOTER SOCIAL LINKS
========================================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    margin-top: 1.5rem;
}

.footer-social a {

    width: 42px;
    height: 42px;

    display: inline-flex;

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

    border-radius: 50%;

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

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

    color:
        var(--gray-100);

    transition:
        all var(--transition-normal);
}

.footer-social a:hover {

    background:
        var(--gold-500);

    color:
        var(--navy-900);

    border-color:
        var(--gold-500);

    transform:
        translateY(-4px);
}


/* =========================================================
   FOOTER BOTTOM BAR
========================================================= */

.footer-bottom {

    border-top:
        1px solid rgba(255,255,255,0.08);

    padding:
        1.5rem 0;

    text-align: center;
}

.footer-bottom p {

    color:
        var(--gray-400);

    font-size: 0.95rem;

    margin: 0;
}


/* =========================================================
   FOOTER HOVER EFFECTS
========================================================= */

.footer-grid > div {

    transition:
        transform var(--transition-normal);
}

.footer-grid > div:hover {

    transform:
        translateY(-4px);
}

.footer h4:hover {

    color:
        var(--gold-300);
}

.footer img {

    transition:
        transform var(--transition-normal);
}

.footer img:hover {

    transform:
        scale(1.03);
}

-

/* =========================================================
   ZEE GLOBAL EDUCATION SERVICES
   STYLE.CSS (PART 5)

   Responsive Layout System

   Includes:
   • 1200px and below
   • 992px and below
   • 768px and below
   • 576px and below
   • Navigation Mobile Layout
   • Hero Mobile Layout
   • Stats Mobile Layout
   • Services Mobile Layout
   • Destinations Mobile Layout
   • Process Mobile Layout
   • Team Mobile Layout
   • Blog Mobile Layout
   • Footer Mobile Layout

========================================================= */


/* =========================================================
   LARGE TABLETS
   1200px AND BELOW
========================================================= */

@media (max-width: 1200px) {

    .container {

        width:
            min(
                calc(100% - 3rem),
                1100px
            );
    }

    .hero-text {

        max-width: 700px;
    }

    .about-grid {

        gap: 4rem;
    }

    .about-image img {

        height: 560px;
    }

    .services-grid {

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

        gap: 1.5rem;
    }

    .destination-grid {

        gap: 1.5rem;
    }

    .destination-card {

        height: 360px;
    }

    .process-grid {

        gap: 1rem;
    }

    .team-grid {

        gap: 1.5rem;
    }

    .blog-grid {

        gap: 1.5rem;
    }

    .footer-grid {

        gap: 2rem;
    }
}


/* =========================================================
   TABLETS
   992px AND BELOW
========================================================= */

@media (max-width: 992px) {

    .section {

        padding: 5.5rem 0;
    }

    /* -------------------------
       NAVIGATION
    ------------------------- */

    .nav-menu {

        position: fixed;

        top: var(--header-height);
        right: 0;

        width: 320px;
        height: calc(100vh - var(--header-height));

        background:
            rgba(7,20,43,0.98);

        backdrop-filter:
            blur(20px);

        -webkit-backdrop-filter:
            blur(20px);

        flex-direction: column;

        justify-content: flex-start;

        align-items: flex-start;

        padding: 2rem;

        gap: 1.5rem;

        transform: translateX(100%);

        transition:
            transform var(--transition-normal);

        border-left:
            1px solid rgba(255,255,255,0.08);
    }

    .nav-menu.active {

        transform: translateX(0);
    }

    .mobile-toggle {

        display: flex;
    }

    .nav-actions .btn {

        display: none;
    }

    /* -------------------------
       HERO
    ------------------------- */

    .hero {

        min-height: 90vh;
    }

    .hero-text {

        max-width: 100%;
    }

    .hero h1 {

        font-size:
            clamp(3rem, 7vw, 4.8rem);
    }

    .hero p {

        max-width: 650px;
    }

    .article-hero {

        min-height: auto;
        padding-bottom: 4.5rem;
    }

    .article-hero-grid {

        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-hero-panel {

        max-width: 520px;
    }

    /* -------------------------
       STATS
    ------------------------- */

    .stats-grid {

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

    /* -------------------------
       ABOUT
    ------------------------- */

    .about-grid {

        grid-template-columns:
            1fr;

        gap: 3rem;
    }

    .about-image img {

        height: 500px;
    }

    /* -------------------------
       SERVICES
    ------------------------- */

    .services-grid {

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

    /* -------------------------
       DESTINATIONS
    ------------------------- */

    .destination-grid {

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

    /* -------------------------
       PROCESS
    ------------------------- */

    .process-grid {

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

        row-gap: 3rem;
    }

    .process-grid::before {

        display: none;
    }

    /* -------------------------
       TEAM
    ------------------------- */

    .team-grid {

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

    /* -------------------------
       BLOG
    ------------------------- */

    .blog-grid {

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

    /* -------------------------
       FOOTER
    ------------------------- */

    .footer-grid {

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


/* =========================================================
   MOBILE DEVICES
   768px AND BELOW
========================================================= */

@media (max-width: 768px) {

    .section {

        padding: 4.5rem 0;
    }

    .section-header {

        margin-bottom: 3rem;
    }

    /* -------------------------
       NAVIGATION MOBILE LAYOUT
    ------------------------- */

    .navbar {

        height: 78px;
    }

    .logo img {

        height: 54px;
    }

    .nav-menu {

        width: 100%;
    }

    /* -------------------------
       HERO MOBILE LAYOUT
    ------------------------- */

    .hero {

        min-height: 85vh;

        text-align: center;
    }

    .hero-tag {

        margin-inline: auto;
    }

    .hero h1 {

        font-size:
            clamp(2.6rem, 9vw, 4rem);
    }

    .hero p {

        font-size: 1rem;

        margin-inline: auto;
    }

    .hero-buttons {

        justify-content: center;
    }

    .article-hero::before {

        display: none;
    }

    .article-hero::after {

        width: 160px;
        height: 160px;
        inset: auto auto 18% -40px;
    }

    .article-hero .hero-overlay {

        background:
            linear-gradient(180deg, rgba(4,9,18,0.92), rgba(7,20,43,0.78)),
            radial-gradient(circle at 50% 30%, rgba(212,175,55,0.20), transparent 42%);
    }

    .article-hero-panel {

        margin: 0 auto;
        text-align: left;
    }

    .hero-buttons .btn {

        width: 100%;
        max-width: 320px;
    }

    /* -------------------------
       STATS MOBILE LAYOUT
    ------------------------- */

    .stats {

        margin-top: -40px;
    }

    .stats-grid {

        grid-template-columns:
            1fr;

        gap: 1rem;
    }

    .stat-card {

        padding: 1.75rem;
    }

    /* -------------------------
       ABOUT MOBILE LAYOUT
    ------------------------- */

    .about-image img {

        height: 420px;
    }

    .feature-list {

        grid-template-columns:
            1fr;
    }

    /* -------------------------
       SERVICES MOBILE LAYOUT
    ------------------------- */

    .services-grid {

        grid-template-columns:
            1fr;
    }

    .service-card {

        padding: 2rem;
    }

    /* -------------------------
       DESTINATIONS MOBILE LAYOUT
    ------------------------- */

    .destination-grid {

        grid-template-columns:
            1fr;
    }

    .destination-card {

        height: 340px;
    }

    .destination-card span {

        font-size: 1.7rem;
    }

    /* -------------------------
       PROCESS MOBILE LAYOUT
    ------------------------- */

    .process-grid {

        grid-template-columns:
            1fr;
    }

    .process-step {

        max-width: 300px;

        margin: 0 auto;
    }

    .step-number {

        width: 72px;
        height: 72px;
    }

    /* -------------------------
       TEAM MOBILE LAYOUT
    ------------------------- */

    .team-grid {

        grid-template-columns:
            1fr;
    }

    .team-card img {

        height: 420px;
    }

    /* -------------------------
       BLOG MOBILE LAYOUT
    ------------------------- */

    .blog-grid {

        grid-template-columns:
            1fr;
    }

    .blog-card {

        width: 100%;
        max-width: 100%;
        transform: none;
    }

    .blog-card:hover {

        transform: translateY(-6px);
    }

    .blog-card img {

        height: 240px;
    }

    .blog-media {

        min-height: 190px;
    }

    .blog-media img {

        height: 190px;
        min-height: 190px;
    }

    .blog-media-visa {

        min-height: 190px;
    }


    /* -------------------------
       CTA
    ------------------------- */

    .cta-band {

        padding: 5rem 0;
    }

    .cta-buttons {

        flex-direction: column;
    }

    .cta-buttons .btn {

        width: 100%;
        max-width: 320px;
    }

    /* -------------------------
       FOOTER MOBILE LAYOUT
    ------------------------- */

    .footer-grid {

        grid-template-columns:
            1fr;

        text-align: center;
    }

    .footer-social {

        justify-content: center;
    }
}


/* =========================================================
   SMALL MOBILE DEVICES
   576px AND BELOW
========================================================= */

@media (max-width: 576px) {

    .container {

        width:
            calc(100% - 1.5rem);
    }

    .section {

        padding: 4rem 0;
    }

    .section-tag {

        font-size: 0.8rem;
    }

    .section-header h2 {

        font-size:
            clamp(2rem, 8vw, 2.8rem);
    }

    /* -------------------------
       HERO
    ------------------------- */

    .hero {

        min-height: 80vh;
    }

    .hero h1 {

        font-size:
            clamp(2.2rem, 10vw, 3.2rem);
    }

    .hero p {

        font-size: 0.95rem;
    }

    .article-hero {

        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 3.5rem;
    }

    .article-hero-panel {

        padding: 1rem;
    }

    .article-hero-panel-header strong {

        font-size: 3.5rem;
    }

    .article-hero-stats span {

        min-height: 38px;
        font-size: 0.84rem;
    }

    /* -------------------------
       STATS
    ------------------------- */

    .stat-card h3 {

        font-size: 2.2rem;
    }

    /* -------------------------
       ABOUT
    ------------------------- */

    .about-image img {

        height: 340px;
    }

    .about-content p {

        font-size: 1rem;
    }

    /* -------------------------
       SERVICES
    ------------------------- */

    .service-card {

        padding: 1.75rem;
    }

    .service-card h3 {

        font-size: 1.5rem;
    }

    /* -------------------------
       DESTINATIONS
    ------------------------- */

    .destination-card {

        height: 280px;
    }

    .destination-card span {

        left: 1.5rem;
        bottom: 1.5rem;

        font-size: 1.5rem;
    }

    /* -------------------------
       PROCESS
    ------------------------- */

    .step-number {

        width: 64px;
        height: 64px;

        font-size: 1rem;
    }

    /* -------------------------
       TEAM
    ------------------------- */

    .team-card img {

        height: 320px;
    }

    .team-card h3,
    .team-card .role,
    .team-card p {

        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* -------------------------
       BLOG
    ------------------------- */

    .blog-card img {

        height: 220px;
    }

    .blog-media {

        min-height: 180px;
    }

    .blog-media img {

        height: 180px;
        min-height: 180px;
    }

    .blog-media-visa {

        min-height: 180px;
    }


    .blog-content {

        padding: 1.5rem;
    }

    .blog-content h3 {

        font-size: 1.45rem;
    }

    /* -------------------------
       FOOTER
    ------------------------- */

    .footer {

        padding-top: 4rem;
    }

    .footer img {

        max-width: 150px;

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

    .footer h4 {

        font-size: 1.2rem;
    }

    .footer-bottom p {

        font-size: 0.85rem;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
   400px AND BELOW
========================================================= */

@media (max-width: 400px) {

    .hero-buttons .btn,
    .cta-buttons .btn {

        max-width: 100%;
    }

    .team-card img {

        height: 280px;
    }

    .destination-card {

        height: 240px;
    }

    .nav-menu {

        padding: 1.5rem;
    }
}

-

/* =========================================================
   ZEE GLOBAL EDUCATION SERVICES
   STYLE.CSS (PART 6)

   Includes:
   • Scroll Reveal Animations
   • Fade Up Animation
   • Fade Left Animation
   • Fade Right Animation
   • Scale Animation
   • Stagger Delays
   • Counter Animation Support Styles
   • Navigation Scroll State Styles
   • Loading State Styles
   • Utility Classes
   • Print Styles

   END OF STYLESHEET
========================================================= */


/* =========================================================
   SCROLL REVEAL SYSTEM
========================================================= */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {

    opacity: 0;

    will-change:
        transform,
        opacity;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {

    opacity: 1;
}


/* =========================================================
   FADE UP ANIMATION
========================================================= */

@keyframes fadeUp {

    from {

        opacity: 0;

        transform:
            translateY(50px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}

.fade-up {

    animation:
        fadeUp 0.9s ease forwards;
}


/* =========================================================
   FADE LEFT ANIMATION
========================================================= */

@keyframes fadeLeft {

    from {

        opacity: 0;

        transform:
            translateX(-60px);
    }

    to {

        opacity: 1;

        transform:
            translateX(0);
    }
}

.fade-left {

    animation:
        fadeLeft 0.9s ease forwards;
}


/* =========================================================
   FADE RIGHT ANIMATION
========================================================= */

@keyframes fadeRight {

    from {

        opacity: 0;

        transform:
            translateX(60px);
    }

    to {

        opacity: 1;

        transform:
            translateX(0);
    }
}

.fade-right {

    animation:
        fadeRight 0.9s ease forwards;
}


/* =========================================================
   SCALE ANIMATION
========================================================= */

@keyframes scaleIn {

    from {

        opacity: 0;

        transform:
            scale(0.92);
    }

    to {

        opacity: 1;

        transform:
            scale(1);
    }
}

.fade-scale {

    animation:
        scaleIn 0.8s ease forwards;
}


/* =========================================================
   STAGGER DELAYS
========================================================= */

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

.delay-600 {
    animation-delay: 0.6s;
}

.delay-700 {
    animation-delay: 0.7s;
}

.delay-800 {
    animation-delay: 0.8s;
}

.delay-900 {
    animation-delay: 0.9s;
}

.delay-1000 {
    animation-delay: 1s;
}


/* =========================================================
   COUNTER ANIMATION SUPPORT
========================================================= */

.counter {

    display: inline-block;

    font-variant-numeric:
        tabular-nums;

    letter-spacing: -0.03em;
}

.counter.animate {

    animation:
        counterPulse 0.6s ease;
}

@keyframes counterPulse {

    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.08);
    }

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


/* =========================================================
   NAVIGATION SCROLL STATE
========================================================= */

.header.scrolled {

    background: var(--white);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid rgba(4,9,18,0.06);

    box-shadow:
        0 10px 35px rgba(4,9,18,0.10);
}

.header.scrolled .logo img {

    transform:
        scale(0.96);

    transition:
        transform var(--transition-normal);
}


/* =========================================================
   LOADING STATE
========================================================= */

body.loading {

    overflow: hidden;
}

.page-loader {

    position: fixed;

    inset: 0;

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

    background:
        var(--navy-950);

    z-index: 99999;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.page-loader.hidden {

    opacity: 0;

    visibility: hidden;
}

.loader-ring {

    width: 80px;
    height: 80px;

    border-radius: 50%;

    border:
        3px solid rgba(212,175,55,0.15);

    border-top:
        3px solid var(--gold-500);

    animation:
        spinLoader 1s linear infinite;
}

@keyframes spinLoader {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   SHIMMER PLACEHOLDER
========================================================= */

.skeleton {

    position: relative;

    overflow: hidden;

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

.skeleton::after {

    content: "";

    position: absolute;

    top: 0;
    left: -150%;

    width: 150%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.10),
            transparent
        );

    animation:
        shimmer 1.8s infinite;
}

@keyframes shimmer {

    100% {
        left: 150%;
    }
}


/* =========================================================
   UTILITY CLASSES
========================================================= */

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.justify-center {
    justify-content: center !important;
}

.align-center {
    align-items: center !important;
}

.flex-column {
    flex-direction: column !important;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.text-left {
    text-align: left !important;
}

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

.text-right {
    text-align: right !important;
}

.text-gold {
    color: var(--gold-500) !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-gold {
    background: var(--gold-500) !important;
}

.bg-navy {
    background: var(--navy-900) !important;
}

.rounded-sm {
    border-radius: var(--radius-sm) !important;
}

.rounded-md {
    border-radius: var(--radius-md) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.rounded-xl {
    border-radius: var(--radius-xl) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 1.5rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.py-1 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.py-2 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.py-3 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.py-4 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}


/* =========================================================
   IMAGE EFFECTS
========================================================= */

.img-cover {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.img-contain {

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.img-hover-zoom {

    overflow: hidden;
}

.img-hover-zoom img {

    transition:
        transform 0.8s ease;
}

.img-hover-zoom:hover img {

    transform:
        scale(1.08);
}


/* =========================================================
   GLASSMORPHISM UTILITIES
========================================================= */

.glass-light {

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

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

    backdrop-filter:
        blur(14px);

    -webkit-backdrop-filter:
        blur(14px);
}

.glass-dark {

    background:
        rgba(7,20,43,0.65);

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

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


/* =========================================================
   PRINT STYLES
========================================================= */

@media print {

    * {

        background: white !important;
        color: black !important;

        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {

        background: white !important;
    }

    .header,
    .mobile-toggle,
    .hero-buttons,
    .cta-band,
    .footer-social,
    .page-loader {

        display: none !important;
    }

    .hero {

        min-height: auto !important;

        padding: 2rem 0 !important;
    }

    .section {

        padding: 1rem 0 !important;
    }

    a {

        text-decoration: underline;
    }

    img {

        max-width: 100% !important;

        page-break-inside: avoid;
    }

    h1,
    h2,
    h3,
    h4 {

        page-break-after: avoid;
    }

    p,
    li {

        page-break-inside: avoid;
    }
}

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

.article-container {

    max-width: 920px;
    margin: 0 auto;
}

.article-content {

    color: var(--gray-100);
}

.article-content .lead {

    color: var(--white);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.8;
}

.article-content h2 {

    margin-top: 3.25rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.article-content h3 {

    margin-top: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--gold-300);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.article-content p {

    margin-bottom: 1.25rem;
    color: var(--gray-200);
}

.article-content ul {

    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1.5rem;
}

.article-content li {

    position: relative;
    padding-left: 1.45rem;
    color: var(--gray-100);
}

.article-content li::before {

    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 16px rgba(212,175,55,0.30);
}

.article-checklist li::before {

    width: 8px;
    height: 8px;
    border-radius: 2px;
    background: var(--success);
    transform: rotate(45deg);
}

.article-insight-card {

    margin: 2rem 0;
    padding: 1.35rem;
    border: 1px solid rgba(226,199,106,0.22);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, rgba(212,175,55,0.12), rgba(255,255,255,0.04));
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.article-insight-card strong {

    display: block;
    margin-bottom: 0.4rem;
    color: var(--gold-300);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-insight-card p {

    margin: 0;
}

.article-insight-card-alt {

    border-color: rgba(47,191,113,0.24);
    background:
        linear-gradient(135deg, rgba(47,191,113,0.12), rgba(255,255,255,0.04));
}

.article-cta {

    margin-top: 3rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.06);
}

.article-cta h3 {

    margin-top: 0;
    color: var(--white);
}

@media (max-width: 576px) {

    .article-content h2 {

        margin-top: 2.5rem;
    }

    .article-insight-card,
    .article-cta {

        padding: 1.25rem;
    }
}

.contact-grid {

    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {

    position: sticky;
    top: calc(var(--header-height) + 2rem);

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-info-card h3 {

    margin-bottom: 0.5rem;
    color: var(--white);
    font-size: 1.9rem;
}

.contact-info-card > p {

    color: var(--gray-200);
    margin-bottom: 2.5rem;
}

.contact-detail {

    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.contact-icon {

    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--gold-500);
    font-size: 1.1rem;
}

.contact-detail-text strong {

    display: block;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: var(--gold-400);
}

.contact-detail-text p,
.contact-detail-text a {

    color: var(--gray-200);
    font-size: 0.98rem;
    margin: 0;
    transition: color var(--transition-fast);
}

.contact-detail-text a:hover {

    color: var(--gold-500);
}

/* Contact Form Card */

.contact-form-card {

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-xl);
    padding: 3rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.contact-form-card h3 {

    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.contact-form-card > p {

    color: var(--gray-200);
    margin-bottom: 2.5rem;
}

/* Form elements */

.form-group {

    margin-bottom: 1.5rem;
}

.form-row {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label {

    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-100);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.98rem;
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast),
        box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--gold-500);
    background: rgba(212,175,55,0.05);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {

    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(226,76,76,0.15);
}

.form-group select option {

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

.form-group textarea {

    resize: vertical;
    min-height: 130px;
}

.form-submit {

    width: 100%;
    padding: 1.1rem;
    margin-top: 0.5rem;
}

.form-message {

    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-message.error {

    background: rgba(226,76,76,0.12);
    border: 1px solid rgba(226,76,76,0.30);
    color: #f87171;
}

.form-message.success {

    background: rgba(47,191,113,0.12);
    border: 1px solid rgba(47,191,113,0.30);
    color: #4ade80;
}

/* WhatsApp CTA strip */

.whatsapp-strip {

    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(37,211,102,0.08);
    border: 1px solid rgba(37,211,102,0.20);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-top: 2rem;
    transition: background var(--transition-fast);
}

.whatsapp-strip:hover {

    background: rgba(37,211,102,0.14);
}

.whatsapp-strip span {

    color: var(--gray-100);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Privacy & Policy page */

.policy-content {

    max-width: 860px;
    margin: 0 auto;
}

.policy-content h2 {

    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: var(--white);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.policy-content h2:first-of-type {

    margin-top: 0;
}

.policy-content p,
.policy-content li {

    color: var(--gray-200);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.policy-content ul {

    padding-left: 1.5rem;
    list-style: disc;
    margin-bottom: 1.5rem;
}

.policy-content ul li {

    margin-bottom: 0.4rem;
}

.policy-content a {

    color: var(--gold-500);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-last-updated {

    display: inline-block;
    font-size: 0.85rem;
    color: var(--gold-500);
    font-weight: 600;
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.20);
    border-radius: 999px;
    padding: 0.3rem 1rem;
    margin-bottom: 2.5rem;
}

/* Thank You page */

.thankyou-center {

    min-height: calc(70vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 0;
}

.thankyou-icon {

    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(47,191,113,0.12);
    border: 2px solid rgba(47,191,113,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.thankyou-center h1 {

    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 1.25rem;
}

.thankyou-center p {

    font-size: 1.1rem;
    color: var(--gray-200);
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

/* Page hero (inner pages without full-screen) */

.page-hero {

    padding: calc(var(--header-height) + 5rem) 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {

    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 70%);
    pointer-events: none;
}

.page-hero h1 {

    font-size: clamp(2.4rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero p {

    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--gray-200);
}

/* Contact responsive */

@media (max-width: 992px) {

    .contact-grid {

        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-card {

        position: static;
    }
}

@media (max-width: 576px) {

    .contact-info-card,
    .contact-form-card {

        padding: 2rem 1.5rem;
    }

    .form-row {

        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE MENU TRIGGER OVERRIDE
========================================================= */

.navbar {

    position: relative;
}

.nav-actions {

    margin-left: auto;
}

.mobile-toggle {

    display: inline-flex !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1003;
    width: 52px;
    height: 52px;
    color: var(--navy-900);
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(4,9,18,0.14);
    box-shadow: 0 10px 28px rgba(4,9,18,0.14);
}

.header.scrolled .mobile-toggle,
.header .mobile-toggle {

    color: var(--navy-900);
}

.mobile-toggle-bars span {

    background: currentColor;
}

.mobile-toggle-chevron {

    border-color: currentColor;
}

.nav-menu {

    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: min(340px, calc(100vw - 2rem));
    padding: 0.9rem;
    border: 1px solid rgba(4,9,18,0.10);
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 24px 60px rgba(4,9,18,0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
        opacity var(--transition-normal),
        visibility var(--transition-normal),
        transform var(--transition-normal);
}

.nav-menu.active {

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-menu li {

    width: 100%;
}

.nav-menu a {

    display: flex;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--navy-900);
}

.nav-menu a:hover {

    background: rgba(212,175,55,0.12);
    color: var(--navy-900);
}

.nav-menu a::after {

    display: none;
}

@media (max-width: 992px) {

    .nav-menu {

        position: fixed;
        top: calc(var(--header-height) + 0.75rem);
        right: 1rem;
        left: auto;
        width: min(360px, calc(100vw - 2rem));
        height: auto;
        max-height: calc(100vh - var(--header-height) - 2rem);
        overflow-y: auto;
        transform: translateY(-10px);
    }

    .nav-menu.active {

        transform: translateY(0);
    }
}

@media (max-width: 576px) {

    .mobile-toggle {

        width: 48px;
        height: 48px;
    }

    .nav-menu {

        right: 0.75rem;
        width: calc(100vw - 1.5rem);
    }
}

/* Mobile header visibility fix */
@media (max-width: 768px) {

    .header {

        min-height: 78px;
    }

    .navbar {

        width: calc(100% - 1.5rem);
        min-height: 78px;
        position: relative;
        overflow: visible;
    }

    .logo {

        max-width: calc(100% - 72px);
        overflow: hidden;
    }

    .logo img {

        max-width: min(210px, calc(100vw - 112px));
        height: 54px;
        object-fit: contain;
    }

    .nav-actions {

        position: absolute;
        right: 0;
        top: 50%;
        z-index: 1004;
        display: flex !important;
        align-items: center;
        margin-left: 0;
        transform: translateY(-50%);
    }

    .nav-actions .btn {

        display: none !important;
    }

    .mobile-toggle {

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        width: 48px;
        height: 48px;
        color: var(--navy-900) !important;
        background: var(--white) !important;
        border: 1px solid rgba(4,9,18,0.16) !important;
        box-shadow: 0 10px 24px rgba(4,9,18,0.16) !important;
    }

    .mobile-toggle-bars,
    .mobile-toggle-bars span,
    .mobile-toggle-chevron {

        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-toggle-bars span {

        background: currentColor !important;
    }

    .mobile-toggle-chevron {

        border-color: currentColor !important;
    }

    .nav-menu {

        top: calc(78px + 0.75rem);
        right: 0.75rem;
        width: calc(100vw - 1.5rem);
    }
}
