/* ============================================================
   Life At Page — Hero Section
   File     : life-at-page.css
   Prefix   : lat-
   Requires : Bootstrap 5
   Fonts    : Syne (heading) + Outfit (body) — Google Fonts
   ============================================================ */



/* ============================================================
   PAGE WRAPPER
   ============================================================ */
#lat-page {
    overflow-x: hidden;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.lat-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    background-color: #0d0d0f;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* ---- Background Video ---- */
.lat-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* common video/iframe */
.lat-hero__video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw;
    height: 56.25vw; /* 16:9 */

    min-width: 177.77vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    object-fit: cover;

    pointer-events: none;
}
/* ---- Bottom fade overlay — next section bleeds in ---- */
.lat-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 15, 0.20) 0%,
        rgba(13, 13, 15, 0.55) 55%,
        rgba(13, 13, 15, 0.92) 100%
    );
    z-index: 1;
}

/* ---- Content ---- */
.lat-hero__content {
    position: relative;
    z-index: 2;
}

/* ---- Tag / Eyebrow pill ---- */
.lat-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    opacity: 0;
    margin-bottom: 12px;
    animation: lat-up 0.6s ease forwards;
    animation-delay: 0.05s;
}


.lat-hero__tag span {
    font-size: 32px;
    font-weight: 500;
    font-weight: 500;
    color: #f7f7f7;
    text-transform: capitalize;
}

/* ---- Heading ---- */
.lat-hero__heading {
    font-size: clamp(2.4rem, 5.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.05;
    color: #ffffff;
    opacity: 0;
    transform: translateY(18px);
    animation: lat-up 0.7s ease forwards;
    animation-delay: 0.18s;
    text-transform: capitalize;
}

/* Green accent on highlight word — wrap in <em class="lat-hero__accent"> */


/* ---- Sub Heading ---- */
.lat-hero__subheading {
    font-size: clamp(0.95rem, 1.8vw, 1.65rem);
    font-weight: 400;
    line-height: 1.5;
    color: rgb(255 255 255 / 80%);
    margin: 0 auto 24px auto;
    opacity: 0;
    transform: translateY(16px);
    animation: lat-up 0.7s ease forwards;
    animation-delay: 0.32s;
}

/* ---- Description (if separate from subheading) ---- */
.lat-hero__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.45);
    max-width: 480px;
    margin: -16px auto 28px auto;

    opacity: 0;
    transform: translateY(14px);
    animation: lat-up 0.7s ease forwards;
    animation-delay: 0.4s;
}

/* ---- Buttons Row ---- */
.lat-hero__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    opacity: 0;
    transform: translateY(14px);
    animation: lat-up 0.7s ease forwards;
    animation-delay: 0.46s;
}

/* Primary button — solid green */
.lat-hero__btn-primary {
display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    padding: 0 50px;
    border-radius: 50px;
    text-transform: capitalize;
    letter-spacing: .5px;
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    border: 2px solid transparent;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all .3s ease;
    height: 50px;    gap: 10px;
}

.lat-hero__btn-primary:hover {
    transform: translateY(-3px);
    color: #fff !important;
    text-decoration: none;
}
.lat-hero__btn-primary:hover::before {
    transform: translateX(0);
}

.lat-hero__btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateX(-100%);
    transition: transform .4s ease;
    z-index: -1;
}
.lat-hero__btn-primary svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lat-hero__btn-primary:hover svg {
    transform: translateX(3px);
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes lat-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px) {
    .lat-hero__content {
        padding-top: 80px;
        padding-bottom: 70px;
    }
    .lat-hero__heading {
        font-size: 2.6rem;
    }
}

@media (max-width: 575.98px) {
    .lat-hero__content {
        padding-top: 70px;
        padding-bottom: 60px;
    }
    .lat-hero__heading {
        font-size: 2rem;
        letter-spacing: -0.02em;
    }
    .lat-hero__subheading {
        font-size: 0.92rem;
    }
    .lat-hero__btn-primary,
    .lat-hero__btn-ghost {
        font-size: 0.75rem;
        padding: 0.65rem 1.4rem;
    }
    .lat-hero__btns {
        flex-direction: column;
        gap: 10px;
    }
}


/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .lat-hero__tag,
    .lat-hero__heading,
    .lat-hero__subheading,
    .lat-hero__desc,
    .lat-hero__btns{
        animation: none;
        opacity: 1;
        transform: none;
    }
    .lat-hero__btn-primary,
    .lat-hero__btn-ghost {
        transition: none;
    }
}
/* ============================================================
   QUOTE SECTION  —  lat-quotes  (Image Overlap Style)
   Replace existing lat-quote-section.css content with this
   ============================================================ */
 
:root {
    --lat-navy:       #0f1f4b;
    --lat-navy-dark:  #0a1535;
    --lat-gold:       #f5c518;
    --lat-white:      #ffffff;
    --lat-off-white:  #f0f2f8;
    --lat-text-body:  #334056;
}
 
/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.lat-quotes {
    position: relative;
    background: #f0f2f8;
    padding: 50px 0 50px;
    overflow: hidden;
}
 
.lat-quotes__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.lat-quotes__blob--1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(15,31,75,0.08) 0%, transparent 70%);
    top: -100px; left: -80px;
}
.lat-quotes__blob--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(245,197,24,0.10) 0%, transparent 70%);
    bottom: -60px; right: -40px;
}
 
.lat-quotes__container {
    position: relative;
    z-index: 1;
}
 
/* ============================================================
   SECTION HEADER
   ============================================================ */
.lat-quotes__header {
    text-align: center;
    margin-bottom: 40px;
}
.lat-quotes__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 5px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--accent-color), #2563eb) !important;
}
 
.lat-quotes__heading {
    font-size: 36px;
    font-weight: 500;
    color: #0e2b5c;
    line-height: 1.1;
    margin: 0 auto 12px;
    letter-spacing: -0.02em;
    max-width: 90%;
}
 
.lat-quotes__heading strong {
    color: transparent;
    background: linear-gradient(135deg, #f5c518, #e89b00);
    -webkit-background-clip: text;
    background-clip: text;
}
 
.lat-quotes__subheading {
font-size: 18px;
    font-weight: 400;
    color: #444;
    font-family: Rubik;
    line-height: 150%;
}
 
/* ============================================================
   GRID — 2 columns
   ============================================================ */
.lat-quotes__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 36px;
}
 
/* ============================================================
   CARD WRAPPER — image + box overlap
   ============================================================ */
.lat-quotes__card {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 360px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.65s ease;
    transition-delay: var(--card-delay, 0s);
}
 
.lat-quotes__card--visible {
    opacity: 1;
    transform: translateY(0);
}
 
/* Image LEFT side */
.lat-quotes__card-img {
    position: relative;
    width: 48%;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(15,31,75,0.18);
}
 
.lat-quotes__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}
 
.lat-quotes__card:hover .lat-quotes__card-img img {
    transform: scale(1.04);
}
 
.lat-quotes__card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,31,75,0.15) 0%, transparent 60%);
}
 
/* Card body — overlaps image from right */
.lat-quotes__card-body {
    position: relative;
    z-index: 2;
    margin-left: -28px;
    margin-top: 28px;
    margin-bottom: 28px;
    flex: 1;
    border-radius: 14px;
    padding: 32px 28px 30px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(15,31,75,0.20);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lat-quotes__card--navy .lat-quotes__card-body {
   color: #fff;
}
 
.lat-quotes__card:hover .lat-quotes__card-body {
    transform: translateX(4px);
    box-shadow: 0 20px 50px rgba(15,31,75,0.28);
}
 
/* ============================================================
   NAVY VARIANT
   ============================================================ */
.lat-quotes__card--navy .lat-quotes__card-body {
    background: var(--lat-navy);
}
.lat-quotes__card--navy .lat-quotes__card-label {
    color: var(--lat-gold);
    border-bottom-color: rgba(255,255,255,0.10);
    font-size: 20px;
}
.lat-quotes__card--navy .lat-quotes__qmark { color: var(--lat-gold); }
.lat-quotes__card--navy .lat-quotes__card-text { color: rgba(255,255,255,0.85); }
.lat-quotes__card--navy .lat-quotes__card-author { color: var(--lat-gold); }
.lat-quotes__card--navy .lat-quotes__card-role { color: rgba(255,255,255,0.80); }
.lat-quotes__card--navy .lat-quotes__card-line { background: var(--lat-gold); }
 
/* ============================================================
   GOLD / LIGHT VARIANT
   ============================================================ */
.lat-quotes__card--gold .lat-quotes__card-body {
    background: var(--lat-white);
    border: 2px solid rgba(245,197,24,0.20);
    
}
.lat-quotes__card--gold .lat-quotes__card-label {
    color: var(--lat-navy);
    border-bottom-color: rgba(15,31,75,0.08);
    font-size: 20px;
}
.lat-quotes__card--gold .lat-quotes__qmark { color: var(--lat-gold); }
.lat-quotes__card--gold .lat-quotes__card-text { color: var(--lat-text-body); }
.lat-quotes__card--gold .lat-quotes__card-author { color: var(--lat-navy);    text-transform: uppercase; }
.lat-quotes__card--gold .lat-quotes__card-role {     color: #56698d;
    text-transform: uppercase; }
.lat-quotes__card--gold .lat-quotes__card-line { background: var(--lat-navy); }
 .page-template-life-at-page-template .brand-logo-slider{
    display: none !important;
 }
/* ============================================================
   CARD ELEMENTS
   ============================================================ */
.lat-quotes__card-label {
    display: block;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 14px;
    border-bottom: 1px solid;
    font-style: italic;
}
 
.lat-quotes__qmark {
    width: 30px;
    height: 25px;
    opacity: 0.9;
    margin-bottom: 12px;
}
 
.lat-quotes__card-text {
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.78;
    margin: 0 0 22px;
}
 
.lat-quotes__card-attribution {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}
 
.lat-quotes__card-line {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    flex-shrink: 0;
}
 
.lat-quotes__card-author {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    font-style: italic;
    line-height: 1.3;
}
 
.lat-quotes__card-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
    font-style: italic;
}
 
/* Corner bracket decoration on card body */
.lat-quotes__card-body::before,
.lat-quotes__card-body::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: var(--lat-gold);
    border-style: solid;
    opacity: 0.8;
}
.lat-quotes__card-body::before {
    top: 10px; right: 10px;
    border-width: 2px 2px 0 0;
    border-radius: 0 4px 0 0;
}
.lat-quotes__card-body::after {
    bottom: 10px; right: 10px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .lat-quotes__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
    .lat-quotes__card {
        min-height: 280px;
    }
    .lat-quotes__card-img {
        width: 44%;
    }
    .lat-quotes__card-body {
        padding: 24px 22px 24px 32px;
    }
}
 
@media (max-width: 575.98px) {
    .lat-quotes {
        padding: 56px 0 64px;
    }
    .lat-quotes__card {
        flex-direction: column;
        min-height: unset;
    }
    .lat-quotes__card-img {
        width: 100%;
        height: 200px;
        border-radius: 16px 16px 0 0;
    }
    .lat-quotes__card-body {
        margin-left: 0;
        margin-top: -16px;
        margin-bottom: 0;
        border-radius: 0 0 14px 14px;
        padding: 24px 20px 26px;
    }
}
 
/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .lat-quotes__card {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .lat-quotes__card-img img,
    .lat-quotes__card-body {
        transition: none;
    }
}

/* ============================================================
   EVENTS & ACTIVITY SECTION  —  lat-events
   Append to:  assets/css/life-at-page.css
   Requires:   Fancybox v5 (CDN loaded via PHP footer or wp_enqueue)
   ============================================================ */
 
/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.lat-events {
    position: relative;
    background: #ffffff;
    padding: 50px 0 50px;
    overflow: hidden;
}
 
/* Subtle dot pattern background */
.lat-events__bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(15,31,75,0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    z-index: 0;
    pointer-events: none;
}
 
.lat-events__container {
    position: relative;
    z-index: 1;
}
 
/* ============================================================
   SECTION HEADER
   ============================================================ */
.lat-events__header {
    text-align: center;
    margin-bottom: 56px;
}
 
/* Badge — emoji + text pill */
.lat-events__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    margin-bottom: 14px;
}
 
.lat-events__badge span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #2b72e9;
}
 
.lat-events__heading {
    font-size: 36px;
    font-weight: 500;
    color: #0e2b5c;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 auto 12px;
}
 
/* Emoji inside heading — no extra style needed, just renders */
 
.lat-events__subheading {
font-size: 18px;
    font-weight: 400;
    color: #444;
    font-family: Rubik;
    line-height: 150%;
}
 
/* ============================================================
   MASONRY-STYLE GRID
   ============================================================ */
.lat-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}
 
/* ============================================================
   CARD BASE
   ============================================================ */
.lat-events__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--ev-delay, 0s);
}
 
.lat-events__card--visible {
    opacity: 1;
    transform: translateY(0);
}
 
/* Card size variants */
.lat-events__card--tall {
    grid-row: span 2;
}
.lat-events__card--wide {
    grid-column: span 2;
}
.lat-events__card--normal {
    grid-row: span 1;
    grid-column: span 1;
}
 
/* ============================================================
   CONTENT CARD
   ============================================================ */
.lat-events__card--content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 26px;
    cursor: default;
}
 
.lat-events__card--content:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 48px rgba(0,0,0,0.10);
}
 
.lat-events__card-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
 
.lat-events__card-title {
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 6px;
    letter-spacing: -0.02em;
    text-transform: capitalize;
}
.lat-events__card-body {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.6;
    text-transform: capitalize;
}
 
/* Decorative circle in content card */
.lat-events__card-deco {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    pointer-events: none;
}
 
/* ============================================================
   GALLERY CARD
   ============================================================ */
.lat-events__card--gallery {
    cursor: pointer;
}
 
.lat-events__card--gallery:hover .lat-events__gallery-cover img {
    transform: scale(1.06);
}
 
.lat-events__card--gallery:hover .lat-events__play-icon svg circle {
    fill: rgba(255,255,255,0.30);
}
 
/* Cover image */
.lat-events__gallery-cover {
    position: absolute;
    inset: 0;
}
 
.lat-events__gallery-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}
 
/* Gradient overlay */
.lat-events__gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.55) 100%
    );
}
 
/* Info bar at bottom */
.lat-events__gallery-info {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px 22px;
    z-index: 2;
}
 
.lat-events__gallery-title {
       font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.3;
    text-transform: capitalize;
    max-width: 75%;

}
 
/* Play button */
.lat-events__play-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
 
.lat-events__play-btn:hover {
    transform: scale(1.12);
}
 
.lat-events__play-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
    transition: all 0.25s ease;
}
 
/* ============================================================
   FANCYBOX INIT SCRIPT — trigger via JS below
   ============================================================ */
 
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .lat-events__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 260px;
    }
    .lat-events__card--wide {
        grid-column: span 2;
    }
    .lat-events__card--tall {
        grid-row: span 2;
    }
}
 
@media (max-width: 575.98px) {
    .lat-events {
        padding: 60px 0 70px;
    }
    .lat-events__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .lat-events__card--wide,
    .lat-events__card--tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}
 
@media (prefers-reduced-motion: reduce) {
    .lat-events__card {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .lat-events__card--content:hover {
        transform: none;
    }
    .lat-events__gallery-cover img {
        transition: none;
    }
}
/* ============================================================
   lat-cta — CTA Section
   Append this to assets/css/life-at-page.css
   ============================================================ */

.lat-cta {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin-bottom: 60px;
}

/* Dark overlay */
.lat-cta__overlay {
    position: absolute;
    inset: 0;
background: linear-gradient(90deg, rgb(10 20 60 / 70%) 0%, rgb(10 20 60 / 50%) 55%, rgb(10 20 60 / 30%) 100%);
    z-index: 1;
}

.lat-cta__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    flex-wrap: wrap;
}

/* ── Left content ── */
.lat-cta__content {
    flex: 1 1 400px;
    max-width: 620px;
}

.lat-cta__eyebrow {
    display: block;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.6rem;
}

.lat-cta__heading {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.lat-cta__subtext {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    line-height: 1.6;
}

/* ── Right buttons ── */
.lat-cta__buttons {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.lat-cta__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 140px;
    padding: 1rem 1.25rem;
        background: linear-gradient(135deg, var(--accent-color), #2563eb) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-align: center;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lat-cta__btn:hover,
.lat-cta__btn:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.lat-cta__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.lat-cta__btn-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.lat-cta__btn-label {
    line-height: 1.3;
    white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .lat-cta__container {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .lat-cta__buttons {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .lat-cta {
        min-height: 280px;
    }

    .lat-cta__btn {
        min-width: 110px;
        padding: 0.8rem 1rem;
        font-size: 0.82rem;
    }

    .lat-cta__buttons {
        gap: 0.75rem;
    }
}
/* ============================================================
   LAT — SOCIAL FEED SECTION
   ============================================================ */
.lat-social-feed {
    position: relative;
    padding: 60px 0 30px;
    overflow: hidden;
    z-index: 1;
}

/* top 60% background */
.lat-social-feed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;

    background: linear-gradient(145deg, #004a91 0, #002254 50%, #002254 100%);

    z-index: -1;
}

.lat-social-feed__bg {
    position: absolute;
    inset: 0;

    pointer-events: none;
}

.lat-social-feed__container {
    position: relative;
    z-index: 1;
}

.lat-social-feed__header {
    text-align: center;
    margin-bottom: 48px;
}

.lat-social-feed__eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6PX;
    text-transform: uppercase;
    color: #c4cad9;
    margin-bottom: 14px;
}

.lat-social-feed__heading {
    font-size: clamp(1.6rem, 3vw, 36px);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0px 0 8px;
}

.lat-social-feed__subheading {
    font-size: 17px;
    color: #c9c9c9;
    margin: 0 auto;
    line-height: 1.65;
}

.lat-social-feed__subheading strong,
.lat-social-feed__subheading b {
    color: #ffffff;
}

.lat-social-feed__feed {
    width: 100%;
}

/* ============================================================
   LAT — VIDEO SECTION
   ============================================================ */
.lat-videos {
    position: relative;
    padding: 50px 0 50px;
    background: #f4f6fb;
    overflow: hidden;
}

.lat-videos__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(160, 180, 220, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.7;
}

.lat-videos__container {
    position: relative;
    z-index: 1;
}

/* Header */
.lat-videos__header {
    text-align: center;
    margin-bottom: 52px;
}

.lat-videos__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4a6fa5;
    background: rgba(74, 111, 165, 0.1);
    border: 1px solid rgba(74, 111, 165, 0.25);
    padding: 5px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.lat-videos__heading {
    font-size: clamp(1.6rem, 3vw, 36px);
    font-weight: 500;
    /* color: #0d1b3e; */
    line-height: 1.2;
    margin: 0 0 12px;
}

.lat-videos__subheading {
font-size: 18px;
    font-weight: 400;
    color: #444;
    font-family: Rubik;
    line-height: 150%;
}

/* Grid */
.lat-videos__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 991px) {
    .lat-videos__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .lat-videos__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* Card */
.lat-videos__card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(13, 27, 62, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(28px);
}

.lat-videos__card--visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.55s ease calc(var(--vs-delay, 0s)),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--vs-delay, 0s)),
        box-shadow 0.3s ease,
        box-shadow 0.3s ease;
}

.lat-videos__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(13, 27, 62, 0.15);
}

/* Thumbnail */
.lat-videos__card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a2a50;
    cursor: pointer;
}

.lat-videos__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.lat-videos__card:hover .lat-videos__card-img {
    transform: scale(1.05);
}

.lat-videos__card-no-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a2a50 0%, #0d1b3e 100%);
}

.lat-videos__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
    transition: background 0.3s ease;
}

.lat-videos__card:hover .lat-videos__card-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

/* Play Button */
.lat-videos__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lat-videos__play-btn:hover,
.lat-videos__card-thumb:hover .lat-videos__play-btn {
    transform: translate(-50%, -50%) scale(1.15);
}

.lat-videos__play-icon {
    display: block;
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}

.lat-videos__play-icon svg {
    width: 100%;
    height: 100%;
}

/* Card Info */
.lat-videos__card-info {
    padding: 18px 20px 20px;
}

.lat-videos__card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d1b3e;
    margin: 0 0 6px;
    line-height: 1.3;
}

.lat-videos__card-caption {
    font-size: 0.82rem;
    color: #6a7ea0;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */

@media (max-width: 1024px) {
.lat-hero__heading {
    font-size:3rem;
}
.lat-hero__subheading {
font-size: clamp(0.95rem, 2.2vw, 1.65rem);
}
.lat-quotes__heading {
    font-size: 32px;
    line-height: 140%;
}
.lat-quotes__card-body {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 32px 20px 30px 24px;
    
}
.lat-quotes__card-label {
    letter-spacing: normal;
}
.lat-quotes__card--navy .lat-quotes__card-label,.lat-quotes__card--gold .lat-quotes__card-label {
    font-size: 18px;
}
.lat-events__heading ,.lat-videos__heading{
    font-size: 32px;
}
.lat-events__card-title {
    font-size: 24px;
}

.lat-events__gallery-title {
    font-size: 18px;
}
.lat-social-feed {
    padding: 50px 0 10px;
}
.lat-social-feed__heading {
    font-size: 32px;

}
.lat-social-feed__header {
    margin-bottom: 30px;
}
.lat-videos__eyebrow {
    color: #fff;
background: linear-gradient(135deg, var(--accent-color), #2563eb) !important;

}
.lat-cta__container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.lat-cta__content {
    /* flex: 1 1 400px; */
    max-width: 100%;
}
.lat-cta__eyebrow {
    font-size: 16px;
    margin-bottom: 0.2rem;
}
.lat-cta__heading {
    font-size: 32px;
    font-weight: 500;
}
.lat-cta__subtext {
    font-size: 22px;
    line-height: 1.5;
}
}
@media (max-width: 992px) {
.lat-hero,.lat-hero__video {
    min-height: 70vh;
}
    .lat-hero__content {
        padding-top:0px;
        padding-bottom: 0px;
    }
        .lat-hero__heading {
        font-size: 2.5rem;
    }
    .lat-hero__tag span {
    font-size: 28px;
}
    .lat-hero__subheading {
        font-size: 20px;
    }
    .lat-quotes ,.lat-events,.lat-videos{
    padding: 45px 0 45px;
}
    .lat-quotes__heading,.lat-events__heading, .lat-videos__heading ,.lat-social-feed__heading{
        font-size: 26px;
    }
        .lat-quotes__grid {
        max-width: 100%;
    }
    .lat-events__subheading,.lat-videos__subheading {
    font-size: 17px;
}
.lat-events__card-title {
        font-size: 22px;
    }
    .lat-events__header {
    margin-bottom: 40px;
}
.lat-social-feed__subheading {
    font-size: 16px;
    line-height: 1.45;
}
.lat-cta__content {
    flex: auto;
    max-width: 100%;
}
    .lat-cta__heading {
        font-size: 28px;
    }
    .lat-cta__subtext {
        font-size: 20px;
    }
    .lat-cta__eyebrow {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .lat-social-feed {
        padding: 60px 0 70px;
    }
    .lat-videos {
        padding: 60px 0 70px;
    }
    .lat-videos__header {
        margin-bottom: 36px;
    }
        .lat-hero__heading {
        font-size: 2rem;
        font-weight: 500;
    }
        .lat-hero__tag span {
        font-size: 22px;
    }
        .lat-hero__subheading {
        font-size: 18px;
        margin: 0;
    }
        .lat-quotes__heading, .lat-events__heading, .lat-videos__heading, .lat-social-feed__heading {
        font-size: 24px;
    }
    .lat-quotes__subheading {
    font-size: 16px;
}
.lat-quotes__card-body {
        margin-top: 0px;
    }
        .lat-quotes {
        padding: 45px 0 25px;
    }
    .lat-events__badge span {
    font-size: 15px;
}
    .lat-events__subheading, .lat-videos__subheading {
        font-size: 16px;
    }
    .lat-events__gallery-title {
        font-size: 20px;
    }
    .lat-social-feed {
        padding: 45px 0 0px;
    }
    .lat-videos {
        padding: 45px 0 45px;
    }
}