/* =========================================================
   BLESSING MEDIA HOUSE STUDIO (JPS)
   GLOBAL WEBSITE STYLESHEET
   ========================================================= */


/* =========================================================
   1. GOOGLE FONT
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');


/* =========================================================
   2. GLOBAL BRAND VARIABLES
   ========================================================= */

:root {

    /* -----------------------------------------------------
       BRAND COLORS
    ----------------------------------------------------- */

    --color-navy: #0B1F5B;
    --color-gold: #FFB800;
    --color-white: #FFFFFF;
    --color-black: #000000;


    /* -----------------------------------------------------
       NAVY VARIATIONS
    ----------------------------------------------------- */

    --color-navy-dark: #071642;
    --color-navy-light: #132D79;


    /* -----------------------------------------------------
       TEXT COLORS
    ----------------------------------------------------- */

    --color-text: #000000;
    --color-text-light: #333333;
    --color-text-muted: #6B7280;


    /* -----------------------------------------------------
       BACKGROUND COLORS
    ----------------------------------------------------- */

    --color-background: #FFFFFF;
    --color-background-light: #F7F8FC;
    --color-background-gray: #F1F3F7;


    /* -----------------------------------------------------
       BORDER
    ----------------------------------------------------- */

    --color-border: #E5E7EB;


    /* -----------------------------------------------------
       FONT
    ----------------------------------------------------- */

    --font-primary: 'Inter', sans-serif;


    /* -----------------------------------------------------
       FONT SIZES
    ----------------------------------------------------- */

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;


    /* -----------------------------------------------------
       FONT WEIGHTS
    ----------------------------------------------------- */

    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;
    --weight-extrabold: 800;
    --weight-black: 900;


    /* -----------------------------------------------------
       WEBSITE WIDTH
    ----------------------------------------------------- */

    --container-width: 1200px;
    --container-padding: 24px;


    /* -----------------------------------------------------
       SPACING
    ----------------------------------------------------- */

    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;


    /* -----------------------------------------------------
       BORDER RADIUS
    ----------------------------------------------------- */

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 999px;


    /* -----------------------------------------------------
       SHADOWS
    ----------------------------------------------------- */

    --shadow-sm:
        0 2px 8px rgba(11, 31, 91, 0.06);

    --shadow-md:
        0 8px 25px rgba(11, 31, 91, 0.10);

    --shadow-lg:
        0 20px 50px rgba(11, 31, 91, 0.14);


    /* -----------------------------------------------------
       TRANSITIONS
    ----------------------------------------------------- */

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


/* =========================================================
   3. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}


body {
    margin: 0;
    padding: 0;

    font-family: var(--font-primary);

    font-size: var(--font-size-md);

    font-weight: var(--weight-regular);

    line-height: 1.7;

    color: var(--color-text);

    background: var(--color-background);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img {
    display: block;

    max-width: 100%;

    height: auto;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    cursor: pointer;
}


ul,
ol {
    list-style: none;
}


/* =========================================================
   4. GLOBAL CONTAINER
   ========================================================= */

.container {

    width: 100%;

    max-width: var(--container-width);

    margin-left: auto;
    margin-right: auto;

    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}


/* =========================================================
   5. TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    margin: 0;

    font-family: var(--font-primary);

    font-weight: var(--weight-extrabold);

    color: var(--color-navy);

    line-height: 1.2;
}


h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}


h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}


h3 {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
}


h4 {
    font-size: 1.25rem;
}


p {
    margin-bottom: var(--space-lg);

    color: var(--color-text);
}


.text-center {
    text-align: center;
}


.text-white {
    color: var(--color-white);
}


.text-navy {
    color: var(--color-navy);
}


.text-gold {
    color: var(--color-gold);
}


.text-muted {
    color: var(--color-text-muted);
}


/* =========================================================
   6. SECTION SYSTEM
   ========================================================= */

.section {

    padding-top: var(--space-5xl);

    padding-bottom: var(--space-5xl);
}


.section-light {
    background: var(--color-background-light);
}


.section-gray {
    background: var(--color-background-gray);
}


.section-navy {

    background: var(--color-navy);

    color: var(--color-white);
}


.section-heading {

    max-width: 760px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: var(--space-3xl);

    text-align: center;
}


.section-heading h2 {

    margin-bottom: var(--space-md);
}


.section-heading p {

    color: var(--color-text-muted);

    font-size: var(--font-size-lg);
}


/* =========================================================
   7. EYEBROW
   ========================================================= */

.eyebrow {

    display: inline-block;

    margin-bottom: var(--space-sm);

    color: var(--color-gold);

    font-size: var(--font-size-xs);

    font-weight: var(--weight-extrabold);

    letter-spacing: 0.15em;

    text-transform: uppercase;
}


/* =========================================================
   8. BUTTONS
   ========================================================= */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 24px;

    border: 2px solid transparent;

    border-radius: var(--radius-pill);

    font-size: var(--font-size-sm);

    font-weight: var(--weight-bold);

    text-align: center;

    transition:
        background var(--transition-normal),
        color var(--transition-normal),
        border-color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}


.btn:hover {

    transform: translateY(-2px);
}


/* Primary */

.btn-primary {

    background: var(--color-gold);

    color: var(--color-navy);
}


.btn-primary:hover {

    background: var(--color-navy);

    color: var(--color-white);

    box-shadow: var(--shadow-md);
}


/* Secondary */

.btn-secondary {

    background: var(--color-navy);

    color: var(--color-white);
}


.btn-secondary:hover {

    background: var(--color-gold);

    color: var(--color-navy);
}


/* Outline */

.btn-outline {

    background: transparent;

    border-color: var(--color-navy);

    color: var(--color-navy);
}


.btn-outline:hover {

    background: var(--color-navy);

    color: var(--color-white);
}


/* White outline */

.btn-outline-white {

    background: transparent;

    border-color: var(--color-white);

    color: var(--color-white);
}


.btn-outline-white:hover {

    background: var(--color-white);

    color: var(--color-navy);
}


/* =========================================================
   9. HEADER
   ========================================================= */
/* =========================================================
   TOPBAR
   ========================================================= */

.topbar {
    width: 100%;
    background: var(--color-navy);
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.topbar-inner {
    width: 100%;
    min-height: 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    overflow: hidden;
}


.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;

    gap: 20px;

    flex-wrap: nowrap;

    min-width: 0;
}


/* =========================================================
   TOPBAR ITEM
   ========================================================= */

.topbar-item {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.96);

    font-size: 14px;

    font-weight: 500;

    line-height: 1.3;

    white-space: nowrap;

    flex-shrink: 0;

    transition: color var(--transition-fast);
}


a.topbar-item:hover {
    color: var(--color-gold);
}


/* =========================================================
   TOPBAR ICON CIRCLE
   ========================================================= */

.topbar-icon {
    width: 32px;
    height: 32px;

    min-width: 32px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-gold);

    color: var(--color-white);

    font-size: 14px;

    line-height: 1;

    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.15);

    transition:
        transform var(--transition-normal),
        background var(--transition-normal);
}


.topbar-item:hover .topbar-icon {
    transform: translateY(-2px);

    background: var(--color-navy-light);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .topbar-inner {
        gap: 12px;
    }

    .topbar-left,
    .topbar-right {
        gap: 12px;
    }

    .topbar-item {
        font-size: 12px;
        gap: 7px;
    }

    .topbar-icon {
        width: 29px;
        height: 29px;
        min-width: 29px;
        font-size: 12px;
    }
}


/* =========================================================
   SMALLER SCREENS
   ========================================================= */

@media (max-width: 900px) {

    .topbar-inner {
        gap: 8px;
    }

    .topbar-left,
    .topbar-right {
        gap: 8px;
    }

    .topbar-item {
        font-size: 11px;
        gap: 6px;
    }

    .topbar-icon {
        width: 27px;
        height: 27px;
        min-width: 27px;
        font-size: 11px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .topbar-inner {
        padding-top: 7px;
        padding-bottom: 7px;

        gap: 6px;
    }

    .topbar-left,
    .topbar-right {
        gap: 6px;
    }

    .topbar-item {
        font-size: 9px;
        gap: 4px;
    }

    .topbar-icon {
        width: 23px;
        height: 23px;
        min-width: 23px;
        font-size: 9px;
    }
}


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: var(--color-white);

    box-shadow: var(--shadow-sm);
}


.main-navbar {

    width: 100%;

    background: var(--color-white);
}


.navbar-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-xl);
}


/* =========================================================
   LOGO
   ========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    flex-shrink: 0;
}


.site-logo {

    display: block;

    width: auto;

    height: 58px;

    max-width: 220px;

    object-fit: contain;

    transition:
        transform var(--transition-normal);
}


.brand:hover .site-logo {

    transform: scale(1.03);
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 26px;
}


.nav-link {

    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 82px;

    color: var(--color-navy);

    font-size: 13px;

    font-weight: var(--weight-semibold);

    white-space: nowrap;

    transition:
        color var(--transition-fast);
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    background: var(--color-gold);

    transition:
        width var(--transition-normal);
}


.nav-link:hover {

    color: var(--color-gold);
}


.nav-link:hover::after {

    width: 100%;
}


/* =========================================================
   ACTIVE NAVIGATION
   ========================================================= */

.nav-link.active {

    color: var(--color-gold);
}


.nav-link.active::after {

    width: 100%;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {

    width: 46px;

    height: 46px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    padding: 0;

    border: 2px solid var(--color-navy);

    border-radius: var(--radius-md);

    background: var(--color-white);

    transition:
        background var(--transition-normal),
        border-color var(--transition-normal);
}


.menu-toggle:hover {

    background: var(--color-gold);

    border-color: var(--color-gold);
}


.menu-line {

    display: block;

    width: 20px;

    height: 2px;

    background: var(--color-navy);

    border-radius: 2px;

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}


/* =========================================================
   10. PAGE HERO
   ========================================================= */

.page-hero {

    position: relative;

    padding-top: 90px;

    padding-bottom: 90px;

    background:
        linear-gradient(
            135deg,
            var(--color-navy),
            var(--color-navy-dark)
        );

    overflow: hidden;
}


.page-hero h1 {

    color: var(--color-white);

    max-width: 850px;
}


.page-hero p {

    max-width: 700px;

    color: rgba(255, 255, 255, 0.85);

    font-size: var(--font-size-lg);
}


/* =========================================================
   11. CARDS
   ========================================================= */

.card {

    background: var(--color-white);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-lg);

    padding: var(--space-xl);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}


.card:hover {

    transform: translateY(-6px);

    border-color: rgba(255, 184, 0, 0.5);

    box-shadow: var(--shadow-md);
}


/* =========================================================
   12. GRID SYSTEM
   ========================================================= */

.grid {

    display: grid;

    gap: var(--space-xl);
}


.grid-2 {

    grid-template-columns:
        repeat(2, minmax(0, 1fr));
}


.grid-3 {

    grid-template-columns:
        repeat(3, minmax(0, 1fr));
}


.grid-4 {

    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}


/* =========================================================
   13. FORM STYLES
   ========================================================= */

.form-group {

    margin-bottom: var(--space-lg);
}


.form-label {

    display: block;

    margin-bottom: 8px;

    color: var(--color-navy);

    font-size: var(--font-size-sm);

    font-weight: var(--weight-semibold);
}


.form-control {

    width: 100%;

    min-height: 50px;

    padding: 12px 16px;

    border: 1px solid var(--color-border);

    border-radius: var(--radius-md);

    background: var(--color-white);

    color: var(--color-black);

    font-size: var(--font-size-md);

    outline: none;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}


.form-control:focus {

    border-color: var(--color-gold);

    box-shadow:
        0 0 0 3px rgba(255, 184, 0, 0.15);
}


textarea.form-control {

    min-height: 150px;

    resize: vertical;
}


select.form-control {

    cursor: pointer;
}


/* =========================================================
   14. IMAGE STYLES
   ========================================================= */

.image-cover {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.image-rounded {

    border-radius: var(--radius-lg);
}


.image-circle {

    border-radius: 50%;
}


/* =========================================================
   15. RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .main-nav {

        gap: 18px;
    }


    .nav-link {

        font-size: 12px;
    }


    .topbar-left,
    .topbar-right {

        gap: 12px;
    }

}


/* =========================================================
   16. TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 900px) {

    .topbar-inner {

        min-height: auto;

        padding-top: 9px;

        padding-bottom: 9px;
    }


    .topbar-left,
    .topbar-right {

        gap: 8px 14px;
    }


    .navbar-inner {

        min-height: 74px;
    }


    /* Show mobile button */

    .menu-toggle {

        display: flex;
    }


    /* Hide navigation initially */

    .main-nav {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding:
            12px 24px 24px;

        background: var(--color-white);

        border-top:
            1px solid var(--color-border);

        box-shadow: var(--shadow-lg);
    }


    /* Navigation opened by JS */

    .main-nav.open {

        display: flex;
    }


    .nav-link {

        min-height: 52px;

        justify-content: flex-start;

        border-bottom:
            1px solid var(--color-border);

        font-size: 15px;
    }


    .nav-link::after {

        display: none;
    }


    .nav-link.active {

        color: var(--color-gold);
    }

}


/* =========================================================
   17. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {

        padding-left: 18px;

        padding-right: 18px;
    }


    /* ---------------------------------------------
       TOPBAR
    --------------------------------------------- */

    .topbar-inner {

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;

        padding-top: 8px;

        padding-bottom: 8px;
    }


    .topbar-left,
    .topbar-right {

        width: 100%;

        display: flex;

        flex-wrap: wrap;

        gap: 5px 14px;
    }


    .topbar-item {

        font-size: 10px;

        white-space: normal;
    }


    /* ---------------------------------------------
       NAVBAR
    --------------------------------------------- */

    .navbar-inner {

        min-height: 70px;
    }


    .site-logo {

        height: 48px;

        max-width: 190px;
    }


    .main-nav {

        padding-left: 18px;

        padding-right: 18px;
    }


    /* ---------------------------------------------
       SECTIONS
    --------------------------------------------- */

    .section {

        padding-top: 64px;

        padding-bottom: 64px;
    }


    /* ---------------------------------------------
       GRIDS
    --------------------------------------------- */

    .grid-2,
    .grid-3,
    .grid-4 {

        grid-template-columns: 1fr;
    }


    /* ---------------------------------------------
       PAGE HERO
    --------------------------------------------- */

    .page-hero {

        padding-top: 64px;

        padding-bottom: 64px;
    }

}


/* =========================================================
   18. SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .topbar-right {

        display: none;
    }


    .site-logo {

        height: 44px;

        max-width: 170px;
    }


    .menu-toggle {

        width: 42px;

        height: 42px;
    }

}


/* =========================================================
   19. ACCESSIBILITY
   ========================================================= */

:focus-visible {

    outline: 3px solid var(--color-gold);

    outline-offset: 3px;
}


/* =========================================================
   20. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto !important;
    }


    *,
    *::before,
    *::after {

        transition-duration: 0.01ms !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;
    }

}
/* =========================================================
   NAVIGATION CTA
   ========================================================= */

.nav-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 46px;

    padding: 10px 20px;

    background: var(--color-gold);

    color: var(--color-navy);

    border-radius: var(--radius-pill);

    font-size: 14px;

    font-weight: var(--weight-bold);

    white-space: nowrap;

    box-shadow:
        0 5px 15px rgba(255, 184, 0, 0.20);

    transition:
        background var(--transition-normal),
        color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}


.nav-cta i {
    font-size: 13px;

    transition:
        transform var(--transition-normal);
}


.nav-cta:hover {
    background: var(--color-navy);

    color: var(--color-white);

    transform: translateY(-2px);

    box-shadow: var(--shadow-md);
}


.nav-cta:hover i {
    transform: translateX(4px);
}

/* =========================================================
   
/* =========================================================
   11. HOME HERO SLIDER
========================================================= */


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-slider {

    position: relative;

    width: 100%;

    min-height: 680px;

    overflow: hidden;

    background: var(--color-navy);

}


/* =========================================================
   SLIDES WRAPPER
========================================================= */

.hero-slides {

    position: relative;

    width: 100%;

    min-height: 680px;

}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;
    min-height: 680px;

    display: flex;

    align-items: center;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.02);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 5s ease;

}


/* Active slide */

.hero-slide.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);

    z-index: 2;

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 66, 0.92) 0%,
            rgba(7, 22, 66, 0.76) 45%,
            rgba(7, 22, 66, 0.38) 100%
        );

}


/* =========================================================
   HERO CONTENT CONTAINER
   ---------------------------------------------------------
   Uses the existing universal .container.
========================================================= */

.hero-slide-inner {

    position: relative;

    z-index: 2;

    width: 100%;

    display: flex;

    align-items: center;

    min-height: 680px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: 100%;

    max-width: 760px;

    padding-top: var(--space-2xl);

    padding-bottom: var(--space-2xl);

}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero-eyebrow {

    display: inline-block;

    margin-bottom: var(--space-md);

    color: var(--color-gold);

    font-size: var(--font-size-sm);

    font-weight: var(--weight-extrabold);

    letter-spacing: 0.14em;

    text-transform: uppercase;

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    margin-bottom: var(--space-md);

    color: var(--color-white);

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    font-weight: var(--weight-black);

    line-height: 1.08;

}


/* Highlighted title text */

.hero-title span {

    display: block;

    color: var(--color-gold);

}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.hero-subtitle {

    margin-bottom: var(--space-md);

    color: var(--color-white);

    font-size: clamp(1.2rem, 2.5vw, 1.7rem);

    font-weight: var(--weight-semibold);

    line-height: 1.4;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 680px;

    margin-bottom: var(--space-xl);

    color: rgba(255, 255, 255, 0.86);

    font-size: var(--font-size-lg);

    line-height: 1.8;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: var(--space-md);

}


/* Make icons nicely spaced */

.hero-actions .btn i {

    margin-left: 4px;

}


/* =========================================================
   HERO PREVIOUS / NEXT CONTROLS
   ---------------------------------------------------------
   No background.
========================================================= */

.hero-control {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 50px;

    height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: var(--color-white);

    font-size: var(--font-size-lg);

    transform: translateY(-50%);

    transition:
        color var(--transition-normal),
        transform var(--transition-normal);

}


.hero-control:hover {

    background: transparent;

    color: var(--color-gold);

}


/* Previous */

.hero-prev {

    left: 18px;

}


/* Next */

.hero-next {

    right: 18px;

}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots {

    position: absolute;

    left: 50%;

    bottom: 30px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;

    transform: translateX(-50%);

}


/* Individual dot */

.hero-dot {

    width: 9px;

    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        width var(--transition-normal),
        background var(--transition-normal);

}


/* Active dot */

.hero-dot.active {

    width: 28px;

    border-radius: var(--radius-pill);

    background: var(--color-gold);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {

        min-height: 620px;

    }


    .hero-content {

        max-width: 680px;

    }


    .hero-title {

        font-size: clamp(2.5rem, 6vw, 4rem);

    }


    .hero-description {

        font-size: var(--font-size-md);

    }


    .hero-prev {

        left: 10px;

    }


    .hero-next {

        right: 10px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {

        min-height: 620px;

    }


    /* Center content vertically */

    .hero-slide-inner {

        align-items: center;

    }


    .hero-content {

        max-width: 100%;

        padding-top: var(--space-xl);

        padding-bottom: var(--space-3xl);

    }


    .hero-eyebrow {

        font-size: var(--font-size-xs);

        letter-spacing: 0.10em;

    }


    .hero-title {

        font-size: clamp(2.15rem, 10vw, 3.2rem);

        line-height: 1.1;

    }


    .hero-subtitle {

        font-size: var(--font-size-lg);

    }


    .hero-description {

        font-size: var(--font-size-sm);

        line-height: 1.7;

        margin-bottom: var(--space-lg);

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    /* Keep arrows visible but unobtrusive */

    .hero-control {

        width: 42px;

        height: 42px;

        font-size: var(--font-size-md);

    }


    .hero-prev {

        left: 2px;

    }


    .hero-next {

        right: 2px;

    }


    .hero-dots {

        bottom: 20px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {

        min-height: 650px;

    }


    .hero-content {

        padding-top: var(--space-lg);

        padding-bottom: var(--space-3xl);

    }


    .hero-title {

        font-size: clamp(2rem, 10vw, 2.7rem);

    }


    .hero-subtitle {

        font-size: var(--font-size-md);

    }


    .hero-description {

        font-size: var(--font-size-sm);

    }


    .hero-control {

        width: 36px;

        height: 36px;

    }


    .hero-prev {

        left: 0;

    }


    .hero-next {

        right: 0;

    }

}/* =========================================================
   11. HOME HERO SLIDER
========================================================= */


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-slider {

    position: relative;

    width: 100%;

    min-height: 680px;

    overflow: hidden;

    background: var(--color-navy);

}


/* =========================================================
   SLIDES WRAPPER
========================================================= */

.hero-slides {

    position: relative;

    width: 100%;

    min-height: 680px;

}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.hero-slide {

    position: absolute;

    inset: 0;

    width: 100%;
    min-height: 680px;

    display: flex;

    align-items: center;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.02);

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 5s ease;

}


/* Active slide */

.hero-slide.active {

    opacity: 1;

    visibility: visible;

    transform: scale(1);

    z-index: 2;

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 66, 0.92) 0%,
            rgba(7, 22, 66, 0.76) 45%,
            rgba(7, 22, 66, 0.38) 100%
        );

}


/* =========================================================
   HERO CONTENT CONTAINER
   ---------------------------------------------------------
   Uses the existing universal .container.
========================================================= */

.hero-slide-inner {

    position: relative;

    z-index: 2;

    width: 100%;

    display: flex;

    align-items: center;

    min-height: 680px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: 100%;

    max-width: 760px;

    padding-top: var(--space-2xl);

    padding-bottom: var(--space-2xl);

}


/* =========================================================
   HERO EYEBROW
========================================================= */

.hero-eyebrow {

    display: inline-block;

    margin-bottom: var(--space-md);

    color: var(--color-gold);

    font-size: var(--font-size-sm);

    font-weight: var(--weight-extrabold);

    letter-spacing: 0.14em;

    text-transform: uppercase;

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    margin-bottom: var(--space-md);

    color: var(--color-white);

    font-size: clamp(2.5rem, 6vw, 4.5rem);

    font-weight: var(--weight-black);

    line-height: 1.08;

}


/* Highlighted title text */

.hero-title span {

    display: block;

    color: var(--color-gold);

}


/* =========================================================
   HERO SUBTITLE
========================================================= */

.hero-subtitle {

    margin-bottom: var(--space-md);

    color: var(--color-white);

    font-size: clamp(1.2rem, 2.5vw, 1.7rem);

    font-weight: var(--weight-semibold);

    line-height: 1.4;

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 680px;

    margin-bottom: var(--space-xl);

    color: rgba(255, 255, 255, 0.86);

    font-size: var(--font-size-lg);

    line-height: 1.8;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: var(--space-md);

}


/* Make icons nicely spaced */

.hero-actions .btn i {

    margin-left: 4px;

}


/* =========================================================
   HERO PREVIOUS / NEXT CONTROLS
   ---------------------------------------------------------
   No background.
========================================================= */

.hero-control {

    position: absolute;

    top: 50%;

    z-index: 10;

    width: 50px;

    height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: var(--color-white);

    font-size: var(--font-size-lg);

    transform: translateY(-50%);

    transition:
        color var(--transition-normal),
        transform var(--transition-normal);

}


.hero-control:hover {

    background: transparent;

    color: var(--color-gold);

}


/* Previous */

.hero-prev {

    left: 18px;

}


/* Next */

.hero-next {

    right: 18px;

}


/* =========================================================
   HERO DOTS
========================================================= */

.hero-dots {

    position: absolute;

    left: 50%;

    bottom: 30px;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 9px;

    transform: translateX(-50%);

}


/* Individual dot */

.hero-dot {

    width: 9px;

    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition:
        width var(--transition-normal),
        background var(--transition-normal);

}


/* Active dot */

.hero-dot.active {

    width: 28px;

    border-radius: var(--radius-pill);

    background: var(--color-gold);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {

        min-height: 620px;

    }


    .hero-content {

        max-width: 680px;

    }


    .hero-title {

        font-size: clamp(2.5rem, 6vw, 4rem);

    }


    .hero-description {

        font-size: var(--font-size-md);

    }


    .hero-prev {

        left: 10px;

    }


    .hero-next {

        right: 10px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {

        min-height: 620px;

    }


    /* Center content vertically */

    .hero-slide-inner {

        align-items: center;

    }


    .hero-content {

        max-width: 100%;

        padding-top: var(--space-xl);

        padding-bottom: var(--space-3xl);

    }


    .hero-eyebrow {

        font-size: var(--font-size-xs);

        letter-spacing: 0.10em;

    }


    .hero-title {

        font-size: clamp(2.15rem, 10vw, 3.2rem);

        line-height: 1.1;

    }


    .hero-subtitle {

        font-size: var(--font-size-lg);

    }


    .hero-description {

        font-size: var(--font-size-sm);

        line-height: 1.7;

        margin-bottom: var(--space-lg);

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    /* Keep arrows visible but unobtrusive */

    .hero-control {

        width: 42px;

        height: 42px;

        font-size: var(--font-size-md);

    }


    .hero-prev {

        left: 2px;

    }


    .hero-next {

        right: 2px;

    }


    .hero-dots {

        bottom: 20px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero-slider,
    .hero-slides,
    .hero-slide,
    .hero-slide-inner {

        min-height: 650px;

    }


    .hero-content {

        padding-top: var(--space-lg);

        padding-bottom: var(--space-3xl);

    }


    .hero-title {

        font-size: clamp(2rem, 10vw, 2.7rem);

    }


    .hero-subtitle {

        font-size: var(--font-size-md);

    }


    .hero-description {

        font-size: var(--font-size-sm);

    }


    .hero-control {

        width: 36px;

        height: 36px;

    }


    .hero-prev {

        left: 0;

    }


    .hero-next {

        right: 0;

    }

}