/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2a3a;
    --navy-dark: #0f1a26;
    --orange: #e8871e;
    --orange-hover: #d47818;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #6b7280;
    --text-dark: #1a1a1a;
    --header-height: 70px;
    --top-bar-height: 40px;
}

/* smooth scroll disabled for compatibility - add back if needed */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* ===== Top Bar ===== */
.top-bar {
    background: var(--navy-dark);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
}

.top-bar__nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.top-bar__nav > a,
.top-bar__link {
    color: var(--white);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 15px;
    height: var(--top-bar-height);
}

.top-bar__nav > a:hover,
.top-bar__link:hover {
    color: var(--orange);
}

.top-bar__nav > a i,
.top-bar__link i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

/* Top Bar Dropdowns */
.top-bar__dropdown {
    position: relative;
}

.top-bar__dropdown:hover .top-bar__link i {
    transform: rotate(180deg);
}

.top-bar__dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    padding: 8px 0;
    z-index: 100;
}

.top-bar__dropdown:hover .top-bar__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar__dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.top-bar__dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--orange);
    padding-left: 24px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled .header__nav-link {
    color: var(--navy);
}

.header.scrolled .header__search {
    color: var(--navy);
}

.header.scrolled .header__mobile-toggle span {
    background: var(--navy);
}

.header__container {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.header__nav {
    display: flex;
    gap: 0;
    align-items: center;
}

.header__nav-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
    padding: 5px 14px;
    height: var(--header-height);
    line-height: var(--header-height);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    width: auto;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.header__dropdown:hover .header__nav-link::after {
    transform: scaleX(1);
}

.header__dropdown:hover .header__nav-link {
    color: var(--orange);
}

.header__nav-link i {
    font-size: 8px;
    transition: transform 0.3s ease;
}

.header__dropdown:hover .header__nav-link i {
    transform: rotate(180deg);
}

/* Header Dropdown (Mega Menu) */
.header__dropdown {
    position: static;
}

.header__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    border-top: 3px solid var(--orange);
    z-index: 999;
}

.header__dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__dropdown-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 280px;
    gap: 40px;
}

.header__dropdown-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.header__dropdown-col a {
    display: block;
    padding: 8px 0;
    color: var(--navy);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.header__dropdown-col a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.header__dropdown-featured {
    background: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
}

.header__dropdown-featured img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.header__dropdown-featured span {
    display: block;
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.4;
}

.header__search {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--white);
    padding: 10px;
    transition: color 0.3s ease;
}

.header__search:hover {
    color: var(--orange);
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.header.scrolled .header__mobile-toggle span {
    background: var(--navy);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.mobile-menu__header .logo-img {
    height: 40px;
}

.mobile-menu__close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s ease;
}

.mobile-menu__close:hover {
    color: var(--orange);
}

.mobile-menu__body {
    padding: 16px 0;
}

.mobile-menu__section {
    border-bottom: 1px solid #f0f0f0;
}

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

.mobile-menu__item .mobile-menu__link {
    flex: 1;
}

.mobile-menu__link {
    display: block;
    padding: 16px 24px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu__link:hover {
    color: var(--orange);
    background: var(--light-gray);
}

.mobile-menu__expand {
    background: none;
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 12px;
    transition: all 0.3s ease;
}

.mobile-menu__expand.active {
    transform: rotate(180deg);
    color: var(--orange);
}

.mobile-menu__sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--light-gray);
}

.mobile-menu__sub.active {
    max-height: 300px;
}

.mobile-menu__sub a {
    display: block;
    padding: 10px 24px 10px 40px;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-menu__sub a:last-child {
    border-bottom: none;
}

.mobile-menu__sub a:hover {
    color: var(--orange);
    padding-left: 46px;
}

.mobile-menu__divider {
    height: 1px;
    background: #e5e5e5;
    margin: 8px 24px;
}

/* ===== Search Overlay ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 38, 0.97);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__container {
    width: 100%;
    max-width: 700px;
    padding: 0 40px;
    position: relative;
}

.search-overlay__close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
    padding: 10px;
    transition: color 0.2s ease;
}

.search-overlay__close:hover {
    color: var(--orange);
}

.search-overlay__content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.search-overlay__input-wrap {
    display: flex;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
    transition: border-color 0.3s ease;
}

.search-overlay__input-wrap:focus-within {
    border-color: var(--orange);
}

.search-overlay__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--white);
}

.search-overlay__input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay__btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.2s ease;
}

.search-overlay__btn:hover {
    color: var(--orange);
}

.search-overlay__suggestions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.search-overlay__suggestions span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-right: 6px;
}

.search-overlay__suggestions a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.2s ease;
}

.search-overlay__suggestions a:hover {
    color: var(--white);
    border-color: var(--orange);
    background: rgba(232, 135, 30, 0.15);
}

/* ===== Overlay Backdrop ===== */
.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
}

.hero__slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.65) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px;
    padding-bottom: 200px;
}

.hero__title {
    color: var(--white);
    line-height: 1;
}

.hero__title-top {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 300;
    letter-spacing: -1px;
}

.hero__title-bottom {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(72px, 14vw, 180px);
    font-weight: 700;
    letter-spacing: -3px;
    margin-top: -15px;
    line-height: 0.9;
}

.hero__subtitle {
    color: var(--white);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    font-style: italic;
    margin-top: 20px;
    max-width: 600px;
    line-height: 1.5;
}

.hero__indicators {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.hero__indicator {
    width: 3px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero__indicator.active {
    background: var(--white);
}

/* ===== News Section ===== */
.news {
    background: transparent;
    padding: 40px 0 60px;
    margin-top: -180px;
    position: relative;
    z-index: 5;
}

.news__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.news__category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.news__title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.4;
}

.news__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.news__link:hover {
    gap: 16px;
    color: var(--orange);
}

.news__link-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.news__link:hover .news__link-line {
    width: 60px;
}

/* ===== Statement ===== */
.statement {
    padding: 120px 40px;
    background: var(--white);
    text-align: center;
}

.statement__container {
    max-width: 900px;
    margin: 0 auto;
}

.statement__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.3;
}

/* ===== Products ===== */
.products {
    padding: 80px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.products__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.products__slider {
    overflow: hidden;
}

.products__track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.products__card {
    min-width: calc(33.333% - 20px);
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.products__card-image {
    height: 250px;
    overflow: hidden;
}

.products__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products__card:hover .products__card-image img {
    transform: scale(1.05);
}

.products__card-content {
    padding: 30px;
}

.products__card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.products__card-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.products__card-link {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.products__card-link:hover {
    color: var(--orange-hover);
}

.link-arrow {
    transition: transform 0.3s ease;
}

.products__card-link:hover .link-arrow {
    transform: translateX(4px);
}

.products__nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

.products__nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--navy);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.products__nav-btn:hover {
    background: var(--navy);
    color: var(--white);
}

/* ===== Insights ===== */
.insights {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.insights__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.insights__slider {
    overflow: hidden;
}

.insights__track {
    display: flex;
    transition: transform 0.5s ease;
}

.insights__slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex-shrink: 0;
}

.insights__image {
    overflow: hidden;
    height: 450px;
}

.insights__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insights__label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
}

.insights__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 16px;
    line-height: 1.3;
}

.insights__desc {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.7;
}

.insights__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
}

.insights__link:hover {
    color: var(--orange-hover);
}

.insights__link:hover .link-arrow {
    transform: translateX(4px);
}

.insights__nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

.insights__nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--navy);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.insights__nav-btn:hover {
    background: var(--navy);
    color: var(--white);
}

/* ===== People ===== */
.people {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
}

.people__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.people__tabs {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 20px;
}

.people__tab {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: inherit;
}

.people__tab.active {
    color: var(--white);
}

.people__tab.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
}

.people__tab:hover {
    color: var(--white);
}

.people__panel {
    display: none;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.people__panel.active {
    display: grid;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.people__panel-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
}

.people__panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.people__label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
}

.people__panel-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-top: 12px;
    font-weight: 400;
}

.people__panel-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    line-height: 1.7;
    max-width: 550px;
}

.people__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    margin-top: 30px;
}

.people__link:hover {
    color: var(--orange-hover);
}

/* ===== Video Section ===== */
.video-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.video-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-section__placeholder {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

.video-section__placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.video-section__placeholder:hover img {
    transform: scale(1.03);
}

.video-section__placeholder iframe {
    min-height: 400px;
}

.video-section__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: rgba(0, 0, 0, 0.4);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-section__play:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-section__play i {
    margin-left: 4px;
}

.video-section__duration {
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.video-section__content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--navy);
    margin-top: 12px;
    font-weight: 400;
}

.video-section__content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-top: 20px;
    line-height: 1.7;
}

.video-section--alt {
    background: var(--white);
}

.video-section__container--reverse {
    grid-template-columns: 1fr 1.5fr;
}

.video-section__placeholder iframe {
    border-radius: 8px;
}

.video-section__thumb {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-section__placeholder:hover .video-section__thumb {
    transform: scale(1.03);
}

/* ===== Media Section ===== */
.media {
    padding: 80px 0;
    background: var(--white);
}

.media__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.media__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.media__header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--navy);
    font-weight: 400;
}

.media__view-all {
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.media__view-all:hover {
    color: var(--orange-hover);
}

.media__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.media__item {
    padding: 30px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

.media__item:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.media__tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media__date {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 8px;
}

.media__item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-top: 16px;
    line-height: 1.5;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer__top {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 80px;
    padding-bottom: 60px;
}

.footer__logo .logo-img {
    height: 70px;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer__col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--orange);
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links a:hover {
    color: var(--orange);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .header__nav {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        max-width: 100%;
    }

    .news__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products__card {
        min-width: calc(50% - 15px);
    }

    .insights__slide {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .insights__image {
        height: 300px;
    }

    .people__tabs {
        flex-direction: column;
        gap: 15px;
    }

    .people__panel {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .people__panel-image {
        margin: 0 auto;
    }

    .people__panel-content p {
        max-width: 100%;
    }

    .video-section__container,
    .video-section__container--reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .media__grid {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header {
        top: 0;
    }

    .hero {
        min-height: 500px;
        height: 80vh;
    }

    .hero__content {
        padding: 0 30px;
    }

    .hero__indicators {
        right: 20px;
    }

    .products__card {
        min-width: 85%;
    }

    .statement {
        padding: 80px 30px;
    }

    .footer__links {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ===== Scroll Animations ===== */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Page Hero (Inner Pages) ===== */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 26, 38, 0.4) 0%, rgba(15, 26, 38, 0.7) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.page-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
}

.page-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 16px;
    max-width: 650px;
    line-height: 1.6;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    background: var(--navy-dark);
    padding: 16px 0;
}

.breadcrumb__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrumb__container a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.breadcrumb__container a:hover {
    color: var(--orange);
}

.breadcrumb__container span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb__container span:last-child {
    color: var(--white);
}

.breadcrumb__separator {
    color: rgba(255, 255, 255, 0.3) !important;
}

/* ===== Content Sections ===== */
.content-section {
    padding: 90px 0;
    background: var(--white);
}

.content-section--gray {
    background: var(--light-gray);
}

.content-section--navy {
    background: var(--navy);
}

.content-section__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Two Column Layout ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col--reverse {
    direction: rtl;
}

.two-col--reverse > * {
    direction: ltr;
}

/* ===== Section Typography ===== */
.section-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}

.section-heading--center {
    text-align: center;
    margin-bottom: 50px;
}

.section-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    margin-top: 25px;
    transition: gap 0.3s ease;
}

.section-link:hover {
    color: var(--orange-hover);
    gap: 14px;
}

.section-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.large-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.5;
    max-width: 900px;
}

.overview-text {
    text-align: center;
    display: flex;
    justify-content: center;
}

/* ===== Value Cards ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.values-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.value-card {
    background: var(--white);
    padding: 35px 25px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

.content-section--gray .value-card,
.content-section .value-card {
    background: var(--white);
}

.value-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(232, 135, 30, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    color: var(--orange);
}

.value-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card__desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Timeline ===== */
.timeline {
    overflow-x: auto;
    padding: 20px 0 30px;
    -webkit-overflow-scrolling: touch;
}

.timeline__track {
    display: flex;
    gap: 0;
    min-width: max-content;
    position: relative;
    padding-top: 30px;
}

.timeline__track::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
}

.timeline__item {
    min-width: 280px;
    padding: 0 30px;
    position: relative;
}

.timeline__marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid var(--light-gray);
    position: absolute;
    top: -7px;
    left: 30px;
}

.timeline__decade {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 20px;
}

.timeline__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-top: 10px;
}

/* ===== Image Cards (Careers - Life At) ===== */
.image-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.image-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.image-card__img {
    height: 220px;
    overflow: hidden;
}

.image-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover .image-card__img img {
    transform: scale(1.05);
}

.image-card__content {
    padding: 25px;
}

.image-card__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.image-card__content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== Job Cards ===== */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: var(--white);
    padding: 30px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.job-card__department {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
}

.job-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
}

.job-card__meta {
    display: flex;
    gap: 20px;
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.job-card__meta i {
    margin-right: 6px;
    color: var(--orange);
    font-size: 12px;
}

.job-card__apply {
    color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: gap 0.3s ease;
}

.job-card__apply:hover {
    color: var(--orange-hover);
    gap: 14px;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--navy);
    padding: 80px 40px;
    text-align: center;
}

.cta-section__container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
}

.cta-section__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    line-height: 1.7;
}

.cta-section__btn {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-section__btn:hover {
    background: var(--orange-hover);
    color: var(--white);
}

/* ===== Contact Form ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-color: var(--orange);
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 40px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: 0.5px;
    align-self: flex-start;
    font-family: inherit;
}

.contact-form__submit:hover {
    background: var(--orange);
}

/* ===== Contact Info ===== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.contact-info__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info__item > i {
    font-size: 20px;
    color: var(--orange);
    margin-top: 4px;
    width: 24px;
    text-align: center;
}

.contact-info__item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-info__item p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===== Office Cards ===== */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.office-card {
    background: var(--white);
    padding: 35px 25px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.office-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.office-card__icon {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 16px;
}

.office-card__city {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}

.office-card__country {
    font-size: 14px;
    color: var(--orange);
    font-weight: 500;
    margin-top: 4px;
    margin-bottom: 16px;
}

.office-card__address {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}

.office-card__phone {
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

.office-card__phone i {
    color: var(--orange);
    margin-right: 6px;
    font-size: 12px;
}

/* ===== Map Section ===== */
.map-section {
    background: var(--light-gray);
}

.map-section__placeholder {
    height: 400px;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.map-section__placeholder i {
    font-size: 48px;
}

.map-section__placeholder p {
    font-size: 16px;
}

/* ===== Filter Tabs (Media) ===== */
.filter-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.filter-tab.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

/* ===== Article Cards (Media) ===== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.article-card__img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card__img img {
    transform: scale(1.05);
}

.article-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
}

.article-card__content {
    padding: 25px;
}

.article-card__date {
    font-size: 13px;
    color: var(--text-gray);
}

.article-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 8px;
    line-height: 1.4;
}

.article-card__excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 10px;
}

.article-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.article-card__link:hover {
    color: var(--orange-hover);
    gap: 14px;
}

/* ===== Load More ===== */
.load-more {
    text-align: center;
    margin-top: 50px;
}

.load-more__btn {
    display: inline-block;
    padding: 14px 50px;
    border: 2px solid var(--navy);
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.load-more__btn:hover {
    background: var(--navy);
    color: var(--white);
}

/* ===== Related Products ===== */
.related-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-product {
    position: relative;
    overflow: hidden;
    display: block;
}

.related-product__img {
    height: 250px;
    overflow: hidden;
}

.related-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.6);
}

.related-product:hover .related-product__img img {
    transform: scale(1.05);
}

.related-product__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.related-product__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.related-product__content .link-arrow {
    color: var(--orange);
    font-size: 20px;
}

/* ===== Inner Page Responsive ===== */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .two-col--reverse {
        direction: ltr;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .image-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }

    .page-hero__content {
        padding: 0 30px 50px;
    }

    .content-section {
        padding: 60px 0;
    }

    .values-grid,
    .values-grid--4 {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .image-cards-grid {
        grid-template-columns: 1fr;
    }

    .related-products {
        grid-template-columns: 1fr;
    }

    .section-image {
        height: 280px;
    }
}
