/* ========================================
   BRAND FONTS
   ======================================== */
@font-face {
    font-family: 'Futura Bk Book';
    src: url('/QP Fonts/Futura Bk Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Bk Book';
    src: url('/QP Fonts/Futura Bk Book Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Futura Bk Bold';
    src: url('/QP Fonts/Futura Bk Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Maiandra GD';
    src: url('/QP Fonts/MAIAN.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Maiandra GD';
    src: url('/QP Fonts/Maiandra GD Demi Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Maiandra GD';
    src: url('/QP Fonts/Maiandra GD Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'ITC Grizzly';
    src: url('/QP Fonts/ITC Grizzly Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Primary Colors - Brand Standards PMS 287 C and 199 C */
    --navy: #263B7F;
    --navy-dark: #1a2856;
    --navy-light: #3D5996;

    /* Accent Colors - Brand Standards PMS 199 C */
    --red: #D61E34;
    --red-hover: #b01829;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f7fa;
    --light-gray: #e8eaed;
    --medium-gray: #6b7280;
    --dark-gray: #374151;
    --black: #111827;

    /* Typography */
    --font-display: 'Futura Bk Bold', 'Futura', Arial, sans-serif;
    --font-body: 'Futura Bk Book', 'Futura', Arial, sans-serif;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ========================================
   HEADER
   ======================================== */
.header {
    background: var(--navy);
    padding: 0.75rem 0;
    position: relative;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.logo__img {
    height: 40px;
    width: auto;
}

.logo__text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

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

.nav__link {
    font-size: 0.9rem;
    color: var(--white);
    transition: opacity 0.2s;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.25rem;
    font-weight: 700;
}

.nav__link:hover {
    opacity: 0.8;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: var(--red);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
}

/* ========================================
   HERO SECTION - NEW
   ======================================== */
.hero-new {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/images/Homepage-Background-Image-1-scaled.webp') center/cover no-repeat;
    background-color: var(--navy);
}

.hero-new__content {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-new__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
}

.hero-new__cta {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.hero-new__cta:hover {
    background: var(--red-hover);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--white);
    padding: 3rem 0;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.services__item {
    text-align: center;
    padding: 1.5rem 1rem;
}

.services__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services__icon svg {
    width: 64px;
    height: 64px;
    color: var(--navy);
}

.services__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.services__text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* ========================================
   MEDIA SECTION
   ======================================== */
.media {
    background: url('/images/media-background.webp') center center / cover no-repeat;
    padding: 6rem 0;
    width: 100%;
    position: relative;
}

.media__grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 2rem;
    align-items: start;
}

.media__content {
    padding-right: 3rem;
    border-right: 2px solid #ccc;
}

.media__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.2;
}

.media__subtitle {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1rem;
}

.media__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.media__text:last-child {
    margin-bottom: 0;
}

.media__video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.media__video-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0;
    text-align: center;
}

.media__video-element {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.media__video-caption {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
}

.media__link {
    color: var(--red);
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.media__link:hover {
    opacity: 0.8;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--white);
    padding: 4rem 0;
}

.testimonials__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials__card {
    background: var(--navy);
    color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonials__content {
    flex: 1;
    padding: 3rem 2rem 3rem 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonials__content::before,
.testimonials__content::after {
    display: none;
}

.testimonials__quote {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonials__text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--white);
}

.testimonials__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.testimonials__author {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-align: left;
    margin: 0;
}

/* ========================================
   TESTIMONIALS SLIDER
   ======================================== */
.testimonials-slider {
    background: var(--white);
    padding: 5rem 0;
}

.testimonials-slider__label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--navy);
    text-align: center;
    margin-bottom: 0.75rem;
}

.testimonials-slider__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.testimonials-slider__wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-slider__track-container {
    position: relative;
    overflow: visible;
    border-radius: 10px;
    background: var(--navy);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-top: 0;
    padding-bottom: 0;
}

.testimonials-slider__track-container::before,
.testimonials-slider__track-container::after {
    display: none;
}

.testimonials-slider__track-container::before {
    top: 0;
    border-radius: 10px 10px 0 0;
}

.testimonials-slider__track-container::after {
    bottom: 0;
    transform: rotate(180deg);
    border-radius: 10px 10px 0 0;
}

.testimonials-slider__track {
    display: flex;
    transition: transform 0.5s ease-out;
}

.testimonials-slider__slide {
    width: 100%;
    flex-shrink: 0;
    padding: 3rem 4rem;
}

.testimonials-slider__quote {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
}


.testimonials-slider__text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.testimonials-slider__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.25rem;
}

.testimonials-slider__author {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.testimonials-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease;
}

.testimonials-slider__nav:hover {
    background: var(--off-white);
}

.testimonials-slider__nav--prev {
    left: -20px;
}

.testimonials-slider__nav--next {
    right: -20px;
}

.testimonials-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.testimonials-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
}

.testimonials-slider__dot[data-active="true"] {
    background: var(--red);
    transform: scale(1.25);
}

/* ========================================
   THANK YOU SECTION
   ======================================== */
.thankyou {
    background: var(--white);
    padding: 4rem 0 5rem;
}

.thankyou__content {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: center;
}

.thankyou__left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou__signature-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

.thankyou__right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-right: 3rem;
}

.thankyou__intro {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin: 0;
}

.thankyou__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

/* ========================================
   HERO SECTION - OLD (KEEP FOR OTHER PAGES)
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: flex-start;
    padding-top: 2rem;
    background-color: #fff;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/tasks/website-update-1/assets/Word Map Gradient Background.webp') center/cover no-repeat;
    animation: fadeIn 1.5s ease-in forwards;
    opacity: 0;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.3) 85%, rgba(255, 255, 255, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    position: relative;
    z-index: 2;
    z-index: 1;
}

.hero__left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero__titles {
    display: flex;
    flex-direction: column;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero__mission {
    max-width: 450px;
}

.hero__mission-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.hero__mission-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo {
    max-width: 450px;
    width: 100%;
}

.hero__logo-img {
    width: 100%;
    height: auto;
}

/* ========================================
   WELCOME SECTION
   ======================================== */
.welcome {
    padding: 0 0 5rem 0;
    margin-top: -200px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.welcome__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 0rem;
}

.welcome__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.welcome__grid:first-of-type {
    grid-template-columns: 30% 70%;
}

.welcome__grid:last-of-type {
    margin-bottom: 0;
}

.welcome__intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 2rem;
}

.welcome__text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.welcome__columns {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.welcome__col p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.welcome__image {
    max-width: 100%;
}

.welcome__image--mn {
    max-width: 350px;
}

.welcome__image--qp {
    max-width: 600px;
}

.welcome__image--qp img {
    border-radius: 0;
}

.welcome__image img {
    width: 100%;
    height: auto;
}

/* ========================================
   HISTORY SECTION
   ======================================== */
.history {
    background: var(--red);
    position: relative;
    padding: 0 0 12rem 0;
    overflow: hidden;
}

.history::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 150px;
    background: var(--white);
    transform: skewY(3deg);
    transform-origin: top left;
    z-index: 1;
}

.history__accent {
    position: relative;
    height: 120px;
    background: var(--red);
    overflow: hidden;
    z-index: 1;
}

.history__accent::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 110%;
    height: 100%;
    background: var(--white);
    transform: skewY(3deg);
    transform-origin: top right;
}

.history__header {
    padding: 3rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.history__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.history__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.history__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--white);
}

.history__item {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 50%;
    margin-left: 50%;
    padding-left: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.history__item.visible {
    opacity: 1;
    transform: translateY(0);
}

.history__item:nth-child(even) {
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    padding-right: 30px;
}

.history__connector {
    position: absolute;
    left: 0;
    top: 30px;
    width: 30px;
    height: 4px;
    background: var(--white);
}

.history__item:nth-child(even) .history__connector {
    left: auto;
    right: 0;
}

.history__bubble {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.history__year-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.history__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--dark-gray);
}

.history__closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: relative;
    z-index: 1;
}

.history__closing.visible {
    opacity: 1;
    transform: translateY(0);
}

.history__closing-line {
    width: 4px;
    height: 50px;
    background: var(--white);
}

.history__closing-bubble {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
}

.history__closing p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.history__closing p:last-child {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    padding: 5rem 0;
    background: var(--white);
}

.team__section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.team__wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team__grid {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
}

.team__grid--four {
    grid-template-columns: repeat(4, 1fr);
    max-width: 850px;
    margin: 0 auto;
}

.team__grid--five {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1050px;
    margin: 0 auto;
}

.team__member {
    position: relative;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
}

.team__member::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.team__photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 42, 74, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.team__member:hover .team__overlay {
    opacity: 1;
}

.team__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.4rem;
    line-height: 1.2;
}

.team__title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--red);
    line-height: 1.4;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    color: var(--white);
    padding: 1rem 2rem 1rem;
    overflow: hidden;
    min-height: 300px;
    background: var(--red);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    max-width: 100%;
    margin: 0;
    align-items: center;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-left: 4rem;
    justify-content: center;
    align-items: flex-start;
}

.footer__right {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-right: 4rem;
    align-items: flex-start;
    justify-content: flex-end;
}

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

.footer__item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__item a:hover {
    opacity: 0.8;
}

.footer__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--white);
}

.footer__text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--white);
}

.footer__social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--white);
}

.footer__social-text {
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__social-text:hover {
    opacity: 0.8;
}

.footer__bottom {
    background: var(--navy);
    background-image: none;
    text-align: center;
    padding: 1rem 2rem;
    color: var(--white);
}

.footer__bottom a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__bottom a:hover {
    color: var(--red);
    text-decoration: underline;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact {
    padding: 5rem 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-width: 0;
}

.contact__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact__form-wrapper {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.contact__title {
    font-family: 'Futura Bk Bold', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.1;
    font-weight: 700;
}

.contact__title--white {
    color: var(--white);
}

.contact__form {
    background: transparent;
    padding: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: 'Futura Bk Bold', sans-serif;
    font-size: 0.9rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: 'Futura Bk Book', sans-serif;
    font-size: 0.95rem;
    border: 2px solid #d1d5db;
    border-radius: 0;
    background: var(--white);
    color: var(--dark-gray);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--navy);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--red);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-button {
    padding: 0.9rem 3rem;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-family: 'Futura Bk Bold', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    display: block;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 1rem;
    margin-left: auto;
}

.form-button:hover {
    background: var(--red-hover);
}

.form-button:active {
    background: var(--red-hover);
}

.form-button[disabled] {
    background: #999;
    cursor: not-allowed;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}

.form-message--success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message--error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.form-message h3 {
    font-family: 'Futura Bk Bold', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.form-message p {
    font-family: 'Futura Bk Book', sans-serif;
    font-size: 1rem;
    margin: 0;
}

.required-star {
    color: var(--red);
    font-weight: bold;
}

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



@media (max-width: 1024px) {
    .media__grid {
        gap: 2rem;
    }

    .thankyou__content {
        gap: 2rem;
    }

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

    .welcome__image--mn {
        max-width: 300px;
        margin: 0 auto;
    }

    .welcome__image--qp {
        max-width: 500px;
        margin: 0 auto;
    }

    .team__grid--four {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .team__grid--five {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .team__overlay {
        display: none;
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        z-index: 100;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    /* New Hero Section Responsive */
    .hero-new {
        min-height: 400px;
    }

    .hero-new__content {
        padding: 3rem 1.5rem;
    }

    .hero-new__title {
        font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    }

    /* Services Section Responsive */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Media Section Responsive */
    .media__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .media__content {
        padding-right: 0;
        border-right: none;
    }

    /* Testimonials Responsive */
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-slider__slide {
        padding: 2.5rem 2rem;
    }

    .testimonials-slider__nav--prev {
        left: 8px;
    }

    .testimonials-slider__nav--next {
        right: 8px;
    }

    /* Thank You Section Responsive */
    .thankyou__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Old Hero Section Responsive */
    .hero {
        min-height: 650px;
        align-items: flex-start;
    }

    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .welcome {
        margin-top: 0;
        padding-top: 2rem;
    }

    .hero__left {
        align-items: center;
    }

    .hero__titles {
        align-items: center;
    }

    .hero__mission {
        text-align: center;
    }

    .hero__logo {
        max-width: 300px;
    }

    .hero__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

    .history__timeline {
        padding-left: 0;
        margin: 0 1rem;
    }

    .history__timeline::before {
        display: none;
    }

    .history__item {
        width: 100%;
        margin-left: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .history__item:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
    }

    .history__connector {
        display: none;
    }

    .history__item:nth-child(even) .history__connector {
        display: none;
    }

    .history__closing-line {
        display: none;
    }

    .history__bubble {
        padding: 1.25rem 1.5rem;
        max-width: 100%;
    }

    .history__accent {
        height: 80px;
    }

    .team__grid--four,
    .team__grid--five {
        grid-template-columns: repeat(2, 1fr);
    }

    .team__name {
        font-size: 1.1rem;
    }

    .footer {
        padding: 3rem 1.5rem 1rem;
        min-height: auto;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer__left,
    .footer__right {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        align-items: flex-start;
    }

    .footer__left {
        gap: 1.25rem;
    }

    .footer__right {
        gap: 1.25rem;
    }

    .footer__icon {
        width: 24px;
        height: 24px;
    }

    .footer__social-icon {
        width: 24px;
        height: 24px;
    }

    .footer__text,
    .footer__social-text {
        font-size: 0.9rem;
    }

    /* Contact Page Responsive */
    .contact {
        padding: 3rem 0;
    }

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

    .contact__title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    /* New Hero Section Mobile */
    .hero-new {
        min-height: 350px;
    }

    .hero-new__content {
        padding: 2rem 1rem;
    }

    /* Services Section Mobile */
    .services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Thank You Section Mobile */
    .thankyou__signature {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Old Hero Section Mobile */
    .hero {
        min-height: 550px;
    }

    .hero__mission {
        padding: 1.5rem;
        max-width: 280px;
    }

    .welcome {
        margin-top: 0;
        padding-top: 1.5rem;
    }

    .team__grid--four,
    .team__grid--five {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .team__name {
        font-size: 1rem;
    }

    .footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer__left,
    .footer__right {
        gap: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer__icon {
        width: 22px;
        height: 22px;
    }

    .footer__social-icon {
        width: 22px;
        height: 22px;
    }

    .footer__text,
    .footer__social-text {
        font-size: 0.85rem;
    }

    /* Contact Page Mobile */
    .contact {
        padding: 2rem 0;
    }

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

    .contact__title {
        font-size: clamp(1.75rem, 7vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-button {
        width: 100%;
        margin-left: 0;
    }
}
