:root {
    --bg-color: #03150e;
    --primary-green: #9be998;
    --brand-green: #00c283;
    --text-white: #ffffff;
    --text-muted: #bdc5c2;
    --card-bg: #e6e3da;
    --card-bg-light: #f4f0e6;
    --card-text: #03150e;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, .bebas {
    font-family: var(--font-heading);
    font-weight: normal;
    text-transform: uppercase;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(3, 21, 14, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 194, 131, 0.2);
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-green);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--brand-green);
}

/* Sections Base */
section {
    min-height: 100vh;
    padding: calc(var(--nav-height) + 60px) 60px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

.page-num {
    position: absolute;
    bottom: 40px;
    right: 60px;
    width: 40px;
    height: 40px;
    background-color: var(--brand-green);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
}

.subtitle {
    color: var(--brand-green);
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Hero Section */
#hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

#hero .content {
    flex: 1;
    z-index: 10;
}

#hero h1 {
    font-size: 8rem;
    line-height: 0.85;
    color: var(--primary-green);
    margin-bottom: 20px;
}

#hero h1 span {
    color: var(--brand-green);
}

#hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--bg-color);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background-color: var(--brand-green);
    box-shadow: 0 10px 20px rgba(0, 194, 131, 0.3);
}

#hero .images-cluster {
    flex: 1;
    position: relative;
    height: 600px;
}

#hero .images-cluster img {
    position: absolute;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s;
}

#hero .images-cluster .img-1 { width: 280px; height: 380px; top: 0; right: 0; z-index: 3; }
#hero .images-cluster .img-2 { width: 320px; height: 220px; top: 180px; right: 280px; z-index: 4; }
#hero .images-cluster .img-3 { width: 350px; height: 250px; bottom: -20px; right: 80px; z-index: 1; }
#hero .images-cluster .img-4 { width: 220px; height: 300px; bottom: -80px; right: -20px; z-index: 2; }

/* Content Layouts */
.content-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.text-col { flex: 1.2; }
.img-col { flex: 1; }

.section-header h2 {
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 30px;
    color: var(--primary-green);
}

/* Stats */
.stats-container {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.stat-card {
    background-color: var(--card-bg-light);
    color: var(--card-text);
    padding: 40px 20px;
    flex: 1;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 4.5rem;
    color: var(--bg-color);
    margin-bottom: 10px;
}

.stat-card p {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: rgba(10, 41, 32, 0.6);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(0, 194, 131, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(10, 41, 32, 1);
    border-color: var(--brand-green);
    transform: translateY(-5px);
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    #hero h1 { font-size: 6rem; }
    .section-header h2 { font-size: 4rem; }
    .nav-container { padding: 0 40px; }
}

@media (max-width: 992px) {
    .content-row { flex-direction: column; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .fleet-grid { grid-template-columns: repeat(3, 1fr); }
    #hero { flex-direction: column; text-align: center; }
    #hero .images-cluster { display: none; }
    #hero p { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
    :root { --nav-height: 70px; }
    section { padding: 100px 20px 60px; }
    
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(3, 21, 14, 0.98);
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        text-align: center;
        border-bottom: 1px solid var(--brand-green);
    }
    
    .navbar .nav-links.active { display: flex; }
    .menu-toggle { display: block; }
    
    #hero h1 { font-size: 4rem; }
    .section-header h2 { font-size: 3rem; }
    .stat-card h3 { font-size: 3rem; }
    
    .stats-container { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    
    .img-col img { height: 300px !important; }
}

/* Utility */
.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-color);
    z-index: -2;
}

.dots-top, .dots-bottom {
    position: fixed;
    left: 0; width: 100%; height: 300px;
    background-image: radial-gradient(circle, #02c389 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}
.dots-top { top: 0; }
.dots-bottom { bottom: 0; }

/* Animation Classes */
section .content, 
section .content-row, 
section .stats-container, 
section .section-header,
section .mission-vision,
.services-grid > *,
.fleet-grid > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

section.visible .content, 
section.visible .content-row, 
section.visible .stats-container, 
section.visible .section-header,
section.visible .mission-vision,
section.visible .services-grid > *,
section.visible .fleet-grid > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grid items */
.services-grid > *:nth-child(2) { transition-delay: 0.1s; }
.services-grid > *:nth-child(3) { transition-delay: 0.2s; }
.services-grid > *:nth-child(4) { transition-delay: 0.3s; }
.services-grid > *:nth-child(5) { transition-delay: 0.4s; }
.services-grid > *:nth-child(6) { transition-delay: 0.5s; }
