/* ================================
   HELIP3 PREMIUM AVIATION DESIGN SYSTEM
   ================================ */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    /* Colors */
    --navy: #071A2E;
    --ocean-teal: #005F5F;
    --gold: #D9A321;
    --bg: #F8FAFC;
    --text-primary: #0F172A;
    --text-muted: #64748B;
    --white: #FFFFFF;
    
    /* Typography */
    --font-poppins: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    
    /* Spacing */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;
    --space-128: 128px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(7, 26, 46, 0.06);
    --shadow-md: 0 4px 16px rgba(7, 26, 46, 0.08);
    --shadow-lg: 0 8px 32px rgba(7, 26, 46, 0.12);
    --shadow-xl: 0 20px 60px rgba(7, 26, 46, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 300ms ease-out;
    --transition-slow: 500ms ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-primary);
}

h1 { font-size: clamp(40px, 7vw, 72px); }
h2 { font-size: clamp(32px, 5vw, 48px); }
h3 { font-size: clamp(24px, 4vw, 32px); }

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-32);
}

.section {
    padding: var(--space-96) 0;
}

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

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ocean-teal);
    margin-bottom: var(--space-16);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-48);
    flex-wrap: wrap;
    gap: var(--space-16);
}

/* ========================================
   BUTTON SYSTEM
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background-color: var(--ocean-teal);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background-color: #004040;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: rgba(7, 26, 46, 0.2);
}

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

.btn-white {
    background-color: var(--white);
    color: var(--text-primary);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

.btn-block {
    width: 100%;
}

/* ========================================
   AUTHENTICATION
   ======================================== */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-64) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean-teal) 100%);
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero/offshore-helicopter.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.auth-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background-color: var(--white);
    padding: var(--space-48);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.auth-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: var(--space-8);
}

.auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: var(--space-32);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-input {
    padding: 14px 16px;
    border: 2px solid rgba(7, 26, 46, 0.1);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: var(--font-inter);
    transition: var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--ocean-teal);
    box-shadow: 0 0 0 3px rgba(0, 95, 95, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
}

.auth-links {
    margin-top: var(--space-32);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    text-align: center;
}

.auth-links a {
    color: var(--ocean-teal);
    font-weight: 600;
}

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

.auth-links p {
    color: var(--text-muted);
    font-size: 16px;
}

.auth-links p a {
    color: var(--ocean-teal);
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: var(--space-16);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-24);
    font-size: 14px;
}

.alert-error {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* ========================================
   DASHBOARD
   ======================================== */
.dashboard-page {
    background-color: #f8fafc;
    min-height: 100vh;
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: #071a2e;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px;
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.sidebar-nav {
    flex: 1;
    padding: 0 16px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.sidebar-link.active {
    background-color: #005f5f;
    color: #fff;
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.dashboard-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    background-color: #fff;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
}

.sidebar-toggle svg {
    width: 24px;
    height: 24px;
}

.header-search {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.header-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.header-search input {
    width: 100%;
    padding: 12px 16px 12px 48px;
    border: 2px solid rgba(7, 26, 46, 0.06);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-inter);
    transition: border-color 0.2s ease;
}

.header-search input:focus {
    outline: none;
    border-color: var(--ocean-teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-notification-btn {
    position: relative;
    padding: 8px;
    color: var(--text-primary);
}

.header-notification-btn svg {
    width: 24px;
    height: 24px;
}

.notification-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 8px;
    height: 8px;
    background-color: #dc2626;
    border-radius: 50%;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--ocean-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-poppins);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-email {
    font-size: 13px;
    color: var(--text-muted);
}

.dashboard-content {
    padding: 32px;
    flex: 1;
}

.dashboard-page-header {
    margin-bottom: 32px;
}

.dashboard-page-title {
    font-size: 28px;
    margin-bottom: 8px;
}

.dashboard-page-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background-color: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-poppins);
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.dashboard-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.table-container {
    background-color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
}

.table-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.link-text {
    color: var(--ocean-teal);
    text-decoration: none;
    font-weight: 600;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background-color: rgba(7, 26, 46, 0.02);
}

.table tbody td {
    padding: 16px 24px;
    border-top: 1px solid rgba(7, 26, 46, 0.06);
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.status-badge.scheduled,
.status-badge.awaiting_crew {
    background-color: #fef3c7;
    color: #d97706;
}

.status-badge.ready_for_pickup,
.status-badge.boarding {
    background-color: #dbeafe;
    color: #2563eb;
}

.status-badge.in_flight,
.status-badge.approaching_destination {
    background-color: #d1fae5;
    color: #16a34a;
}

.status-badge.completed {
    background-color: #e0e7ff;
    color: #4f46e5;
}

.status-badge.cancelled {
    background-color: #fee2e2;
    color: #dc2626;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(7, 26, 46, 0.1);
}

.btn-outline:hover {
    border-color: var(--ocean-teal);
    color: var(--ocean-teal);
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
    }
    
    .dashboard-main {
        margin-left: 0;
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .header-user .user-info {
        display: none;
    }
}

/* ========================================
   CARD SYSTEM
   ======================================== */
.card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-32);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.card h4 {
    margin-bottom: var(--space-16);
    font-size: 20px;
}

.card p {
    color: var(--text-muted);
    font-size: 16px;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-24) 0;
    transition: var(--transition-base);
    background-color: rgba(7, 26, 46, 0.95);
    backdrop-filter: blur(20px);
}

.header.scrolled {
    background-color: rgba(7, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-16) 0;
}

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

.logo {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo svg {
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: var(--space-32);
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-24);
}

.language-dropdown {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: white;
    font-family: var(--font-inter);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-base);
}

.language-toggle:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.language-toggle svg {
    transition: var(--transition-base);
}

.language-toggle.open svg {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(7, 26, 46, 0.15), 0 2px 8px rgba(7, 26, 46, 0.08);
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.96);
    transition: var(--transition-base);
    z-index: 1001;
    overflow: hidden;
    border: 1px solid rgba(7, 26, 46, 0.05);
}

.language-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
    position: relative;
}

.language-option:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(7, 26, 46, 0.06);
}

.language-option:hover {
    background: rgba(0, 95, 95, 0.06);
    color: var(--ocean-teal);
}

.language-option svg {
    flex-shrink: 0;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--ocean-teal) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 150px;
    padding-bottom: 180px;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 26, 46, 0.7) 0%, rgba(7, 26, 46, 0.2) 50%, transparent 100%);
    z-index: 1;
}



.hero-text {
    max-width: 600px;
}

.hero-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-16);
}

.hero-title {
    font-family: var(--font-poppins);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
    margin-bottom: var(--space-16);
}

.hero-title-last {
    color: var(--ocean-teal);
}

.hero-title span {
    display: block;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-32);
}

.hero-buttons {
    display: flex;
    gap: var(--space-16);
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-section {
    padding: var(--space-32) 0;
    position: relative;
    z-index: 3;
    margin-top: -100px;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
    background: rgba(7, 26, 46, 0.85);
    padding: var(--space-24);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.trust-card {
    display: flex;
    gap: var(--space-16);
    align-items: center;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-card h4 {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--white);
}

.trust-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ========================================
   FLEET
   ======================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
}

.fleet-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.fleet-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.06);
}

.fleet-card-badge {
    position: absolute;
    top: var(--space-16);
    left: var(--space-16);
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(7, 26, 46, 0.9);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.fleet-card-content {
    padding: var(--space-32);
}

.fleet-card-content h3 {
    font-family: var(--font-poppins);
    font-size: 22px;
    margin-bottom: var(--space-12);
}

.fleet-card-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: var(--space-24);
}

.fleet-spec {
    display: flex;
    gap: var(--space-16);
    padding-bottom: var(--space-16);
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
    margin-bottom: var(--space-24);
}

.fleet-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fleet-spec-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.fleet-spec-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.fleet-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ocean-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fleet-link:hover {
    color: var(--gold);
}

/* ========================================
   STATS
   ======================================== */
.stats-section {
    position: relative;
    padding: var(--space-48) 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--ocean-teal) 0%, var(--navy) 100%);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.stats-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 26, 46, 0.85) 0%, rgba(0, 95, 95, 0.85) 100%);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
}

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-family: var(--font-poppins);
    font-size: 48px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   OPERATIONS
   ======================================== */
.operations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
}

.operation-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-32);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.operation-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.operation-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0, 95, 95, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-24);
}

.operation-item h4 {
    font-family: var(--font-poppins);
    font-size: 20px;
    margin-bottom: var(--space-12);
}

.operation-item p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: var(--space-24);
}

.operation-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ocean-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.operation-link:hover {
    color: var(--gold);
}

/* ========================================
   SAFETY
   ======================================== */
.safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
}

.safety-content .section-title {
    margin-bottom: var(--space-24);
}

.safety-content > p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: var(--space-32);
}

.safety-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    margin-bottom: var(--space-32);
}

.safety-feature {
    display: flex;
    gap: var(--space-16);
    align-items: flex-start;
    padding: var(--space-24);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(7, 26, 46, 0.06);
    box-shadow: var(--shadow-sm);
}

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

.safety-feature h4 {
    font-family: var(--font-poppins);
    font-size: 16px;
    margin-bottom: var(--space-8);
}

.safety-feature p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.safety-image-container {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.safety-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================================
   PAGE CONTENT
   ======================================== */
.page-content {
    padding-top: 140px;
    padding-bottom: var(--space-96);
}

.page-title {
    font-family: var(--font-poppins);
    font-size: clamp(40px, 7vw, 72px);
    margin-bottom: var(--space-24);
}

.page-intro {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: var(--space-64);
}

.page-header {
    margin-bottom: var(--space-64);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-32);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-32);
}

/* ========================================
   SHOWCASE ITEM
   ======================================== */
.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-64);
    align-items: center;
    padding: var(--space-64) 0;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
}

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

.showcase-image {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background-color: rgba(7, 26, 46, 0.06);
}

.showcase-content h3 {
    margin-bottom: var(--space-16);
}

.showcase-content p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.7;
}

/* ========================================
   FAQ
   ======================================== */
.faq-item {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-16);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-24);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--ocean-teal);
}

.faq-question span {
    font-size: 24px;
    line-height: 1;
    transition: var(--transition-base);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-base);
    padding: 0 var(--space-24);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 var(--space-24) var(--space-24);
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ========================================
   FORMS
   ======================================== */
.form-group {
    margin-bottom: var(--space-24);
}

.form-label {
    display: block;
    margin-bottom: var(--space-8);
    font-size: 15px;
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(7, 26, 46, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--font-inter);
    font-size: 16px;
    background-color: var(--white);
    transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--ocean-teal);
    box-shadow: 0 0 0 3px rgba(0, 95, 95, 0.1);
}

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

/* ========================================
   PRE-FOOTER
   ======================================== */
.prefooter {
    background: linear-gradient(135deg, #E8ECEF 0%, #FFFFFF 100%);
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.prefooter-container {
    display: grid;
    grid-template-columns: 60% 40%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 420px;
}

.prefooter-left {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.prefooter-label {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C89B3C;
    margin-bottom: 16px;
}

.prefooter-heading {
    font-family: var(--font-poppins);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    color: #052A34;
    margin-bottom: 24px;
}

.prefooter-text {
    font-family: var(--font-inter);
    font-size: 17px;
    color: #4A5A64;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 40px;
}

.prefooter-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.prefooter-card {
    background: white;
    border: 1px solid rgba(5, 42, 52, 0.1);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(5, 42, 52, 0.06);
    transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prefooter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(5, 42, 52, 0.12);
    border-color: #C89B3C;
}

.prefooter-card-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(5, 42, 52, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #052A34;
    margin-bottom: 20px;
    transition: all 300ms ease;
}

.prefooter-card:hover .prefooter-card-icon {
    border-color: #C89B3C;
    color: #C89B3C;
    background: rgba(200, 155, 60, 0.05);
}

.prefooter-card-title {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 700;
    color: #052A34;
    margin-bottom: 10px;
}

.prefooter-card-desc {
    font-family: var(--font-inter);
    font-size: 15px;
    color: #5A6A74;
    line-height: 1.6;
    margin-bottom: 20px;
}

.prefooter-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    color: #052A34;
    transition: all 250ms ease;
}

.prefooter-card-cta svg {
    transition: transform 250ms ease;
}

.prefooter-card-cta:hover {
    color: #C89B3C;
}

.prefooter-card-cta:hover svg {
    transform: translateX(4px);
}

.prefooter-right {
    position: relative;
    overflow: hidden;
}

.prefooter-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2000&auto=format&fit=crop') center / cover no-repeat;
}

.prefooter-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #E8ECEF 0%, transparent 20%),
                linear-gradient(to top, rgba(5, 42, 52, 0.2), transparent 40%);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, #062B34 0%, #041E25 100%);
    color: #FFFFFF;
    padding: 96px 0 48px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/backgrounds/footer-bg.jpg') center / cover no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-logo {
    font-family: var(--font-poppins);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-logo span {
    background: linear-gradient(90deg, #FFFFFF 0%, #E5E7EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    line-height: 1.7;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 32px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social-link:hover {
    background: rgba(200, 155, 60, 0.2);
    color: #C89B3C;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(200, 155, 60, 0.2);
}

.footer-heading {
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-links li a:hover {
    color: #C89B3C;
    transform: translateX(4px);
}

.footer-contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #C89B3C;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 250ms ease;
}

.footer-contact-item a:hover {
    color: #C89B3C;
}

.footer-contact-item-available {
    color: #C89B3C;
    font-weight: 600;
}

.footer-contact-item-available svg {
    color: #C89B3C;
}

.footer-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #C89B3C 0%, #A77B2E 100%);
    color: #062B34;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 250ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(200, 155, 60, 0.3);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(200, 155, 60, 0.4);
    background: linear-gradient(135deg, #D8AB4C 0%, #B78B3E 100%);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 32px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 500;
    transition: color 250ms ease;
}

.footer-bottom-links a:hover {
    color: #C89B3C;
}

/* Animations */
.footer {
    animation: footerFadeIn 600ms ease-out;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 48px;
    }
    
    .footer-col-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 72px 0 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
    
    .footer-col-brand {
        grid-column: 1 / -1;
    }
    
    .footer-col-contact {
        grid-column: 1 / -1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 56px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-heading {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col-contact {
        text-align: center;
    }
}

/* PRE-FOOTER RESPONSIVE */
@media (max-width: 1200px) {
    .prefooter-container {
        grid-template-columns: 1fr;
    }
    
    .prefooter-right {
        min-height: 320px;
    }
    
    .prefooter-image-container {
        position: relative;
    }
    
    .prefooter-image-overlay {
        background: linear-gradient(to bottom, rgba(232, 236, 239, 0.9) 0%, transparent 40%),
                    linear-gradient(to top, rgba(5, 42, 52, 0.15), transparent 50%);
    }
}

@media (max-width: 900px) {
    .prefooter-left {
        padding: 56px 32px;
    }
    
    .prefooter-heading {
        font-size: 34px;
    }
    
    .prefooter-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .prefooter {
        min-height: auto;
    }
    
    .prefooter-left {
        padding: 48px 24px;
    }
    
    .prefooter-heading {
        font-size: 28px;
    }
    
    .prefooter-text {
        font-size: 15px;
    }
    
    .prefooter-right {
        min-height: 240px;
    }
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: var(--space-16) var(--space-24);
    border-radius: var(--radius-md);
    font-size: 15px;
    margin-bottom: var(--space-16);
}

.alert-success {
    background-color: rgba(217, 163, 33, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(217, 163, 33, 0.3);
}

.alert-error {
    background-color: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .operations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav {
        display: none;
    }

    .trust-indicators,
    .fleet-grid,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .safety-grid,
    .showcase-item,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators,
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ========================================
   HAMBURGER MENU & MOBILE NAV
   ======================================== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #061A2D;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 32px rgba(0,0,0,0.3);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-nav {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.mobile-menu-link {
    display: block;
    padding: 16px 0;
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s ease;
}

.mobile-menu-link:hover {
    color: #D9A321;
    padding-left: 8px;
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.language-dropdown-mobile {
    position: relative;
}

.language-toggle-mobile {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition-base);
}

.language-menu-mobile {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(7, 26, 46, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.96);
    transition: var(--transition-base);
    overflow: hidden;
}

.language-menu-mobile.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.language-option-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.language-option-mobile:hover {
    background: rgba(0, 95, 95, 0.06);
    color: var(--ocean-teal);
}

@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .header-inner .logo img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: clamp(28px, 10vw, 48px); }
    h2 { font-size: clamp(24px, 8vw, 36px); }
    h3 { font-size: clamp(20px, 6vw, 28px); }
    
    .section {
        padding: 48px 0;
    }
    
    .card {
        padding: 20px;
    }
    
    .btn {
        min-height: 44px;
        font-size: 15px;
    }
    
    .form-input,
    .form-textarea {
        min-height: 44px;
        font-size: 16px;
    }
    
    .hero-content {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    
    .hero-description {
        font-size: 16px;
    }
}

/* ========================================
   RESPONSIVE GRID SYSTEM
   ======================================== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-32);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-32);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-32);
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-32);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-24);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-24);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-64);
    align-items: center;
}

.showcase-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-64);
    align-items: center;
}

/* ========================================
   RESPONSIVE TYPOGRAPHY
   ======================================== */
body {
    font-size: clamp(14px, 2vw, 18px);
}

.hero-title {
    font-size: clamp(32px, 8vw, 72px);
}

.page-title {
    font-size: clamp(32px, 7vw, 64px);
}

.section-title {
    font-size: clamp(24px, 5vw, 48px);
}

.prefooter-heading {
    font-size: clamp(24px, 5vw, 42px);
}

/* ========================================
   RESPONSIVE SPACING
   ======================================== */
:root {
    --space-8: clamp(4px, 1vw, 8px);
    --space-16: clamp(8px, 2vw, 16px);
    --space-24: clamp(12px, 3vw, 24px);
    --space-32: clamp(16px, 4vw, 32px);
    --space-48: clamp(24px, 6vw, 48px);
    --space-64: clamp(32px, 8vw, 64px);
    --space-96: clamp(48px, 12vw, 96px);
    --space-128: clamp(64px, 16vw, 128px);
}

/* ========================================
   RESPONSIVE TABLES
   ======================================== */
.table-container {
    overflow-x: auto;
}

.table {
    min-width: 800px;
}

@media (max-width: 768px) {
    .table {
        display: block;
        min-width: 100%;
    }
    
    .table thead {
        display: none;
    }
    
    .table tbody {
        display: block;
    }
    
    .table tbody tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid rgba(7, 26, 46, 0.08);
        padding: var(--space-16) 0;
    }
    
    .table tbody td {
        display: flex;
        justify-content: space-between;
        padding: var(--space-8) 0;
        border: none;
        font-size: 14px;
    }
    
    .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
    }
}
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-16);
    }

    .trust-indicators,
    .fleet-grid,
    .operations-grid,
    .stats-grid,
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* ========================================
   SAFETY BANNER (PREMIUM)
   ======================================== */
.safety-banner {
    background: linear-gradient(135deg, #E9EDEE 0%, #F4F7F8 50%, #F9FBFB 100%);
    min-height: 420px;
    position: relative;
    overflow: hidden;
}

.safety-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 420px;
    position: relative;
}

.safety-banner-left {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.safety-label {
    font-family: var(--font-inter);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C89B3C;
    margin-bottom: 16px;
}

.safety-heading {
    font-family: var(--font-poppins);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.05;
    color: #062B34;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.safety-text {
    font-family: var(--font-inter);
    font-size: 16px;
    color: #455560;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 44px;
}

.safety-cards {
    display: flex;
    gap: 28px;
    align-items: stretch;
}

.safety-card {
    background: #FFFFFF;
    border: 1px solid rgba(6, 43, 52, 0.12);
    border-radius: 14px;
    padding: 28px 28px;
    box-shadow: 0 3px 20px rgba(6, 43, 52, 0.05);
    transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    width: 320px;
    display: flex;
    flex-direction: column;
}

.safety-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 38px rgba(6, 43, 52, 0.12);
    border-color: #C89B3C;
}

.safety-card-icon {
    width: 50px;
    height: 50px;
    border: 1.5px solid rgba(6, 43, 52, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #062B34;
    margin-bottom: 18px;
    transition: all 300ms ease;
}

.safety-card:hover .safety-card-icon {
    border-color: #C89B3C;
    color: #C89B3C;
    background: rgba(200, 155, 60, 0.06);
}

.safety-card-title {
    font-family: var(--font-poppins);
    font-size: 17px;
    font-weight: 700;
    color: #062B34;
    margin-bottom: 10px;
}

.safety-card-desc {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #4A5A66;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.safety-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: #062B34;
    transition: all 250ms ease;
}

.safety-card-cta svg {
    transition: transform 250ms ease;
}

.safety-card-cta:hover {
    color: #C89B3C;
}

.safety-card-cta:hover svg {
    transform: translateX(5px);
}

.safety-banner-right {
    position: relative;
    overflow: hidden;
}

.safety-banner-image {
    position: absolute;
    top: -10px;
    left: -40px;
    right: 0;
    bottom: -10px;
    background: url('https://images.unsplash.com/photo-1587474260584-136574528ed5?q=80&w=2000&auto=format&fit=crop') center / cover no-repeat;
    z-index: 0;
}

.safety-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #E9EDEE 0%, rgba(233, 237, 238, 0.65) 10%, transparent 35%),
                linear-gradient(to bottom, rgba(6, 43, 52, 0.08), transparent 40%);
    pointer-events: none;
}


/* ========================================
   PREMIUM FOOTER
   ======================================== */
.premium-footer {
    background: linear-gradient(180deg, #062B34 0%, #041E25 100%);
    color: #FFFFFF;
    padding: 90px 0 60px;
    position: relative;
    overflow: hidden;
}

.premium-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.premium-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 52px;
}

.premium-footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #FFFFFF;
}

.premium-footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.premium-footer-logo-main {
    font-family: var(--font-poppins);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.premium-footer-logo-sub {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.4);
}

.premium-footer-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
}

.premium-footer-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.premium-footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-footer-social-link:hover {
    background: rgba(200, 155, 60, 0.22);
    color: #C89B3C;
    transform: translateY(-2px) scale(1.06);
}

.premium-footer-heading {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.45);
}

.premium-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.premium-footer-links li a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    display: inline-block;
    transition: all 250ms cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-footer-links li a:hover {
    color: #C89B3C;
    transform: translateX(3px);
}

.premium-footer-contact-info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.premium-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.premium-footer-contact-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.4);
}

.premium-footer-contact-item a {
    color: rgba(255, 255, 255, 0.68);
    transition: color 250ms ease;
}

.premium-footer-contact-item a:hover {
    color: #C89B3C;
}

.premium-footer-contact-item-available {
    color: #C89B3C;
    font-weight: 600;
}

.premium-footer-contact-item-available svg {
    color: #C89B3C;
}

.premium-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-footer-copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 500;
}

.premium-footer-bottom-links {
    display: flex;
    gap: 28px;
}

.premium-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    font-weight: 500;
    transition: color 250ms ease;
}

.premium-footer-bottom-links a:hover {
    color: #C89B3C;
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .safety-banner-container {
        grid-template-columns: 1fr;
    }

    .safety-banner-right {
        min-height: 360px;
        order: -1;
    }

    .safety-banner-image {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .safety-image-overlay {
        background: linear-gradient(to bottom, rgba(233, 237, 238, 0.92) 0%, transparent 35%),
                    linear-gradient(to bottom, transparent 60%, rgba(6, 43, 52, 0.1) 100%);
    }

    .premium-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 52px;
    }
}

@media (max-width: 900px) {
    .safety-banner-left {
        padding: 64px 32px;
    }

    .safety-heading {
        font-size: 40px;
    }

    .safety-cards {
        flex-direction: column;
        gap: 20px;
    }

    .safety-card {
        width: 100%;
    }

    .premium-footer {
        padding: 72px 0 48px;
    }

    .premium-footer-bottom {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .premium-footer-bottom-links {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 600px) {
    .safety-banner-left {
        padding: 48px 24px;
    }

    .safety-heading {
        font-size: 32px;
    }

    .safety-text {
        font-size: 15px;
    }

    .premium-footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .premium-footer-logo {
        justify-content: center;
    }

    .premium-footer-desc {
        text-align: center;
        margin: 0 auto;
    }

    .premium-footer-social {
        justify-content: center;
    }

    .premium-footer-heading {
        text-align: center;
    }

    .premium-footer-links {
        align-items: center;
    }

    .premium-footer-contact-info {
        align-items: center;
    }

    .premium-footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .premium-footer-col-contact {
        text-align: center;
    }
}

    .page-content {
        padding-top: 120px;
    }
}

/* ========================================
   DASHBOARD LAYOUT
   ======================================== */
.dashboard-page {
    background-color: #F1F5F9;
}

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background-color: var(--navy);
    padding: var(--space-24);
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    transition: transform var(--transition-base);
}

.sidebar-logo {
    font-family: var(--font-poppins);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    margin-bottom: var(--space-32);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
}

.sidebar-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
}

.sidebar-link.active {
    background-color: var(--ocean-teal);
    color: white;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 16px 0;
}

.dashboard-main {
    flex: 1;
    margin-left: 280px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dashboard-header {
    background-color: white;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(7, 26, 46, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.sidebar-toggle:hover {
    background-color: #F1F5F9;
}

.sidebar-toggle svg {
    width: 24px;
    height: 24px;
}

.header-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background-color: #F8FAFC;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(7, 26, 46, 0.06);
}

.header-search svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.header-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-notification-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.header-notification-btn:hover {
    background-color: #F1F5F9;
}

.header-notification-btn svg {
    width: 20px;
    height: 20px;
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #DC2626;
}

.header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--ocean-teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 14px;
    font-weight: 800;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.user-email {
    font-size: 12px;
    color: var(--text-muted);
}

.dashboard-content {
    padding: 32px;
    flex: 1;
}

.dashboard-page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.dashboard-page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.dashboard-grid {
    display: grid;
    gap: 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card {
    background-color: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-value {
    font-family: var(--font-poppins);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.table-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.table-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
}

.table th {
    font-weight: 600;
    color: var(--text-muted);
    background-color: #F8FAFC;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
}

.table td {
    color: var(--text-primary);
    border-bottom: 1px solid rgba(7, 26, 46, 0.04);
}

.table tr:hover td {
    background-color: #F8FAFC;
}

.status-badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.status-badge.scheduled {
    background-color: #EFF6FF;
    color: #2563EB;
}

.status-badge.active {
    background-color: #F0FDF4;
    color: #16A34A;
}

.status-badge.completed {
    background-color: #EFF6FF;
    color: #2563EB;
}

.status-badge.cancelled {
    background-color: #FEF2F2;
    color: #DC2626;
}

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: block;
    }

    .dashboard-main {
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-header {
        padding: 12px 16px;
    }

    .dashboard-content {
        padding: 20px 16px;
    }

    .user-info {
        display: none;
    }

    .table th:nth-child(4),
    .table td:nth-child(4),
    .table th:nth-child(5),
    .table td:nth-child(5) {
        display: none;
    }
}

/* Dashboard Page Header */
.dashboard-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.dashboard-page-header h1 {
    margin-bottom: 4px;
}

/* Stat Card with Icon */
.stat-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Link Text */
.link-text {
    font-family: var(--font-inter);
    transition: color 0.2s;
}

.link-text:hover {
    color: var(--gold);
}

/* Filter Tab */
.filter-tab {
    font-family: var(--font-inter);
    transition: all 0.2s;
}

.filter-tab:hover {
    color: var(--ocean-teal);
    background: rgba(0, 95, 95, 0.05);
}

.filter-tab.active {
    background: var(--ocean-teal);
    color: white;
}

/* Small Button */
.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

/* Status Badge Colors */
.status-badge.pending {
    background: #FEF3C7;
    color: #D97706;
}

.status-badge.confirmed {
    background: #D1FAE5;
    color: #059669;
}

.status-badge.cancelled {
    background: #FEE2E2;
    color: #DC2626;
}

.status-badge.scheduled {
    background: #DBEAFE;
    color: #2563EB;
}

.status-badge.boarding {
    background: #FCE7F3;
    color: #DB2777;
}

.status-badge.in_flight {
    background: #F0FDF4;
    color: #16A34A;
}

.status-badge.approaching_destination {
    background: #FEF3C7;
    color: #D97706;
}

.status-badge.ready_for_pickup {
    background: #E0E7FF;
    color: #4F46E5;
}

.status-badge.awaiting_crew {
    background: #F3E8FF;
    color: #9333EA;
}

/* ========================================
   ADMIN FORMS - ENHANCED
   ======================================== */
.admin-form {
    width: 100%;
}

.admin-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.admin-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
}

.admin-page-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.admin-page-title {
    font-family: var(--font-poppins);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    background-color: var(--ocean-teal);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 95, 95, 0.15);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 95, 95, 0.2);
    background-color: #004747;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 95, 95, 0.15);
}

.btn-secondary {
    background-color: white;
    color: var(--text-primary);
    border-color: #E2E8F0;
    box-shadow: 0 1px 4px rgba(7, 26, 46, 0.04);
}

.btn-secondary:hover {
    background-color: #F1F5F9;
    border-color: #CBD5E1;
}

.btn-small {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 10px;
}

.admin-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.admin-form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-form-row .admin-form-group {
    margin-bottom: 0;
}

.admin-form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    text-transform: none;
}

/* Complete reset and customization for all form elements */
.admin-form-input,
.admin-form-select,
.admin-form-textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 16px 18px;
    min-height: 54px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    background-color: #FFFFFF;
    color: var(--text-primary);
    transition: all 0.2s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}

/* Placeholder styles */
.admin-form-input::placeholder,
.admin-form-textarea::placeholder {
    color: #94A3B8;
    opacity: 1;
}

/* Hover state */
.admin-form-input:hover,
.admin-form-select:hover,
.admin-form-textarea:hover {
    border-color: #CBD5E1;
}

/* Focus state */
.admin-form-input:focus,
.admin-form-select:focus,
.admin-form-textarea:focus {
    border-color: var(--ocean-teal);
    box-shadow: 0 0 0 4px rgba(0, 95, 95, 0.1);
    background-color: rgba(0, 95, 95, 0.02);
}

/* Disabled state */
.admin-form-input:disabled,
.admin-form-select:disabled,
.admin-form-textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #F1F5F9;
}

/* Custom Select Styling */
.admin-form-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%230F172A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px 20px;
    padding-right: 52px;
    cursor: pointer;
    text-overflow: ellipsis;
}

/* Fix for Firefox select dropdown arrow */
.admin-form-select::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/* Textarea specific */
.admin-form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Number input specific - hide spinners but keep functionality */
.admin-form-input[type="number"] {
    -moz-appearance: textfield;
}
.admin-form-input[type="number"]::-webkit-outer-spin-button,
.admin-form-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Date/Time input specific styling */
.admin-form-input[type="date"],
.admin-form-input[type="time"],
.admin-form-input[type="datetime-local"] {
    position: relative;
}
/* Customize calendar icon for Webkit browsers */
.admin-form-input[type="date"]::-webkit-calendar-picker-indicator,
.admin-form-input[type="time"]::-webkit-calendar-picker-indicator,
.admin-form-input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
    padding: 4px;
    transition: opacity 0.2s;
}
.admin-form-input[type="date"]:focus::-webkit-calendar-picker-indicator,
.admin-form-input[type="time"]:focus::-webkit-calendar-picker-indicator,
.admin-form-input[type="datetime-local"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.admin-form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(7, 26, 46, 0.06);
    align-items: center;
}

.admin-form-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #F1F5F9;
}

.admin-form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.admin-form-section-title {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-form-section-title::before {
    content: '';
    width: 5px;
    height: 24px;
    background-color: var(--ocean-teal);
    border-radius: 3px;
    flex-shrink: 0;
}

/* Admin Filters */
.admin-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-filter-btn {
    padding: 10px 20px;
    border: none;
    background-color: white;
    border-radius: var(--radius-lg);
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.admin-filter-btn:hover {
    color: var(--ocean-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.admin-filter-btn.active {
    background-color: var(--ocean-teal);
    color: white;
}

/* Admin Table */
.admin-table-container {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    background-color: rgba(7, 26, 46, 0.02);
    border-bottom: 2px solid rgba(7, 26, 46, 0.06);
}

.admin-table tbody td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(7, 26, 46, 0.04);
    vertical-align: middle;
}

.admin-table tbody tr:hover td {
    background-color: rgba(7, 26, 46, 0.02);
}

.admin-table-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-form-row {
        grid-template-columns: 1fr;
    }

    .admin-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-card {
        padding: 24px;
    }
    
    .admin-form-actions {
        flex-direction: column;
    }
    
    .admin-form-actions .btn {
        width: 100%;
    }
}

.status-badge.draft {
    background: #F3F4F6;
    color: #64748B;
}

.status-badge.generated {
    background: #FEF3C7;
    color: #D97706;
}

.status-badge.awaiting_approval {
    background: #E0E7FF;
    color: #4F46E5;
}

/* Notification Item Hover */
.notification-item:hover {
    background: #F8FAFC;
}

/* Toggle Switch Checked */
input:checked + span {
    background-color: var(--ocean-teal);
}

input:checked + span span {
    transform: translateX(24px);
}

/* Profile Photo Hover */
.profile-photo-edit:hover {
    background: #c9931a;
    transform: scale(1.05);
}

/* Responsive Dashboard Grid */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================
   ADMIN CONTROL CENTER
   ======================================== */
.admin-page {
    background-color: #F1F5F9;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 300px;
    background: linear-gradient(180deg, var(--navy) 0%, #061628 100%);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    transition: transform var(--transition-base);
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-logo {
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo-badge {
    background: var(--gold);
    color: var(--text-primary);
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
}

.sidebar-close svg {
    width: 20px;
    height: 20px;
}

.admin-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.nav-section {
    margin-bottom: 16px;
}

.nav-section.nav-bottom {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 12px 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.nav-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
}

.nav-link.active {
    background: linear-gradient(135deg, var(--ocean-teal) 0%, #004040 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 95, 95, 0.3);
}

.nav-link.nav-link-danger {
    color: #FCA5A5;
}

.nav-link.nav-link-danger:hover {
    background-color: rgba(252, 165, 165, 0.1);
}

.admin-main {
    flex: 1;
    margin-left: 300px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-header {
    background-color: white;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(7, 26, 46, 0.04);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-header .sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
}

.admin-header .sidebar-toggle:hover {
    background-color: #F1F5F9;
}

.admin-header .sidebar-toggle svg {
    width: 24px;
    height: 24px;
}

.admin-header .header-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background-color: #F8FAFC;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(7, 26, 46, 0.06);
}

.admin-header .header-search svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.admin-header .header-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-inter);
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
}

.admin-header .header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-header .notification-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.admin-header .notification-btn:hover {
    background-color: #F1F5F9;
}

.admin-header .notification-btn svg {
    width: 20px;
    height: 20px;
}

.admin-header .notification-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #DC2626;
    color: white;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-header .header-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header .user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-teal) 0%, #004040 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 800;
}

.admin-header .user-info {
    display: flex;
    flex-direction: column;
}

.admin-header .user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.admin-header .user-role {
    font-size: 12px;
    color: var(--text-muted);
}

.admin-content {
    padding: 32px;
    flex: 1;
}

.admin-page-header {
    margin-bottom: 32px;
}

.admin-page-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.admin-page-subtitle {
    font-size: 15px;
    color: var(--text-muted);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.admin-stat-card {
    background: white;
    padding: 28px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(7, 26, 46, 0.04);
    position: relative;
    overflow: hidden;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-teal) 0%, var(--gold) 100%);
}

.admin-stat-card .stat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.admin-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 95, 95, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-stat-card .stat-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ocean-teal);
}

.admin-stat-card .stat-value {
    font-family: var(--font-poppins);
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.admin-stat-card .stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.admin-stat-card .stat-change {
    font-size: 13px;
    font-weight: 600;
    color: #16A34A;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.admin-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(7, 26, 46, 0.04);
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
}

.admin-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    font-weight: 700;
    color: var(--text-muted);
    background-color: #F8FAFC;
    border-bottom: 1px solid rgba(7, 26, 46, 0.06);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table td {
    color: var(--text-primary);
    border-bottom: 1px solid rgba(7, 26, 46, 0.04);
}

.admin-table tr:hover td {
    background-color: #F8FAFC;
}

.admin-table-actions {
    display: flex;
    gap: 8px;
}

.admin-table-actions .btn {
    padding: 6px 12px;
    font-size: 12px;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
}

.admin-badge.primary {
    background-color: rgba(0, 95, 95, 0.1);
    color: var(--ocean-teal);
}

.admin-badge.success {
    background-color: rgba(22, 163, 74, 0.1);
    color: #16A34A;
}

.admin-badge.warning {
    background-color: rgba(217, 163, 33, 0.1);
    color: #D97706;
}

.admin-badge.danger {
    background-color: rgba(220, 38, 38, 0.1);
    color: #DC2626;
}

.admin-badge.info {
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563EB;
}

.admin-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-filter-btn {
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(7, 26, 46, 0.1);
    background: white;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.admin-filter-btn:hover {
    border-color: var(--ocean-teal);
    color: var(--ocean-teal);
}

.admin-filter-btn.active {
    background: var(--ocean-teal);
    border-color: var(--ocean-teal);
    color: white;
}

/* Responsive Admin */
@media (max-width: 1200px) {
    .admin-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
        box-shadow: 4px 0 20px rgba(7, 26, 46, 0.2);
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: block;
    }

    .admin-header .sidebar-toggle {
        display: block;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-header {
        padding: 12px 16px;
    }

    .admin-content {
        padding: 20px 16px;
    }

    .admin-header .header-search {
        display: none;
    }

    .admin-header .user-info {
        display: none;
    }

    .admin-table th:nth-child(4),
    .admin-table td:nth-child(4),
    .admin-table th:nth-child(5),
    .admin-table td:nth-child(5),
    .admin-table th:nth-child(6),
    .admin-table td:nth-child(6) {
        display: none;
    }
}

