/**
 * Eduzentra — Public Website Theme (Emerald & Gold)
 */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
    --ez-emerald: #1a5f4a;
    --ez-emerald-dark: #0f3d30;
    --ez-emerald-light: #2d8a6e;
    --ez-gold: #c9a227;
    --ez-gold-light: #e8c547;
    --ez-cream: #f7f5f0;
    --ez-cream-dark: #ede9df;
    --ez-ink: #1c2b26;
    --ez-muted: #5c6b65;
    --ez-white: #ffffff;
    --ez-radius: 16px;
    --ez-radius-lg: 24px;
    --ez-shadow: 0 20px 50px rgba(15, 61, 48, 0.1);
    --ez-font: 'DM Sans', system-ui, sans-serif;
    --ez-serif: 'Playfair Display', Georgia, serif;
}

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

html {
    overflow-x: clip;
    scroll-behavior: smooth;
}

body.ez-site {
    font-family: var(--ez-font);
    color: var(--ez-ink);
    background: var(--ez-white);
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
}

.ez-site img,
.ez-site video,
.ez-site iframe {
    max-width: 100%;
    height: auto;
}

.ez-main {
    min-height: 50vh;
    overflow-x: clip;
}

a { text-decoration: none; }

/* ─── Top bar ─── */
.ez-topbar {
    background: var(--ez-emerald-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    overflow-x: clip;
}

.ez-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ez-topbar__left {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ez-topbar__link {
    color: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ez-topbar__link:hover { color: var(--ez-gold-light); }

.ez-topbar__login {
    color: var(--ez-gold-light);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ez-topbar__login:hover { color: #fff; }

/* ─── Header ─── */
.ez-header {
    background: var(--ez-white);
    border-bottom: 1px solid var(--ez-cream-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.25s ease;
    overflow-x: clip;
}

.ez-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(15, 61, 48, 0.08);
}

.ez-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    min-width: 0;
}

.ez-logo {
    flex-shrink: 0;
    min-width: 0;
    max-width: calc(100% - 52px);
}

.ez-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.ez-logo__text {
    font-family: var(--ez-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ez-emerald-dark);
}

.ez-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ez-nav__link {
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--ez-muted);
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.ez-nav__link:hover,
.ez-nav__link.is-active {
    color: var(--ez-emerald-dark);
    background: var(--ez-cream);
}

.ez-nav__link.is-active { font-weight: 600; }

.ez-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

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

.ez-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ez-emerald-dark);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.ez-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ez-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.ez-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─── */
.ez-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
    max-width: 100%;
    text-align: center;
    white-space: normal;
}

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

.ez-btn--sm { padding: 0.55rem 1.15rem; font-size: 0.875rem; }

.ez-btn--gold {
    background: linear-gradient(135deg, var(--ez-gold) 0%, var(--ez-gold-light) 100%);
    color: var(--ez-emerald-dark);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.ez-btn--gold:hover {
    color: var(--ez-emerald-dark);
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.45);
}

.ez-btn--emerald {
    background: var(--ez-emerald);
    color: #fff;
    box-shadow: 0 8px 24px rgba(26, 95, 74, 0.3);
}

.ez-btn--emerald:hover { color: #fff; background: var(--ez-emerald-dark); }

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

.ez-btn--outline:hover {
    background: var(--ez-emerald);
    color: #fff;
}

.ez-btn--white {
    background: #fff;
    color: var(--ez-emerald-dark);
}

.ez-btn--white:hover { color: var(--ez-emerald-dark); }

.ez-btn--ghost-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}

.ez-btn--ghost-white:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Course finder compatibility on public pages */
.btn-themecolor,
.btn-themecolor:hover {
    background-color: var(--ez-emerald) !important;
    border-color: var(--ez-emerald) !important;
    color: #fff !important;
}
.text-themecolor { color: var(--ez-emerald) !important; }

/* ─── Hero ─── */
.ez-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: clamp(520px, 85vh, 720px);
}

.ez-hero-carousel .carousel,
.ez-hero-carousel .carousel-inner,
.ez-hero-carousel .carousel-item {
    width: 100%;
    min-height: clamp(520px, 85vh, 720px);
}

.ez-hero-carousel .carousel-item > .ez-hero {
    width: 100%;
    min-height: clamp(520px, 85vh, 720px);
}

.ez-hero {
    position: relative;
    min-height: clamp(520px, 85vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ez-emerald-dark);
    overflow: hidden;
}

.ez-hero--slide {
    min-height: clamp(520px, 85vh, 720px);
}

.ez-hero > .container {
    width: 100%;
    flex: 0 0 100%;
    position: relative;
    z-index: 2;
}

.ez-hero--page {
    min-height: clamp(280px, 40vh, 380px);
}

.ez-hero--page .ez-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ez-hero--page .ez-hero__text {
    margin-left: auto;
    margin-right: auto;
}

.ez-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ez-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--ez-emerald-dark) 92%, transparent) 0%,
        color-mix(in srgb, var(--ez-emerald) 78%, transparent) 50%,
        color-mix(in srgb, var(--ez-emerald-dark) 65%, transparent) 100%
    );
}

.ez-hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 32px 32px;
}

.ez-hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
    max-width: 680px;
    width: 100%;
    min-width: 0;
}

.ez-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(201,162,39,0.2);
    border: 1px solid rgba(201,162,39,0.4);
    border-radius: 999px;
    color: var(--ez-gold-light);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.ez-hero__title {
    font-family: var(--ez-serif);
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

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

.ez-hero__text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
}

.ez-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    width: 100%;
}

.ez-hero__stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.ez-hero__stat-value {
    font-family: var(--ez-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ez-gold-light);
}

.ez-hero__stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.15rem;
}

/* Carousel hero */
.ez-hero-carousel .carousel-inner {
    overflow: hidden;
}

.ez-hero-carousel .carousel-indicators {
    z-index: 5;
    margin-bottom: 1.25rem;
}

.ez-hero-carousel .carousel-control-prev,
.ez-hero-carousel .carousel-control-next {
    width: 56px;
    opacity: 0.8;
    z-index: 5;
}
.ez-hero-carousel .carousel-indicators [data-bs-target] {
    width: 8px; height: 8px; border-radius: 999px; border: none;
    background: rgba(255,255,255,0.35);
}
.ez-hero-carousel .carousel-indicators .active {
    width: 28px; background: var(--ez-gold-light);
}

/* ─── Sections ─── */
.ez-section {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.ez-section--cream { background: var(--ez-cream); }

.ez-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.ez-section__eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ez-gold);
    margin-bottom: 0.75rem;
}

.ez-section__title {
    font-family: var(--ez-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--ez-emerald-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ez-section__subtitle {
    color: var(--ez-muted);
    font-size: 1.0625rem;
    margin: 0;
}

/* ─── Feature cards ─── */
.ez-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.5rem;
}

.ez-feature {
    background: var(--ez-white);
    border: 1px solid var(--ez-cream-dark);
    border-radius: var(--ez-radius);
    padding: 2rem;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ez-section--cream .ez-feature { border-color: transparent; }

.ez-feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--ez-shadow);
}

.ez-feature__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ez-emerald) 0%, var(--ez-emerald-light) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.ez-feature__title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--ez-emerald-dark);
}

.ez-feature__text {
    color: var(--ez-muted);
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.65;
}

/* ─── Service cards ─── */
.ez-service-card {
    background: var(--ez-white);
    border-radius: var(--ez-radius-lg);
    overflow: hidden;
    border: 1px solid var(--ez-cream-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.ez-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ez-shadow);
}

.ez-service-card__head {
    background: linear-gradient(135deg, var(--ez-emerald-dark) 0%, var(--ez-emerald) 100%);
    padding: 2rem;
    color: #fff;
}

.ez-service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--ez-gold-light);
}

.ez-service-card__title {
    font-family: var(--ez-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}

.ez-service-card__body {
    padding: 1.75rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ez-service-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
}

.ez-service-card__list li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--ez-muted);
    font-size: 0.9375rem;
}

.ez-service-card__list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--ez-emerald);
    font-size: 0.75rem;
    top: 0.55rem;
}

/* ─── Process steps ─── */
.ez-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
    gap: 2rem;
    counter-reset: step;
}

.ez-process__item {
    text-align: center;
    position: relative;
}

.ez-process__num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ez-emerald);
    color: #fff;
    font-family: var(--ez-serif);
    font-size: 1.35rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 24px rgba(26,95,74,0.25);
}

.ez-process__title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--ez-emerald-dark);
}

.ez-process__text {
    font-size: 0.875rem;
    color: var(--ez-muted);
    margin: 0;
}

/* ─── FAQ accordion ─── */
.ez-faq .accordion-item {
    border: 1px solid var(--ez-cream-dark);
    border-radius: var(--ez-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--ez-white);
}

.ez-faq .accordion-button {
    font-weight: 600;
    color: var(--ez-emerald-dark);
    background: var(--ez-white);
    box-shadow: none !important;
    padding: 1.15rem 1.5rem;
    font-size: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.ez-faq .accordion-button:not(.collapsed) {
    background: var(--ez-cream);
    color: var(--ez-emerald);
}

.ez-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a5f4a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.ez-faq .accordion-body {
    color: var(--ez-muted);
    padding: 0 1.5rem 1.25rem;
    line-height: 1.7;
}

/* ─── CTA band ─── */
.ez-cta {
    background: linear-gradient(135deg, var(--ez-emerald-dark) 0%, var(--ez-emerald) 100%);
    padding: clamp(3rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
}

.ez-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
}

.ez-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.ez-cta__title {
    font-family: var(--ez-serif);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    color: #fff;
    margin-bottom: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.ez-cta__text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

/* ─── About page ─── */
.ez-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ez-about-image {
    border-radius: var(--ez-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--ez-cream) 0%, var(--ez-cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ez-about-image__inner {
    text-align: center;
    padding: 2rem;
}

.ez-about-image__inner i {
    font-size: 4rem;
    color: var(--ez-emerald);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.ez-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 1.5rem;
}

.ez-value {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--ez-white);
    border-radius: var(--ez-radius);
    border: 1px solid var(--ez-cream-dark);
}

.ez-value__icon {
    font-size: 2rem;
    color: var(--ez-gold);
    margin-bottom: 1rem;
}

.ez-value__title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ez-emerald-dark);
}

.ez-value__text {
    font-size: 0.875rem;
    color: var(--ez-muted);
    margin: 0;
}

/* ─── Contact page ─── */
.ez-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.ez-contact-info {
    background: var(--ez-emerald-dark);
    color: #fff;
    border-radius: var(--ez-radius-lg);
    padding: 2.5rem;
}

.ez-contact-info__title {
    font-family: var(--ez-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.ez-contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.ez-contact-info__item i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ez-gold-light);
    flex-shrink: 0;
}

.ez-contact-info__item a {
    color: rgba(255,255,255,0.9);
}

.ez-contact-info__item a:hover { color: var(--ez-gold-light); }

.ez-form-card {
    background: var(--ez-white);
    border: 1px solid var(--ez-cream-dark);
    border-radius: var(--ez-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--ez-shadow);
}

.ez-form-card .form-label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--ez-emerald-dark);
    margin-bottom: 0.35rem;
}

.ez-form-card .form-control,
.ez-form-card .form-select {
    border: 1.5px solid var(--ez-cream-dark);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.ez-form-card .form-control:focus {
    border-color: var(--ez-emerald);
    box-shadow: 0 0 0 3px rgba(26,95,74,0.12);
}

/* ─── Testimonials ─── */
.ez-testimonial {
    background: var(--ez-white);
    border-radius: var(--ez-radius);
    padding: 2rem;
    border: 1px solid var(--ez-cream-dark);
    height: 100%;
}

.ez-testimonial__stars {
    color: var(--ez-gold);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.ez-testimonial__text {
    color: var(--ez-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.ez-testimonial__author {
    font-weight: 700;
    color: var(--ez-emerald-dark);
    font-size: 0.9375rem;
}

.ez-testimonial__role {
    font-size: 0.8125rem;
    color: var(--ez-muted);
}

/* ─── Footer ─── */
.ez-footer__main {
    background: var(--ez-emerald-dark);
    color: rgba(255,255,255,0.8);
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.ez-footer__brand img { max-height: 48px; margin-bottom: 1.25rem; }

.ez-footer__brand strong {
    font-family: var(--ez-serif);
    font-size: 1.35rem;
    color: #fff;
    display: block;
    margin-bottom: 1.25rem;
}

.ez-footer__about {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.ez-footer__social {
    display: flex;
    gap: 0.65rem;
}

.ez-footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    transition: background 0.2s, color 0.2s;
}

.ez-footer__social a:hover {
    background: var(--ez-gold);
    color: var(--ez-emerald-dark);
}

.ez-footer__title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ez-gold-light);
    margin-bottom: 1.25rem;
}

.ez-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ez-footer__links li { margin-bottom: 0.5rem; }

.ez-footer__links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.ez-footer__links a:hover { color: #fff; }

.ez-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ez-footer__contact li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    font-size: 0.9375rem;
}

.ez-footer__contact i {
    color: var(--ez-gold-light);
    margin-top: 3px;
}

.ez-footer__contact a {
    color: rgba(255,255,255,0.85);
}

.ez-footer__contact a:hover { color: var(--ez-gold-light); }

.ez-footer__bottom {
    background: var(--ez-footer-bar, #0a2820);
    padding: 1.25rem 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.ez-footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 0;
}

.ez-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

/* Bootstrap grid overflow fix inside website theme */
.ez-site [class*="col-"] {
    min-width: 0;
}

.ez-site .container,
.ez-site .container-fluid {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow-x: clip;
}

.ez-footer__legal a {
    color: rgba(255,255,255,0.55);
    margin-left: 0;
}

.ez-footer__legal a:hover { color: #fff; }

/* ─── Alert / flash ─── */
.ez-alert {
    border-radius: var(--ez-radius);
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

/* ─── Responsive ─── */
@media (max-width: 991px) {
    .ez-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--ez-white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--ez-cream-dark);
        box-shadow: 0 12px 32px rgba(15,61,48,0.1);
        max-width: 100%;
    }

    .ez-nav.is-open { display: flex; }

    .ez-nav__link { width: 100%; border-radius: 10px; }

    .ez-nav-toggle { display: flex; flex-shrink: 0; }

    .ez-header { position: relative; overflow: visible; }

    .ez-header__inner { flex-wrap: nowrap; position: relative; }

    .ez-about-grid,
    .ez-contact-grid {
        grid-template-columns: 1fr;
    }

    .ez-hero__stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 575px) {
    .ez-topbar { font-size: 0.75rem; }

    .ez-topbar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .ez-topbar__left {
        flex-direction: column;
        gap: 0.35rem;
        width: 100%;
    }

    .ez-hero__content {
        padding: 2.5rem 0;
    }

    .ez-hero__title {
        font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    }

    .ez-hero__text {
        font-size: 1rem;
    }

    .ez-hero__actions {
        flex-direction: column;
    }

    .ez-hero__actions .ez-btn {
        width: 100%;
    }

    .ez-hero-carousel .carousel-control-prev,
    .ez-hero-carousel .carousel-control-next {
        display: none;
    }

    .ez-section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .ez-contact-info {
        padding: 1.75rem;
    }

    .ez-footer__legal a {
        margin-left: 0;
    }
}
