/* ==========================================================================
   JIPPA — Jambo International Placement and Pathways Agency
   Main Stylesheet
   Brand: Deep Navy #0F2345 | Corporate Blue #3A5D87 | Gold #C09C33
          White #FFFFFF | Light Gray #D1D5D6
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Reset & Base
   -------------------------------------------------------------------------- */

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

:root {
    /* Brand Colors */
    --navy: #0F2345;
    --navy-dark: #03102f;
    --blue: #3A5D87;
    --steel: #597BA3;
    --gold: #C09C33;
    --gold-light: #D4B455;
    --gold-dark: #A8842A;
    --white: #FFFFFF;
    --gray: #D1D5D6;
    --gray-light: #F4F5F6;
    --gray-medium: #9CA3AF;
    --gray-dark: #4B5563;
    --gray-darker: #1F2937;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 35, 69, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 35, 69, 0.1);
    --shadow-lg: 0 8px 30px rgba(15, 35, 69, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 35, 69, 0.15);

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

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

a:hover { color: var(--navy); }

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

ul { list-style: none; }

/* --------------------------------------------------------------------------
   2. Layout
   -------------------------------------------------------------------------- */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
}

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

.section--navy h2,
.section--navy h3,
.section--navy h4 {
    color: var(--white);
}

.section--gray {
    background: var(--gray-light);
}

.section--tight {
    padding: 48px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* --------------------------------------------------------------------------
   3. Buttons
   -------------------------------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1;
}

.btn--primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

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

.btn--gold-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn--block {
    display: flex;
    width: 100%;
}

/* --------------------------------------------------------------------------
   4. Navigation
   -------------------------------------------------------------------------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray);
    transition: box-shadow var(--transition);
}

.navbar--scrolled {
    box-shadow: var(--shadow-md);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    height: 80px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.navbar__logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    padding: 6px 0;
}

.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.navbar__logo-text span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--steel);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar__link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding: 4px 0;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

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

.navbar__link--active {
    color: var(--blue);
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar__actions--mobile {
    display: none;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar__toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all var(--transition);
}

.navbar__toggle--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle--open span:nth-child(2) {
    opacity: 0;
}
.navbar__toggle--open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --------------------------------------------------------------------------
   5. Hero
   -------------------------------------------------------------------------- */

.hero {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--navy-dark);
    opacity: 0.4;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(192, 156, 51, 0.15);
    border: 1px solid var(--gold);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.hero__title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--gold);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__globe {
    width: 100%;
    max-width: 420px;
}

/* --------------------------------------------------------------------------
   6. Stats Bar
   -------------------------------------------------------------------------- */

.stats {
    background: var(--navy-dark);
    padding: 48px 0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat__value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat__label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   7. Section Headers
   -------------------------------------------------------------------------- */

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-header__title {
    margin-bottom: 16px;
}

.section-header__subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.section--navy .section-header__subtitle {
    color: var(--gray);
}

.section-header--left {
    text-align: left;
    margin-left: 0;
}

/* --------------------------------------------------------------------------
   8. Services
   -------------------------------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: var(--blue);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card__text {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__list {
    margin-top: 16px;
}

.service-card__list li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-card__list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   9. Process / How It Works
   -------------------------------------------------------------------------- */

.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process__step {
    text-align: center;
    position: relative;
}

.process__number {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    background: var(--navy);
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}

.process__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process__text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. Institutions
   -------------------------------------------------------------------------- */

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.institution-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
}

.institution-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--blue);
}

.institution-card__header {
    background: var(--navy);
    padding: 24px;
    color: var(--white);
}

.institution-card__country {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 8px;
}

.institution-card__name {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.institution-card__type {
    font-size: 0.85rem;
    color: var(--gray);
}

.institution-card__body {
    padding: 24px;
}

.institution-card__ranking {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gray-light);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 16px;
}

.institution-card__desc {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.institution-card__programs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.program-tag {
    padding: 4px 10px;
    background: var(--gray-light);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gray-dark);
}

.institution-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray);
}

.institution-card__tuition {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

.institution-card__tuition strong {
    color: var(--navy);
}

/* --------------------------------------------------------------------------
   11. Why Choose Us / Features
   -------------------------------------------------------------------------- */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(192, 156, 51, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
}

.feature-item__icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.feature-item__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item__text {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   12. Testimonials
   -------------------------------------------------------------------------- */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
}

.testimonial-card__quote {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-card__name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
}

.testimonial-card__role {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

/* --------------------------------------------------------------------------
   13. CTA Section
   -------------------------------------------------------------------------- */

.cta {
    background: var(--navy);
    padding: 72px 0;
    text-align: center;
}

.cta__title {
    color: var(--white);
    margin-bottom: 16px;
}

.cta__subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */

.footer {
    background: var(--navy-dark);
    color: var(--gray);
    padding: 64px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand img {
    height: 64px;
    width: auto;
    margin-bottom: 20px;
}

.footer__about {
    font-size: 0.9rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--gray-medium);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.footer__bottom a {
    color: var(--gray-medium);
}

.footer__bottom a:hover {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   15. Page Header (inner pages)
   -------------------------------------------------------------------------- */

.page-header {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 56px;
    text-align: center;
}

.page-header__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.page-header__title {
    color: var(--white);
    margin-bottom: 12px;
}

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.breadcrumb a {
    color: var(--gold-light);
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* --------------------------------------------------------------------------
   16. About Page
   -------------------------------------------------------------------------- */

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story__content h2 {
    margin-bottom: 20px;
}

.about-story__content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story__visual {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
}

.about-story__visual h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.mvv-grid {
    display: grid;
    gap: 24px;
}

.mvv-item {
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.mvv-item h4 {
    color: var(--gold);
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mvv-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

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

.value-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border-radius: 50%;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.value-card__title {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card__text {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   17. Services Page
   -------------------------------------------------------------------------- */

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 64px;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail__content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-detail__content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-detail__list {
    margin-top: 20px;
}

.service-detail__list li {
    padding: 8px 0;
    color: var(--gray-dark);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.service-detail__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 9px;
    flex-shrink: 0;
}

.service-detail__visual {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    color: var(--white);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-detail__visual svg {
    width: 80px;
    height: 80px;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-detail__visual h4 {
    color: var(--white);
    font-size: 1.2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 24px;
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-item__question::before {
    content: 'Q.';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item__answer {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.7;
    padding-left: 22px;
}

/* --------------------------------------------------------------------------
   18. Institutions Page
   -------------------------------------------------------------------------- */

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
}

.filter-bar__left {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.filter-chip:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.filter-chip--active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.filter-chip--active:hover {
    color: var(--white);
}

.filter-bar__count {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.no-results {
    text-align: center;
    padding: 64px 24px;
    color: var(--gray-medium);
}

.no-results svg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--gray);
}

/* --------------------------------------------------------------------------
   19. Contact Page
   -------------------------------------------------------------------------- */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 24px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info__item svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info__item-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info__item-value {
    font-size: 0.95rem;
    color: var(--gray);
}

.contact-info__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 24px 0;
}

.contact-info__hours {
    font-size: 0.9rem;
    color: var(--gray);
}

.contact-info__hours strong {
    color: var(--white);
    display: block;
    margin-bottom: 8px;
}

/* Form */
.form-card {
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-card__title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-card__subtitle {
    color: var(--gray-dark);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-label span {
    color: var(--gold);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(58, 93, 135, 0.12);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233A5D87' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-hint {
    font-size: 0.8rem;
    color: var(--gray-medium);
    margin-top: 6px;
}

.form-success {
    background: rgba(192, 156, 51, 0.1);
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--navy);
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.form-error {
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid #DC2626;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: #DC2626;
}

/* --------------------------------------------------------------------------
   20. Animations
   -------------------------------------------------------------------------- */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   21. Utilities
   -------------------------------------------------------------------------- */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.divider {
    height: 1px;
    background: var(--gray);
    margin: 48px 0;
    border: none;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--new {
    background: rgba(192, 156, 51, 0.15);
    color: var(--gold-dark);
}

.badge--progress {
    background: rgba(58, 93, 135, 0.15);
    color: var(--blue);
}

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

/* --------------------------------------------------------------------------
   22. WhatsApp Float Button
   -------------------------------------------------------------------------- */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.whatsapp-float:hover {
    background: #1DA851;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.6;
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-float::after {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    :root {
        --section-padding: 64px;
    }

    .hero__inner {
        gap: 40px;
    }

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

    .process {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-story,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
        --container-padding: 20px;
    }

    /* Mobile navigation */
    .navbar__links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--gray);
        box-shadow: var(--shadow-lg);
    }

    .navbar__links--open {
        display: flex;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__actions {
        display: none;
    }

    .navbar__actions--mobile {
        display: flex;
        width: 100%;
        margin-top: 16px;
    }

    /* Hero */
    .hero {
        padding: 60px 0 48px;
        text-align: center;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__globe {
        max-width: 280px;
    }

    /* Stats */
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat__value {
        font-size: 2rem;
    }

    /* Grids */
    .services-grid,
    .institutions-grid,
    .testimonials-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card,
    .contact-info {
        padding: 28px 24px;
    }

    /* Page header */
    .page-header {
        padding: 56px 0 40px;
    }

    /* CTA */
    .cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    /* Filter bar */
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero__badge {
        font-size: 0.75rem;
    }

    .stat__value {
        font-size: 1.75rem;
    }

    .service-card,
    .testimonial-card {
        padding: 28px 20px;
    }
}
