/* ===================================
   EverLife Tech & Marine Services
   Professional Website Stylesheet
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --primary-navy: #0b213f;
    --secondary-navy: #1a4d7d;
    --teal: #2d97b5;
    --slate-gray: #4a5568;
    --light-gray: #e2e8f0;
    --dark-gray: #2d3748;
    --gold: #f4b600;
    --gold-dark: #b67900;
    --white: #ffffff;
    --off-white: #f7fafc;
    --hero-overlay: rgba(11, 33, 63, 0.5);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: clamp(56px, 7vw, 80px) 0;
    --container-max: 1200px;
    --card-padding-y: clamp(1.25rem, 2.2vw, 2.5rem);
    --card-padding-x: clamp(1rem, 1.8vw, 2rem);
    --card-padding-compact: clamp(0.9rem, 1.4vw, 1.4rem);
    --card-radius: 12px;
    --card-border: 1px solid #e2e8f0;
    --card-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --card-shadow-hover: 0 14px 32px rgba(15, 23, 42, 0.12);
    --header-main-height: 78px;
    --header-utility-height: 42px;
    --header-total-height: calc(var(--header-main-height) + var(--header-utility-height));
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-total-height) + 16px);
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

main#mainContent {
    padding-top: var(--header-total-height);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

:where(a, button, input, select, textarea, [role="button"], [tabindex]):focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: -48px;
    left: 16px;
    z-index: 2000;
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 600;
}

.skip-link:focus {
    top: 12px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.header {
    background: var(--primary-navy);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-contact {
    background: var(--gold);
    color: var(--primary-navy);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.btn-contact:hover {
    background: #ffca28;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 182, 0, 0.3);
}

.btn-contact::after {
    display: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 360px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1rem;
    z-index: 1000;
    padding: 0.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.4rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.5rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.35rem 0.55rem;
    color: var(--dark-gray);
    transition: var(--transition-smooth);
    border-left: 2px solid transparent;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: var(--off-white);
    border-left-color: var(--gold);
    padding-left: 1.8rem;
}

.dropdown-item:focus-visible {
    background: var(--off-white);
    border-left-color: var(--gold);
    padding-left: 1.8rem;
}

.dropdown-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    font-size: 0.82rem;
    line-height: 1.2;
    color: #2d6fa8;
    margin-bottom: 0;
}

.dropdown-item small {
    display: block;
    font-size: 0.7rem;
    color: var(--slate-gray);
    line-height: 1.3;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.team-slide {
    background-position: center 18%;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hero-overlay);
    z-index: 1;
}

.slide-caption {
    display: none;
}

.hero-slide.active .slide-caption {
    opacity: 0;
}

.slide-caption h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-caption p {
    font-size: 1.1rem;
    color: var(--light-gray);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(244, 182, 0, 0.9);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 40px;
    border-radius: 6px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* === HIGHLIGHT STYLES === */
.hero-highlight,
.service-highlight {
    background: linear-gradient(135deg, #2d97b5 0%, #f4b600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.hero-highlight::after,
.service-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #2d97b5 0%, #f4b600 100%);
    border-radius: 2px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-navy);
}

.btn-primary:hover {
    background: #ffca28;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 182, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

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

/* === SECTIONS === */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background: var(--primary-navy);
    color: var(--white);
}

.why-choose.section-dark {
    background: linear-gradient(135deg, #0f2b54 0%, #132f5c 100%);
    padding: clamp(48px, 6vw, 70px) 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: inherit;
}

.section-description {
    font-size: 1.1rem;
    color: var(--slate-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-dark .section-description {
    color: var(--light-gray);
}

/* === LEADERSHIP FLIP CARDS === */
.leader-flip-card {
    background-color: transparent;
    width: 100%;
    height: clamp(300px, 32vw, 400px);
    perspective: 1000px;
    cursor: pointer;
    margin-bottom: 1.25rem;
}

.leader-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.leader-flip-card.flipped .leader-flip-inner {
    transform: rotateY(180deg);
}

.leader-flip-front,
.leader-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(1.25rem, 2vw, 2rem);
}

.leader-flip-front {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
}

.leader-flip-back {
    background: var(--white);
    color: var(--dark-gray);
    transform: rotateY(180deg);
}

.leader-front-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.leader-front-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.leader-flip-back .leader-photo {
    width: clamp(96px, 11vw, 150px);
    height: clamp(96px, 11vw, 150px);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--teal);
    flex-shrink: 0;
}

.leader-flip-back .leader-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.leader-flip-back .leader-title {
    color: var(--teal);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.leader-flip-back .leader-bio {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--slate-gray);
    margin-top: 0.5rem;
}

/* === MARINE OPERATIONS SECTION === */
.marine-highlight {
    background: linear-gradient(rgba(247, 250, 252, 0.95), rgba(247, 250, 252, 0.95)), url('../images/Platform%20SUV.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.marine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.marine-card {
    background: var(--white);
    padding: 1.75rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border-top: 3px solid var(--teal);
}

.marine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--gold);
}

.marine-card.crew-boat-card {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('../images/Crew%20Boat.png');
    background-size: cover;
    background-position: center;
}

.marine-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.marine-icon-img {
    width: 180px;
    height: 120px;
    display: block;
    object-fit: cover;
    margin: 0 auto 1rem;
    border-radius: 12px;
    filter: brightness(1.1) contrast(1.05) saturate(1.05);
    background-color: #eef3f9;
}

.marine-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.marine-card p {
    color: var(--slate-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* === CLIENTS SECTION === */
.clients-section {
    background: var(--off-white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 3rem;
}

.client-card {
    background: var(--white);
    padding: var(--card-padding-compact);
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border-bottom: 4px solid var(--teal);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-bottom-color: var(--gold);
}

.client-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.client-card p {
    color: var(--slate-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === MEGA MENU STYLING === */
.nav-mega-dropdown {
    position: relative;
}

.mega-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 600px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    z-index: 1000;
    display: flex;
    overflow: hidden;
}

.nav-mega-dropdown:hover .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.8rem;
}

.nav-mega-dropdown:focus-within .mega-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.8rem;
}

.mega-menu-left {
    background: var(--off-white);
    padding: 1.5rem 0;
    min-width: 250px;
    border-right: 1px solid #e2e8f0;
}

.mega-menu-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mega-menu-section:hover,
.mega-menu-section.active {
    background: var(--white);
    border-left-color: var(--gold);
    color: var(--primary-navy);
}

.mega-menu-section:focus-visible {
    background: var(--white);
    border-left-color: var(--gold);
    color: var(--primary-navy);
}

.mega-arrow {
    color: var(--slate-gray);
    font-size: 1.2rem;
}

.mega-menu-right {
    padding: 2rem;
    min-width: 350px;
}

.mega-subsection {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mega-link {
    color: var(--slate-gray);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 1rem;
}

.mega-link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mega-link:hover {
    color: var(--primary-navy);
    padding-left: 1.2rem;
}

.mega-link:focus-visible {
    color: var(--primary-navy);
    padding-left: 1.2rem;
}

.mega-link:hover:before {
    opacity: 1;
}

/* === ABOUT PAGE STYLING === */
.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.story-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-navy);
    line-height: 1.7;
}

.timeline {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--slate-gray);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(0.9rem, 1.6vw, 1.6rem);
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.06);
    padding: var(--card-padding-compact);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.value-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.8rem;
    border-radius: 50%;
    background: rgba(244, 182, 0, 0.18);
    border: 1px solid rgba(244, 182, 0, 0.45);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.25rem, 2vw, 2.5rem);
    margin-top: 3rem;
}

.leader-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.leader-photo {
    width: 100%;
    height: clamp(220px, 28vw, 350px);
    display: block;
    object-fit: contain;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--teal);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--slate-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Certifications */
.certifications-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.cert-category h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(244, 182, 0, 0.3);
}

.cert-list {
    list-style: none;
    padding: 0;
}

.cert-list li {
    padding: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-gray);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: bold;
}

.cert-list li strong {
    color: var(--white);
}

/* Stats Showcase */
.stats-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(0.9rem, 1.8vw, 1.5rem);
    margin-top: 3rem;
}

.stat-box {
    background: var(--white);
    padding: var(--card-padding-y) var(--card-padding-x);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--teal);
    min-height: clamp(170px, 19vw, 240px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: var(--gold);
}

.stat-number-large {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.6rem;
}

.stat-label-large {
    font-size: clamp(0.98rem, 1.4vw, 1.15rem);
    color: var(--slate-gray);
    font-weight: 600;
    line-height: 1.35;
    max-width: 14ch;
    margin: 0 auto;
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-navy);
}

.about-text .btn {
    margin-top: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--off-white);
    padding: var(--card-padding-compact);
    border-radius: var(--card-radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--slate-gray);
    font-weight: 500;
}

/* === SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
}

.service-card {
    background: var(--white);
    padding: var(--card-padding-compact);
    border-radius: var(--card-radius);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--card-shadow-hover);
}

.service-icon {
    width: 84px;
    height: 84px;
    background: rgba(244, 182, 0, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--gold-dark);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

.service-description {
    color: var(--slate-gray);
    margin-bottom: 1.1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-link {
    color: var(--gold-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 10px;
    color: var(--primary-navy);
    text-decoration: underline;
}

/* === WHY CHOOSE US SECTION === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: clamp(0.9rem, 1.6vw, 1.5rem);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(244, 182, 0, 0.18);
    color: #f8d15b;
    border: 1px solid rgba(244, 182, 0, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 0.9rem;
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--primary-navy);
}

.feature-item p {
    color: var(--slate-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-dark .feature-item h3 {
    color: var(--white);
}

.section-dark .feature-item p {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .feature-icon {
    background: rgba(244, 182, 0, 0.22);
    color: #ffd876;
}

/* === PROJECTS SECTION === */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    margin-bottom: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.project-image {
    height: clamp(180px, 24vw, 250px);
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(1.05) contrast(1.03) saturate(1.04);
}

.project-content {
    padding: var(--card-padding-compact);
}

.project-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.project-content p {
    color: var(--light-gray);
    margin-bottom: 1.1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-link {
    color: var(--gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.project-link:hover {
    gap: 10px;
}

/* === PROJECT DETAIL SECTION === */
.project-detail {
    margin-top: 2rem;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: clamp(1rem, 2vw, 1.75rem);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.project-detail-grid {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
}

.project-detail-grid.reverse {
    flex-direction: row-reverse;
}

.project-detail-media {
    flex: 1 1 45%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: #f7fafc;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(1.08) contrast(1.05) saturate(1.05);
}

.project-gradient-1 {
    background-image: linear-gradient(135deg, rgba(26, 77, 125, 0.25) 0%, rgba(45, 111, 168, 0.6) 100%),
        url("../images/Our%20Expert%20Team.png");
}

.project-gradient-2 {
    background-image: linear-gradient(135deg, rgba(45, 111, 168, 0.25) 0%, rgba(74, 142, 194, 0.6) 100%),
        url("../images/Platforms%20Support%20Ship.png");
}

.project-gradient-3 {
    background-image: linear-gradient(135deg, rgba(74, 142, 194, 0.25) 0%, rgba(107, 163, 208, 0.6) 100%),
        url("../images/Platform%20SUV.png");
}

.project-gradient-4 {
    background-image: linear-gradient(135deg, rgba(107, 163, 208, 0.25) 0%, rgba(138, 184, 216, 0.6) 100%),
        url("../images/Oil%20Rig%20Platform.png");
}

.project-gradient-5 {
    background-image: linear-gradient(135deg, rgba(138, 184, 216, 0.25) 0%, rgba(169, 201, 230, 0.6) 100%),
        url("../images/Crew%20Boat.png");
}

.project-detail-content {
    flex: 1 1 55%;
}

.project-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    color: var(--primary-navy);
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--slate-gray);
}

.project-tag,
.project-date,
.project-location {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: #eef3f9;
}

.project-tag {
    color: var(--primary-navy);
    font-weight: 600;
}

.project-detail-content .lead {
    font-size: 0.98rem;
    color: var(--slate-gray);
    margin-bottom: 0.9rem;
}

.project-detail-content h4 {
    font-size: 1.05rem;
    margin: 0.6rem 0;
    color: var(--primary-navy);
}

.project-highlights {
    padding-left: 1.1rem;
    color: var(--slate-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.project-stat {
    background: #f7fafc;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}

.project-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-navy);
}

.project-stat .stat-label {
    font-size: 0.8rem;
    color: var(--slate-gray);
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border: var(--card-border);
    border-radius: var(--card-radius);
    padding: var(--card-padding-compact);
    box-shadow: var(--card-shadow);
    position: relative;
}

.section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 182, 0, 0.15);
    color: var(--gold);
    font-size: 1.8rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-gray);
    margin-bottom: 1rem;
}

.section-dark .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: inherit;
    margin-bottom: 0.15rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--slate-gray);
}

.section-dark .testimonial-author span {
    color: rgba(255, 255, 255, 0.75);
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* === CTA SECTION === */
.cta-section {
    background: var(--off-white);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--slate-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.3rem;
}

.footer-logo .logo-tagline {
    font-size: 0.75rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--gold);
}

.contact-info li {
    color: var(--light-gray);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === SERVICES PAGE STYLES === */
.page-hero {
    position: relative;
    height: auto;
    min-height: clamp(260px, 34vw, 420px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
    max-width: 760px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.6vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.08rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Service Detail Sections */
.service-detail {
    scroll-margin-top: calc(var(--header-total-height) + 24px);
}

.service-detail.section {
    padding: clamp(40px, 5vw, 64px) 0;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    color: var(--primary-navy);
}

.service-detail.section-dark .service-icon-large {
    background: var(--white);
}

.service-detail.section-dark .service-icon-large svg {
    color: var(--teal);
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    margin-bottom: 0.35rem;
}

.service-detail-intro {
    font-size: 1.05rem;
    color: var(--slate-gray);
}

.service-detail.section-dark .service-detail-intro {
    color: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.service-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
    color: var(--primary-navy);
}

.service-detail.section-dark .service-detail-content h3 {
    color: var(--white);
}

.service-detail-content h3:first-child {
    margin-top: 0;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.6rem;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-detail.section-dark .service-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.service-list li strong {
    color: var(--primary-navy);
    font-weight: 600;
}

.service-detail.section-dark .service-list li strong {
    color: var(--gold);
}

.service-detail-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-box {
    background: var(--off-white);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.service-detail.section-dark .feature-box {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--teal);
}

.feature-box h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.service-detail.section-dark .feature-box h4 {
    color: var(--white);
}

.feature-box p {
    color: var(--slate-gray);
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-detail.section-dark .feature-box p {
    color: var(--light-gray);
}

/* Services Benefits Grid */
.services-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--card-padding-compact);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.benefit-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

/* === CORPORATE RESPONSIBILITY === */
.csr-page .csr-hero {
    background-image: linear-gradient(135deg, rgba(11, 33, 63, 0.92) 0%, rgba(26, 77, 125, 0.88) 55%, rgba(45, 151, 181, 0.85) 100%),
        url("../images/Qua%20Iboe%20River%20Clean%20up.png");
    background-size: cover;
    background-position: center;
    margin-top: 0;
    padding: clamp(3.5rem, 6vw, 5rem) 20px;
    text-align: center;
}

.csr-page .csr-hero h1 {
    font-size: clamp(2.1rem, 4.2vw, 2.8rem);
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.csr-page .csr-hero p {
    font-size: 1.05rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.csr-page .section-light {
    padding: 60px 0;
    background: #ffffff;
}

.csr-page .section-dark {
    padding: 60px 0;
    background: #f8fafc;
}

.csr-page .section-title {
    font-size: 2.1rem;
    color: #0b213f;
    margin-bottom: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.csr-page .section-subtitle {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.csr-page .esg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.csr-page .esg-card {
    padding: var(--card-padding-compact);
    background: #f8fafc;
    border-radius: var(--card-radius);
    border-left: 4px solid;
    box-shadow: var(--card-shadow);
}

.csr-page .esg-card.environmental { border-left-color: #10b981; }
.csr-page .esg-card.social { border-left-color: #3b82f6; }
.csr-page .esg-card.governance { border-left-color: #8b5cf6; }

.csr-page .esg-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-bottom: 12px;
}

.csr-page .esg-card h3 {
    font-size: 1.2rem;
    color: #0b213f;
    margin-bottom: 10px;
    font-weight: 600;
}

.csr-page .esg-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.csr-page .pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 36px;
}

.csr-page .csr-section-grid {
    display: flex;
    gap: 32px;
    align-items: stretch;
    margin-top: 36px;
}

.csr-page .csr-section-grid.reverse {
    flex-direction: row-reverse;
}

.csr-page .csr-section-grid .pillars-grid {
    flex: 1 1 65%;
    margin-top: 0;
}

.csr-page .csr-media {
    flex: 1 1 35%;
    margin: 0;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.csr-page .csr-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    flex: 1 1 auto;
}

.csr-page .csr-media figcaption {
    padding: 12px 16px 16px;
    font-size: 0.9rem;
    color: #475569;
    background: #f8fafc;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.csr-page .pillar-card {
    padding: var(--card-padding-compact);
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.csr-page .pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.csr-page .pillar-card h4 {
    font-size: 1.1rem;
    color: #0b213f;
    margin-bottom: 10px;
    font-weight: 600;
}

.csr-page .pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.csr-page .pillar-card li {
    color: #64748b;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.csr-page .pillar-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.csr-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.csr-page .stat-card {
    text-align: center;
    padding: var(--card-padding-compact);
}

.csr-page .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d97b5;
    margin-bottom: 10px;
}

.csr-page .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* === TRUST & SAFETY === */
.trust-page .trust-hero {
    background: linear-gradient(135deg, #0b213f 0%, #2d97b5 100%);
    margin-top: 0;
    padding: clamp(3.5rem, 6vw, 5rem) 20px;
    text-align: center;
}

.trust-page .trust-hero-title {
    font-size: clamp(2.1rem, 4.2vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-page .trust-hero-subtitle {
    font-size: 1.05rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.trust-page .trust-section {
    padding: 60px 0;
}

.trust-page .trust-section--light {
    background: #ffffff;
}

.trust-page .trust-section--muted {
    background: #f8fafc;
}

.trust-page .trust-section-title {
    font-size: 2.1rem;
    color: #0b213f;
    margin-bottom: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.trust-page .trust-section-lead {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.trust-page .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.trust-page .trust-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.trust-page .trust-grid--compact p {
    font-size: 0.85rem;
}

.trust-page .trust-card {
    padding: var(--card-padding-compact);
    background: #ffffff;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
}

.trust-page .trust-card--muted {
    background: #f8fafc;
}

.trust-page .trust-card--center {
    text-align: center;
}

.trust-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(244, 182, 0, 0.18);
    border: 1px solid rgba(244, 182, 0, 0.45);
    margin-bottom: 12px;
}

.trust-page .trust-card--center .trust-card-icon {
    margin: 0 auto 10px;
}

.trust-page .trust-card h4 {
    font-size: 1.1rem;
    color: #0b213f;
    margin-bottom: 8px;
    font-weight: 600;
}

.trust-page .trust-card h5 {
    font-size: 1rem;
    color: #0b213f;
    margin-bottom: 5px;
    font-weight: 600;
}

.trust-page .trust-card p {
    color: #64748b;
    line-height: 1.6;
}

.trust-page .trust-cta {
    background: linear-gradient(135deg, #0b213f 0%, #2d97b5 100%);
    padding: 45px 32px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.trust-page .trust-cta-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.trust-page .trust-cta-text {
    font-size: 1rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.trust-page .trust-cta-link {
    display: inline-block;
    padding: 12px 32px;
    background: #fff;
    color: #0b213f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
}

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

@media (max-width: 1200px), (max-height: 800px) {
    .hero-slide.team-slide {
        background-position: center 28%;
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .hero-slide.team-slide {
        background-position: center 32%;
    }

    .project-detail-grid,
    .project-detail-grid.reverse {
        flex-direction: column;
    }

    .project-detail-media {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--primary-navy);
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        width: 100%;
        grid-template-columns: 1fr;
        max-height: 60vh;
        overflow-y: auto;
        box-shadow: none;
        margin-top: 0.5rem;
    }
    
    .btn-contact {
        margin-top: 1rem;
        display: inline-block;
        width: auto;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }

    .csr-page .csr-hero h1,
    .trust-page .trust-hero-title {
        font-size: 2rem;
    }

    .csr-page .csr-hero p,
    .trust-page .trust-hero-subtitle {
        font-size: 1rem;
    }

    .csr-page .section-title,
    .trust-page .trust-section-title {
        font-size: 1.8rem;
    }

    .csr-page .csr-section-grid,
    .csr-page .csr-section-grid.reverse {
        flex-direction: column;
    }

    .csr-page .csr-media {
        min-height: 240px;
    }

    .marine-icon-img {
        width: 160px;
        height: 110px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .section {
        padding: 50px 0;
    }
}

/* ===================================
   Launch Refresh Overrides
   =================================== */

body {
    background: #f7f9fb;
}

.header {
    background: rgba(7, 24, 41, 0.96);
    backdrop-filter: blur(12px);
}

.header-utility {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-utility-content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 0.65rem 0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.72);
}

.header-content {
    min-height: var(--header-main-height);
    padding: 0.8rem 0;
}

.logo {
    text-decoration: none;
}

.btn-contact {
    border-radius: 999px;
    padding: 0.7rem 1.4rem;
}

.hero {
    min-height: calc(100vh - var(--header-total-height));
    height: auto;
    align-items: flex-start;
}

.hero-content--enterprise {
    max-width: 820px;
    padding-top: clamp(3.5rem, 7vw, 5.75rem);
    padding-bottom: clamp(5.75rem, 9vw, 8.5rem);
    text-align: left;
}

.hero-title {
    font-size: clamp(2.35rem, 4.4vw, 3.85rem);
    line-height: 1.04;
    margin-bottom: 0.9rem;
    max-width: 680px;
    margin-left: 0;
    margin-right: 0;
}

.hero-subtitle {
    max-width: 620px;
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 0.35rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.2rem;
    justify-content: flex-start;
}

.hero-actions .btn {
    min-width: 190px;
}

.hero-actions .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(7, 24, 41, 0.22);
}

.hero-actions .btn-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.hero-stat-grid {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.hero-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(7, 24, 41, 0.54);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.hero-stat-card strong,
.hero-stat-card span {
    display: block;
    color: var(--white);
}

.hero-stat-card strong {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hero-stat-card span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    line-height: 1.5;
}

.capability-strip {
    padding: 2rem 0 1rem;
    margin-top: 0;
}

.section-light {
    background: #f7f9fb;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sector-card {
    background: var(--white);
    border: 1px solid rgba(11, 33, 63, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    padding: 1.25rem 1.2rem;
}

.sector-card--soft {
    box-shadow: none;
    background: #f8fbfd;
}

.sector-card h2,
.sector-card h3 {
    color: var(--primary-navy);
    margin-bottom: 0.85rem;
    font-size: 1.12rem;
}

.sector-card p {
    color: #516171;
    line-height: 1.7;
}

.operational-environments {
    background: #f5f8fb;
}

.delivery-framework .section-description {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.delivery-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.delivery-step {
    display: inline-flex;
    font-size: 0.84rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.delivery-card h3 {
    color: var(--white);
    margin-bottom: 0.85rem;
}

.delivery-card p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.cta-content--enterprise {
    text-align: center;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 2rem;
}

.cta-contact-card {
    display: block;
    padding: 1.25rem 1.3rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: left;
}

.cta-contact-card strong,
.cta-contact-card span {
    display: block;
}

.cta-contact-card strong {
    margin-bottom: 0.4rem;
}

.cta-contact-card span {
    color: rgba(255, 255, 255, 0.78);
}

.footer {
    background: #071829;
}

.footer-content {
    gap: 2rem;
}

.footer-col--brand p {
    max-width: 320px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-col a:hover,
.footer-links a:hover {
    color: var(--gold);
}

.scroll-indicator {
    display: none;
}

.header-utility-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    text-align: center;
}

.hero-service-panel {
    max-width: 620px;
    margin: 1.5rem 0 0;
    padding: 0 0 0 1rem;
    border-radius: 0;
    background: none;
    border: none;
    border-left: 2px solid rgba(244, 182, 0, 0.75);
    backdrop-filter: none;
    box-shadow: none;
}

.hero-service-label {
    display: inline-flex;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-service-title {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.hero-service-copy {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.65;
}

.slider-btn {
    display: flex;
    background: rgba(7, 24, 41, 0.28);
    border-color: rgba(255, 255, 255, 0.24);
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1400px) {
    :root {
        --header-utility-height: 0px;
    }

    .header-utility {
        display: none;
    }

    .container {
        padding: 0 24px;
    }

    .header-content {
        min-height: var(--header-main-height);
        gap: 1.5rem;
    }

    .logo-img {
        width: 46px;
        height: 46px;
    }

    .logo-name {
        font-size: 1.35rem;
    }

    .logo-tagline {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .nav-list {
        gap: 1.25rem;
    }

    .nav-link {
        font-size: 0.92rem;
    }

    .btn-contact {
        padding: 0.65rem 1.15rem;
    }

    .dropdown-menu {
        min-width: 320px;
    }

    .mega-dropdown-menu {
        min-width: min(560px, calc(100vw - 48px));
    }

    .mega-menu-left {
        min-width: 220px;
    }

    .mega-menu-right {
        min-width: 0;
        padding: 1.5rem;
    }

    .hero {
        height: auto;
        min-height: clamp(620px, calc(100vh - var(--header-total-height)), 720px);
        align-items: flex-start;
    }

    .hero-content--enterprise {
        max-width: 780px;
        padding-top: 3.25rem;
        padding-bottom: 5.75rem;
    }

    .hero-title {
        font-size: clamp(2.05rem, 3.5vw, 3rem);
        max-width: 600px;
    }

    .hero-subtitle {
        max-width: 580px;
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero-service-panel {
        max-width: 560px;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-actions .btn {
        min-width: 0;
        flex: 0 1 auto;
    }

    .slider-btn {
        width: 56px;
        height: 56px;
        font-size: 2.2rem;
    }

    .prev-btn {
        left: 16px;
    }

    .next-btn {
        right: 16px;
    }

    .slider-indicators {
        bottom: 28px;
    }

    .page-hero,
    .csr-page .csr-hero,
    .trust-page .trust-hero {
        margin-top: 0;
    }

    .page-hero {
        min-height: clamp(240px, 32vw, 360px);
    }

    .csr-page .csr-hero,
    .trust-page .trust-hero {
        padding: 3.5rem 20px;
    }

    .sector-grid,
    .delivery-grid,
    .cta-contact-grid,
    .hero-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .story-content,
    .about-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .project-detail-grid,
    .project-detail-grid.reverse,
    .csr-page .csr-section-grid,
    .csr-page .csr-section-grid.reverse {
        flex-direction: column;
    }

    .project-detail-media,
    .csr-page .csr-media {
        min-height: 260px;
    }
}

@media (max-width: 1240px) {
    :root {
        --header-main-height: 74px;
    }

    .nav {
        position: fixed;
        top: var(--header-main-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-main-height));
        background: rgba(7, 24, 41, 0.98);
        transition: left 0.3s ease;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 2rem;
        gap: 0;
    }

    .nav-list li,
    .nav-dropdown,
    .nav-mega-dropdown {
        width: 100%;
    }

    .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 0;
    }

    .btn-contact {
        display: inline-flex;
        justify-content: center;
        width: 100%;
        margin-top: 1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .dropdown-menu,
    .mega-dropdown-menu {
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        min-width: 100%;
        margin-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .dropdown-menu {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 0.5rem;
    }

    .dropdown-item {
        padding: 0.7rem 0.8rem;
        color: var(--white);
        border-left: none;
        border-radius: 10px;
    }

    .dropdown-item:hover,
    .dropdown-item:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        padding-left: 0.8rem;
    }

    .dropdown-item strong {
        color: var(--white);
    }

    .dropdown-item small {
        color: rgba(255, 255, 255, 0.72);
    }

    .mega-dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .mega-menu-left {
        min-width: 0;
        padding: 0.5rem;
        background: transparent;
        border-right: none;
    }

    .mega-menu-right {
        padding: 0.25rem 1rem 1rem;
    }

    .mega-menu-section {
        margin-bottom: 0.35rem;
        padding: 0.85rem 1rem;
        color: var(--white);
        background: rgba(255, 255, 255, 0.04);
        border-left: none;
        border-radius: 10px;
    }

    .mega-menu-section:hover,
    .mega-menu-section.active,
    .mega-menu-section:focus-visible {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
    }

    .mega-link {
        color: rgba(255, 255, 255, 0.82);
    }

    .mega-link:hover,
    .mega-link:focus-visible {
        color: var(--white);
        padding-left: 1rem;
    }

    .mega-link:before {
        background: var(--gold);
    }

    .mega-arrow {
        color: rgba(255, 255, 255, 0.6);
    }
}

@media (max-width: 1024px) {
    .header-utility-content {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: center;
    }

    .sector-grid,
    .delivery-grid,
    .cta-contact-grid,
    .hero-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-main-height: 72px;
    }

    .header-utility {
        display: none;
    }

    .hero-content--enterprise {
        padding-top: 2.5rem;
        padding-bottom: 5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 1.95rem;
        max-width: 12ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        font-size: 0.98rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stat-grid,
    .sector-grid,
    .delivery-grid,
    .cta-contact-grid {
        grid-template-columns: 1fr;
    }

    .capability-strip {
        padding: 1.75rem 0 0.5rem;
    }

    .hero-service-panel {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0.9rem 0 0;
        border-left: none;
        border-top: 1px solid rgba(244, 182, 0, 0.55);
        text-align: left;
    }

    .hero-service-copy {
        font-size: 0.96rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 2rem;
    }

    .prev-btn {
        left: 12px;
    }

    .next-btn {
        right: 12px;
    }

    .slider-indicators {
        bottom: 24px;
    }
}
