/* ═══════════════════════════════════════════════════════════════
   MOFFETT OIL — Premium Global Brand Stylesheet v2
   Navy #144372 | Red #b61c21 | Light Grey #eeeff0
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;0,900;1,700&display=swap');

:root {
    --navy: #144372;
    --navy-dark: #0d2d4f;
    --navy-deeper: #091e36;
    --red: #b61c21;
    --red-dark: #8e1519;
    --red-glow: rgba(182,28,33,0.4);
    --light-grey: #f4f5f6;
    --mid-grey: #6b7280;
    --dark: #0a0a0a;
    --white: #ffffff;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --max-width: 1340px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

/* ═══ SCROLL REVEAL ═══ */
.reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* ═══ NAVIGATION ═══ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 0 40px; transition: all 0.5s ease;
}
.nav:not(.scrolled) { background: transparent; }
.nav.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 40px rgba(0,0,0,0.08);
}
.nav.scrolled .nav-links a { color: var(--mid-grey); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--navy); }
.nav.scrolled .nav-mobile span { background: var(--navy); }
.nav-inner {
    max-width: var(--max-width); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 22px; color: white;
    letter-spacing: 0px;
}
.nav-logo .logo-accent { color: var(--red); }
.nav-logo .logo-line {
    width: 28px; height: 3px; background: var(--red);
    margin-right: 4px;
}
.nav-logo-img {
    height: 48px; width: auto;
    transition: var(--transition);
}
.nav-logo-img.logo-dark { display: none; }
.nav-logo-img.logo-white { display: block; }
.nav.scrolled .nav-logo-img.logo-dark { display: block; }
.nav.scrolled .nav-logo-img.logo-white { display: none; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6);
    transition: var(--transition); letter-spacing: 0.5px;
    text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: white; }
.nav-cta {
    background: var(--red) !important; color: white !important;
    padding: 10px 24px !important; border-radius: 4px;
    text-transform: uppercase !important; letter-spacing: 1px !important;
    font-size: 11px !important; font-weight: 700 !important;
    transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-mobile { display: none; cursor: pointer; }
.nav-mobile span {
    display: block; width: 24px; height: 2px;
    background: white; margin: 6px 0; transition: var(--transition);
}

/* ═══ HERO — CINEMATIC FULLSCREEN ═══ */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
    background: var(--dark);
}
.hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.35) contrast(1.1);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.12); }
}
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.1) 40%,
        rgba(10,10,10,0.7) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
    width: 100%;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 28px;
}
.hero-tag::before {
    content: ''; width: 40px; height: 2px; background: var(--red);
}
.hero h1 {
    font-family: var(--font-heading); font-size: 68px; font-weight: 800;
    color: white; line-height: 1.05; margin-bottom: 28px;
    max-width: 780px;
}
.hero h1 em {
    font-style: italic; color: var(--red);
}
.hero-sub {
    font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.8;
    margin-bottom: 48px; max-width: 560px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; margin-bottom: 80px; }

.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px; font-size: 12px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary {
    background: var(--red); color: white;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 0 100%);
    padding-right: 40px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateX(4px); }
.btn-outline {
    background: transparent; color: white;
    border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.05); }
.btn-white { background: white; color: var(--dark); }
.btn-white:hover { background: var(--light-grey); }
.btn-navy { background: var(--navy); color: white; }

/* Hero Stats */
.hero-stats {
    display: flex; gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}
.hero-stat {}
.hero-stat-num {
    font-size: 48px; font-weight: 900; color: white;
    line-height: 1; font-family: var(--font-body);
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
    font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 6px;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

/* ═══ STATS TICKER ═══ */
.stats-ticker {
    background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 50px 0;
}
.stats-ticker-inner {
    max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
    display: flex; justify-content: space-between;
}
.ticker-item { text-align: center; flex: 1; }
.ticker-num {
    font-size: 44px; font-weight: 900; color: white; line-height: 1;
    font-family: var(--font-body);
}
.ticker-num .red { color: var(--red); }
.ticker-label {
    font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 8px;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.ticker-divider {
    width: 1px; background: rgba(255,255,255,0.08);
    align-self: stretch;
}

/* ═══ SECTIONS ═══ */
section { padding: 120px 0; position: relative; }
.section-dark { background: var(--dark); color: white; }
.section-grey { background: var(--light-grey); }
.section-navy { background: var(--navy-deeper); color: white; }

.section-header {
    max-width: 640px; margin-bottom: 72px;
}
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 16px;
}
.section-tag::before {
    content: ''; width: 24px; height: 2px; background: var(--red);
}
.section-dark .section-tag { color: var(--red); }
.section-title {
    font-family: var(--font-heading); font-size: 46px; font-weight: 800;
    line-height: 1.1; margin-bottom: 20px;
}
.section-desc {
    font-size: 17px; color: var(--mid-grey); line-height: 1.8;
    font-weight: 300;
}
.section-dark .section-desc { color: rgba(255,255,255,0.45); }

/* ═══ IMAGE SECTIONS — FULL BLEED ═══ */
.img-section {
    position: relative; min-height: 500px;
    display: flex; align-items: center;
    overflow: hidden;
}
.img-section-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center;
    background-attachment: fixed;
    filter: brightness(0.3);
}
.img-section-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(20,67,114,0.7), rgba(10,10,10,0.6));
}
.img-section-content {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto; padding: 80px 40px;
    color: white;
}
.img-section h2 {
    font-family: var(--font-heading); font-size: 42px; font-weight: 800;
    margin-bottom: 20px; max-width: 600px; line-height: 1.15;
}
.img-section p {
    font-size: 17px; color: rgba(255,255,255,0.6); max-width: 500px;
    line-height: 1.8; font-weight: 300;
}

/* ═══ CARDS — PREMIUM ═══ */
.card-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
    background: white; border-radius: 0; padding: 44px 36px;
    transition: var(--transition); position: relative;
    border: 1px solid #e8e8e8;
    overflow: hidden;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 0; height: 3px; background: var(--red);
    transition: width 0.5s ease;
}
.card:hover::before { width: 100%; }
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.section-dark .card {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.06);
}
.section-dark .card:hover {
    background: rgba(255,255,255,0.06);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.card-num {
    font-size: 48px; font-weight: 900; color: rgba(20,67,114,0.08);
    font-family: var(--font-body); line-height: 1; margin-bottom: 16px;
}
.section-dark .card-num { color: rgba(255,255,255,0.04); }
.card-icon {
    font-size: 28px; margin-bottom: 20px; display: block;
}
.card h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.card p {
    font-size: 14px; color: var(--mid-grey); line-height: 1.7;
}
.section-dark .card h3 { color: white; }
.section-dark .card p { color: rgba(255,255,255,0.4); }

/* ═══ SPLIT LAYOUT — CINEMATIC ═══ */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0; align-items: stretch; min-height: 600px;
}
.split-media {
    position: relative; overflow: hidden;
    min-height: 400px;
}
.split-media img,
.split-media-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%; object-fit: cover;
    background-size: cover; background-position: center;
}
.split-media-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(20,67,114,0.85), rgba(10,10,10,0.7));
    display: flex; align-items: center; justify-content: center;
}
.split-media-stat {
    text-align: center; color: white;
}
.split-media-stat .num {
    font-size: 80px; font-weight: 900; line-height: 1;
}
.split-media-stat .label {
    font-size: 13px; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 2px;
    margin-top: 8px; font-weight: 600;
}
.split-text {
    padding: 80px 64px; display: flex;
    flex-direction: column; justify-content: center;
}
.split-text h2 {
    font-family: var(--font-heading); font-size: 38px; font-weight: 800;
    line-height: 1.15; margin-bottom: 20px;
}
.split-text p {
    font-size: 16px; color: var(--mid-grey); line-height: 1.8;
    margin-bottom: 16px; font-weight: 300;
}
.section-dark .split-text p { color: rgba(255,255,255,0.5); }

.check-list { list-style: none; margin: 24px 0; }
.check-list li {
    padding: 12px 0; font-size: 15px; display: flex;
    align-items: flex-start; gap: 14px;
    border-bottom: 1px solid #eee;
    font-weight: 400;
}
.section-dark .check-list li { border-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.check-list .icon {
    color: var(--red); font-size: 14px; font-weight: 800;
    flex-shrink: 0; margin-top: 3px;
}

/* ═══ GOVERNANCE ═══ */
.gov-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: #e8e8e8;
}
.section-dark .gov-grid { background: rgba(255,255,255,0.06); }
.gov-item {
    padding: 36px 32px; background: white;
    transition: var(--transition);
}
.section-dark .gov-item { background: var(--dark); }
.gov-item:hover { background: var(--light-grey); }
.section-dark .gov-item:hover { background: rgba(255,255,255,0.03); }
.gov-item h4 {
    font-size: 15px; font-weight: 700; margin-bottom: 10px;
    color: var(--navy);
}
.section-dark .gov-item h4 { color: white; }
.gov-item p { font-size: 13px; color: var(--mid-grey); line-height: 1.7; }
.section-dark .gov-item p { color: rgba(255,255,255,0.4); }

/* ═══ TIMELINE ═══ */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
    display: flex; gap: 32px; padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.timeline-year {
    font-size: 13px; font-weight: 700; color: var(--red);
    min-width: 80px; padding-top: 3px; letter-spacing: 1px;
}
.timeline-text h4 {
    font-size: 17px; font-weight: 600; margin-bottom: 6px; color: white;
}
.timeline-text p {
    font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6;
}

/* ═══ CTA BANNER — BOLD ═══ */
.cta-banner {
    position: relative; padding: 100px 0; text-align: center;
    color: white; overflow: hidden;
}
.cta-banner-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 50%, var(--navy-deeper) 100%);
}
.cta-banner-content { position: relative; z-index: 2; }
.cta-banner h2 {
    font-family: var(--font-heading); font-size: 42px; font-weight: 800;
    margin-bottom: 16px; line-height: 1.15;
}
.cta-banner p {
    font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px;
    max-width: 480px; margin-left: auto; margin-right: auto;
    font-weight: 300;
}

/* ═══ PAGE HERO (interior) ═══ */
.page-hero {
    min-height: 50vh; display: flex; align-items: flex-end;
    position: relative; overflow: hidden;
    background: var(--dark); padding-bottom: 80px;
}
.page-hero-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover; background-position: center;
    filter: brightness(0.25); transform: scale(1.02);
}
.page-hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.2), rgba(10,10,10,0.8));
}
.page-hero-content {
    position: relative; z-index: 2;
    max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
    width: 100%; padding-top: 140px;
}
.page-hero h1 {
    font-family: var(--font-heading); font-size: 56px; font-weight: 800;
    color: white; margin-bottom: 16px; line-height: 1.1;
}
.page-hero p {
    font-size: 18px; color: rgba(255,255,255,0.5); max-width: 560px;
    font-weight: 300; line-height: 1.7;
}

/* ═══ CONTACT ═══ */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.contact-info h3 {
    font-size: 24px; font-weight: 700; margin-bottom: 24px;
}
.contact-office {
    padding: 24px 0; border-bottom: 1px solid #e8e8e8;
}
.contact-office h4 {
    font-size: 14px; font-weight: 700; color: var(--navy);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px;
}
.contact-office p { font-size: 14px; color: var(--mid-grey); line-height: 1.7; }
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%; padding: 16px 0; border: none;
    border-bottom: 1px solid #d1d5db;
    font-size: 15px; font-family: var(--font-body);
    margin-bottom: 24px; transition: var(--transition);
    background: transparent; color: var(--dark);
    border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none; border-bottom-color: var(--red);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa; font-weight: 300;
}
.contact-form textarea { min-height: 100px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; border-radius: 0; }

/* ═══ FOOTER — PREMIUM ═══ */
.footer {
    background: var(--dark); color: rgba(255,255,255,0.4);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    margin-bottom: 60px;
}
.footer-brand h3 {
    font-size: 22px; font-weight: 800; color: white; margin-bottom: 16px;
}
.footer-brand .accent { color: var(--red); }
.footer-brand p {
    font-size: 14px; line-height: 1.8; max-width: 320px; font-weight: 300;
}
.footer h4 {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.2);
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    font-size: 14px; color: rgba(255,255,255,0.4);
    transition: var(--transition); font-weight: 300;
}
.footer ul a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 12px; font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,0.3); margin-left: 24px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .split { grid-template-columns: 1fr; }
    .split-media { min-height: 350px; }
    .split-text { padding: 60px 40px; }
    .card-grid { grid-template-columns: 1fr 1fr; }
    .section-title { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Mobile menu open state */
.nav-links.show {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    z-index: 9999;
    animation: menuFadeIn 0.3s ease;
}
@keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.nav-links.show a {
    font-size: 18px !important;
    color: white !important;
    padding: 12px 0;
}
.nav-links.show a:hover { color: var(--red) !important; }
.nav-links.show .nav-cta {
    margin-top: 16px;
    padding: 14px 36px !important;
    font-size: 14px !important;
}
.nav-close {
    display: none;
    position: fixed;
    top: 24px; right: 24px;
    z-index: 10000;
    width: 40px; height: 40px;
    background: none; border: none;
    cursor: pointer;
    color: white; font-size: 28px;
    font-weight: 300;
}
.nav-links.show ~ .nav-close { display: block; }

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav { padding: 0 24px; }
    .nav-links { display: none; }
    .nav-mobile { display: block; }
    .hero h1 { font-size: 36px; }
    .hero-content { padding: 0 24px; }
    .hero-stats { flex-direction: column; gap: 24px; }
    .hero-stat-num { font-size: 36px; }
    .section-title { font-size: 30px; }
    section { padding: 80px 0; }
    .card-grid, .card-grid-2 { grid-template-columns: 1fr; }
    .gov-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-ticker-inner { flex-direction: column; gap: 32px; }
    .ticker-divider { width: 40px; height: 1px; align-self: center; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .page-hero h1 { font-size: 36px; }
    .split-text { padding: 48px 24px; }
    .img-section { min-height: 400px; }
    .img-section h2 { font-size: 30px; }
    .img-section-bg { background-attachment: scroll; }
}
