:root {
    --primary-color: #f59000;
    --secondary-color: #800000;
    --white: #fff;
    --black: #000000;
}

/* ===== Breadcrumb Hero ===== */
.breadcrumb-hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 30svh;
    /* responsive to small viewports */
    padding: clamp(48px, 8vw, 96px) 16px;
    /* comfy spacing */
    color: var(--white);
    isolation: isolate;
    /* keeps overlay below content */
    text-align: center;
    overflow: hidden;
    background-color: #0b1323;
    /* fallback color while image loads */
    background-image: url("./assets/all-images/carousel-img/2\ \(2\).png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image overlay (veil) */
.breadcrumb-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.562), rgba(0, 0, 0, .55));
    mix-blend-mode: multiply;
    z-index: -1;
    /* below content */
}

/* Optional pattern layer for depth */
.breadcrumb-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(60% 60% at 50% 0%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 60%);
    filter: blur(32px);
    z-index: -1;
}

.breadcrumb-inner {
    width: min(var(--maxw), 100%);
    margin-inline: auto;
    display: grid;
    gap: 14px;
    align-items: center;
    justify-items: center;
    backdrop-filter: saturate(140%) blur(0.5px);
}

.page-eyebrow {
    font-size: clamp(12px, 1.6vw, 14px);
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .85;
}

.page-title {
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    text-shadow: 0 6px 24px rgba(0, 0, 0, .35);
}

/* Breadcrumbs */
nav.breadcrumbs {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    /* pill */
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
    backdrop-filter: blur(6px) saturate(140%);
    -webkit-backdrop-filter: blur(6px) saturate(140%);
}

.breadcrumbs a,
.breadcrumbs span {
    font-size: clamp(13px, 2.2vw, 15px);
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

.breadcrumbs a {
    opacity: .9;
}

.breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.crumb-sep {
    opacity: .5
}

.current {
    opacity: 1;
    font-weight: 600;
}

/* ===== Demo content below hero (optional) ===== */
.page-content {
    max-width: var(--maxw);
    margin: clamp(24px, 4vw, 48px) auto;
    padding: 0 16px 64px;
    color: var(--text);
}

.page-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: clamp(16px, 3vw, 28px);
    box-shadow: 0 8px 24px rgba(2, 6, 23, .06);
}

/* ===== Accessibility prefers-reduced-motion ===== */
@media (prefers-reduced-motion: no-preference) {
    .breadcrumb-inner {
        animation: floatIn .7s cubic-bezier(.2, .7, .2, 1) 10ms both;
    }

    @keyframes floatIn {
        from {
            opacity: 0;
            transform: translateY(12px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }
}

/* ===== Small screen tweaks ===== */
@media (max-width: 480px) {
    .breadcrumb-hero {
        min-height: 42svh;
    }

    nav.breadcrumbs {
        padding: 8px 12px
    }
}

.contact-form h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 26px;
    font-weight: 700;           /* bold */
    text-align: center;         /* center */
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
}


/* Info Cards */
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform .25s ease;
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    /* highlight */
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.info-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--secondary-color);
}

.info-text {
    color: var(--muted);
    font-size: 15px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    border-top: 5px solid var(--secondary-color);
}

.contact-form h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--secondary-color);
}

/* Inputs */
.form-group label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
    color: var(--black);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border .2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 6px rgba(245, 144, 0, 0.4);
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s, opacity .2s;
    width: 100%;
}

.btn-submit:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}