/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background-color: #ffffff;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

address {
    font-style: normal;
}


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

.section-headline {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 3.25rem;
    line-height: 1.15;
    text-transform: uppercase;
    color: #1a1a2e;
}

.section-paragraph {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444444;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-paragraph + .section-paragraph {
    margin-top: 1rem;
}

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


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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.page-wrapper {
    padding: 0 10px;
}


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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    cursor: pointer;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    z-index: 2;
    pointer-events: none;
    animation: btn-shine 5.5s ease-in-out infinite;
}

@keyframes btn-shine {
    0% { left: -100%; }
    18%, 100% { left: 100%; }
}

.btn-red {
    background-color: #e0242c;
    color: #ffffff;
}

.btn-red:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(224, 36, 44, 0.35);
}

.btn-dark {
    background-color: #111111;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #222222;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-white {
    background-color: #ffffff;
    color: #111111;
    font-size: 0.9375rem;
}

.btn-white:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}


/* ============================================
   SITE NAV — overlays hero
   ============================================ */

.site-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}


/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background-color: #2a2025;
    color: #ffffff;
    font-size: 0.9rem;
    padding: 0.5rem 0;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    color: #ffffff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-bar-social {
    display: flex;
    gap: 0.625rem;
}

.top-bar-social a {
    color: #ffffff;
    display: inline-flex;
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #ffffff;
    font-weight: 400;
}

.top-bar-students {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    padding-left: 1.25rem;
    border-left: 1px solid #ffffff;
}


/* ============================================
   MAIN NAV
   ============================================ */

.main-nav {
    position: relative;
    z-index: 100;
    background-color: transparent;
}


.main-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    display: block;
    width: auto;
    height: 6.25rem;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links > li > a,
.nav-dropdown-toggle {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-links > li > a:hover,
.nav-dropdown-toggle:hover {
    opacity: 0.75;
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    margin-left: 0.1rem;
    vertical-align: middle;
    position: relative;
    top: -3px;
    transition: transform 0.3s ease;
}

.dropdown-arrow svg {
    display: block;
}

.nav-dropdown:hover > .nav-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-cta {
    padding: 0.875rem 2.75rem;
    font-size: 1.35rem;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 200;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ============================================
   NAV DROPDOWNS
   ============================================ */

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #231f20;
    border: 2px solid #000000;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 500;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    width: 100%;
    height: 14px;
}

.nav-dropdown:hover > .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu li a,
.nav-dropdown-item {
    display: block;
    padding: 0.625rem 1.25rem;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu li a:hover,
.nav-dropdown-item:hover {
    color: #e0242c;
}


/* ============================================
   STICKY NAV (DESKTOP)
   ============================================ */

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background-color: #e0242c;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
}

.sticky-nav.visible {
    transform: translateY(0);
}

.sticky-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
}

.sticky-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sticky-nav-links > li > a,
.sticky-nav-links .nav-dropdown-toggle {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.375rem 0;
    transition: opacity 0.2s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.sticky-nav-links > li > a:hover,
.sticky-nav-links .nav-dropdown-toggle:hover {
    opacity: 0.75;
}

.sticky-nav .nav-dropdown-menu {
    background-color: #231f20;
    border: 2px solid #000000;
}

.sticky-nav .nav-dropdown-menu li a {
    color: #ffffff;
}


/* ============================================
   STICKY BOTTOM CTA (DESKTOP)
   ============================================ */

.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background-color: #e0242c;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.sticky-bottom-cta.visible {
    transform: translateY(0);
}

.sticky-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.sticky-bottom-inner p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    color: #ffffff;
}

.sticky-bottom-cta .btn-white {
    padding: 0.625rem 1.75rem;
    font-size: 0.9375rem;
}


/* ============================================
   MOBILE STICKY HEADER
   ============================================ */

.mobile-sticky-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 950;
    background-color: #e0242c;
    border-bottom: 3px solid #ffffff;
}

.mobile-sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    color: #ffffff;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    gap: 0.125rem;
}

.mobile-sticky-btn:last-child {
    border-right: none;
}

.mobile-sticky-btn svg {
    fill: #ffffff;
}


/* ============================================
   MOBILE NAV DRAWER
   ============================================ */

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 980;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background-color: #1a1a2e;
    z-index: 990;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    transform: translateX(0);
}

.mobile-nav-close {
    color: #ffffff;
    margin-bottom: 2rem;
    padding: 0.25rem;
}

.mobile-nav-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links > li > a,
.mobile-nav-links .nav-dropdown-toggle {
    display: block;
    padding: 1rem 0;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-nav-links .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-links .nav-dropdown.active .nav-dropdown-menu {
    max-height: 500px;
}

.mobile-nav-links .nav-dropdown-menu li a {
    color: #cccccc;
    padding: 0.625rem 0 0.625rem 1rem;
    font-size: 0.9rem;
}

.mobile-nav-links .nav-dropdown-menu li a:hover {
    color: #ffffff;
    background-color: transparent;
}

.mobile-nav-cta {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
}


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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.hero-eyebrow {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 500;
    font-size: 4.25rem;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-transform: capitalize;
}

.hero-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transition: border-color 0.2s ease, transform 0.2s ease;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-btn:hover {
    border-color: #ffffff;
    transform: scale(1.1);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}


/* ============================================
   CTA FORM
   ============================================ */

.cta-form-section {
    padding: 4rem 0;
    background-color: #e0242c;
}

.cta-form-box {
    background-color: #e0242c;
    padding: 2.5rem 3rem;
    border-radius: 8px;
    color: #ffffff;
}

.cta-form-eyebrow {
    font-family: 'League Spartan', sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.cta-form-headline {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.cta-form-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.375rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #ffffff;
    color: #333333;
}

.lead-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='%23666' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.lead-form input::placeholder {
    color: #999999;
}

.cta-form-fine {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.75rem;
    line-height: 1.5;
}


/* ============================================
   WELCOME
   ============================================ */

.welcome-section {
    padding: 5rem 0 3rem;
    background-color: #ececec;
}

.welcome-section .section-headline {
    margin-bottom: 1.5rem;
}

.welcome-logo {
    margin: 2.5rem auto 0;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    object-fit: cover;
    background-color: #e8f5e9;
}


/* ============================================
   PROGRAM CARDS
   ============================================ */

.programs-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.programs-section .section-headline {
    margin-bottom: 3rem;
}

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

.program-card {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #ffffff;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.program-card-img {
    overflow: hidden;
    height: 260px;
    background: url('/assets/images/program_bg.webp') center / cover no-repeat;
}

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

.program-card-body {
    padding: 1.25rem;
}

.program-card-body h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.program-card-body p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.program-card-link {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.program-card:hover .program-card-link {
    opacity: 1;
}


/* ============================================
   TWO COLUMN SECTION
   ============================================ */

.two-col-section {
    padding: 5rem 0;
}

.two-col-section.bg-light {
    background-color: #ececec;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-reversed .two-col-image {
    order: -1;
}

.two-col-eyebrow {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #e0242c;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.two-col-headline {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 3.25rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
}

.two-col-paragraph {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444444;
    margin-bottom: 2rem;
}

.two-col-text .btn {
    font-size: 1.3125rem;
}

.two-col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}


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

.reviews-section {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.reviews-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 35, 0.85);
    z-index: 1;
}

.reviews-content {
    position: relative;
    z-index: 2;
}

.reviews-headline {
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.reviews-track-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 0.5rem 0;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 340px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    scroll-snap-align: start;
}

.review-stars {
    color: #f5a623;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-pfp {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong {
    display: block;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: #1a1a2e;
}

.review-author span {
    font-size: 0.8125rem;
    color: #888888;
}

.reviews-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.reviews-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


/* ============================================
   BENEFITS
   ============================================ */

.benefits-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.benefits-eyebrow {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.375rem;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 0.5rem;
}

.benefits-section .section-headline {
    font-size: 2.75rem;
    margin-bottom: 3rem;
}

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

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

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    background-color: #e8f5e9;
}

.benefit-item h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    max-width: 320px;
    margin: 0 auto;
}


/* ============================================
   BOTTOM SECTION
   ============================================ */

.bottom-section {
    position: relative;
    padding: 0 0 4rem;
    background-size: cover;
    background-position: center;
    overflow: visible;
}

.bottom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 35, 0.9);
    z-index: 1;
}

.bottom-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-form-floating {
    position: relative;
    margin-top: -4rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bottom-logo {
    margin: 0 auto 1.5rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #e8f5e9;
}

.bottom-tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.location-card {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    max-width: 360px;
    width: 100%;
}

.location-card h3 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.location-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.location-detail svg {
    flex-shrink: 0;
    fill: #cccccc;
}

.location-detail a {
    color: #cccccc;
    transition: color 0.2s ease;
}

.location-detail a:hover {
    color: #ffffff;
}

.location-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.location-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.location-social a:hover {
    background-color: #e0242c;
    color: #ffffff;
}


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

.site-footer {
    background-color: #2a2025;
    color: #aaaaaa;
}

.footer-bottom {
    padding: 0;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: #888888;
}

.footer-left a {
    color: #888888;
    transition: color 0.2s ease;
}

.footer-left a:hover {
    color: #ffffff;
}

.footer-divider {
    color: #555555;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #888888;
}

.footer-veuze-logo {
    height: 20px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}


/* ============================================
   BLOG GRID & CARDS
   ============================================ */

.blog-preview {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    gap: 1.875rem;
}

.blog-grid-preview {
    grid-template-columns: repeat(3, 1fr);
}

.blog-grid-paginated {
    grid-template-columns: repeat(4, 1fr);
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-link {
    display: block;
    color: inherit;
}

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

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

.blog-card-date {
    display: block;
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 0.5rem;
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: #1a1a2e;
}

.blog-card-desc {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.5;
}


/* ============================================
   BLOG POST
   ============================================ */

.blog-post {
    padding: 7.5rem 0 3.75rem;
}

.blog-post .container {
    max-width: 800px;
}

.blog-post-header {
    margin-bottom: 2rem;
}

.blog-back-link {
    display: inline-block;
    font-size: 0.9rem;
    color: #e0242c;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.blog-back-link:hover {
    color: #a93226;
}

.blog-post-date {
    display: block;
    font-size: 0.85rem;
    color: #888888;
    margin-bottom: 0.5rem;
}

.blog-post-header h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.blog-post-author {
    font-size: 0.9rem;
    color: #666666;
}

.blog-post-hero img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-post-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-post-content blockquote {
    border-left: 4px solid #e0242c;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    background: #f9f9f9;
    font-style: italic;
    color: #333333;
}

.blog-post-content a {
    color: #e0242c;
    text-decoration: underline;
}

.blog-post-content a:hover {
    color: #a93226;
}


/* ============================================
   PAGINATION
   ============================================ */

.pagination-wrapper {
    margin-top: 3rem;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination-page:hover {
    background-color: #f0f0f0;
}

.pagination-page.is-active {
    background-color: #e0242c;
    color: #ffffff;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a2e;
    transition: background-color 0.2s ease;
}

.pagination-btn:hover {
    background-color: #f0f0f0;
}

.pagination-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pagination-ellipsis {
    padding: 0 0.25rem;
    color: #888888;
}


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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   MEDIA QUERIES
   ============================================ */

@media (max-width: 1170px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

}

@media (max-width: 1024px) {

    .section-headline {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .hero-eyebrow {
        font-size: 1.375rem;
    }

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

    .two-col {
        gap: 3rem;
    }

    .two-col-headline {
        font-size: 2.5rem;
    }

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

}

@media (max-width: 768px) {

    .top-bar-text {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    .main-nav-inner {
        padding: 0.5rem 1.5rem;
    }

    .nav-logo img {
        height: 3.5rem;
    }

    .section-headline {
        font-size: 2rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-eyebrow {
        font-size: 1.125rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-content {
        padding-top: 8rem;
        padding-bottom: 3rem;
    }

    .cta-form-box {
        padding: 1.5rem;
    }

    .cta-form-eyebrow {
        font-size: 1.25rem;
    }

    .cta-form-headline {
        font-size: 1.75rem;
    }

    .cta-form-sub {
        font-size: 1.125rem;
    }

    .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .program-card-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-col-image {
        order: -1;
    }

    .two-col-headline {
        font-size: 2rem;
    }

    .two-col-text .btn {
        font-size: 1rem;
    }

    .review-card {
        flex: 0 0 280px;
    }

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

    .blog-grid-preview {
        grid-template-columns: 1fr;
    }

    .blog-grid-paginated {
        grid-template-columns: 1fr;
    }

    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .sticky-nav,
    .sticky-bottom-cta {
        display: none;
    }

    .mobile-sticky-header {
        display: flex;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
    }

}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 2rem;
    }

    .section-headline {
        font-size: 1.75rem;
    }

    .two-col-headline {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .benefits-section .section-headline {
        font-size: 2rem;
    }

}
