:root {
    --y: #FFB800; /* Primary Yellow */
    --b: #003366; /* Deep Blue */
    --g: #1A1A1A; /* Near Black / Dark Grey */
    --sg: #2D3748; /* Slate Grey */
    --w: #FFFFFF;
    --font-heading: 'Syncopate', sans-serif;
    --font-sub: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --trans: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--g);
    color: var(--w);
    font-family: var(--font-body);
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Typography */
h1, h2, h3 {
    text-transform: uppercase;
}

.highlight {
    color: var(--y);
}

.text-yellow { color: var(--y); }

/* Navbar V2 */
.v2-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--trans);
}

.v2-navbar.scrolled {
    padding: 1.2rem 3rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(40px) saturate(180%);
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
}

.v2-navbar.nav-hidden {
    transform: translateY(-100%);
}

.logo-area img {
    height: 45px;
    filter: brightness(0) invert(1);
    transition: var(--trans);
}

.v2-navbar.scrolled .logo-area img {
    height: 32px;
}

.nav-toggle {
    width: 40px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--w);
    transition: var(--trans);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { transform: translateY(-9px) rotate(-45deg); }

.nav-links-mobile {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    height: 100vh;
    background: var(--g);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--trans);
    z-index: 999;
    visibility: hidden;
}

.nav-links-mobile.active {
    right: 0;
    visibility: visible;
}

.nav-links-mobile a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--w);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links-mobile a:hover {
    color: var(--y);
}

.nav-links-desktop {
    display: flex;
    gap: 3rem;
}

.nav-links-desktop a {
    text-decoration: none;
    color: var(--w);
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--trans);
}

.nav-links-desktop a:hover {
    color: var(--y);
}

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

@media (min-width: 993px) {
    .nav-toggle { display: none; }
}

/* Buttons V2 */
.btn-v2 {
    padding: 1rem 2rem;
    font-family: var(--font-sub);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--trans);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-yellow {
    background: var(--y);
    color: var(--g);
}

.btn-yellow:hover {
    background: var(--w);
    transform: scale(1.05);
}

.btn-outline {
    border: 1px solid var(--w);
    color: var(--w);
}

.btn-outline:hover {
    background: var(--w);
    color: var(--g);
}

.btn-block { width: 100%; }

/* Hero V2 */
.hero-v2 {
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 10%, rgba(0, 51, 102, 0.2) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    width: 100%;
    padding: 0 3rem;
}

.hero-info {
    padding-top: 5rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--y);
    color: var(--g);
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 2rem;
}

.hero-info h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.9;
    margin-bottom: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--w);
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.1);
}

.hero-p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 500px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-sub);
    font-size: 0.8rem;
}

.scroll-indicator .line {
    width: 50px;
    height: 1px;
    background: var(--w);
}

.hero-image-v2 {
    position: relative;
}

.img-wrapper {
    width: 100%;
    height: 100%;
    border: 1px solid #333;
    padding: 1rem;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.2);
}

.floating-stat {
    position: absolute;
    top: 20%;
    right: -2rem;
    background: var(--w);
    color: var(--g);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; }
.stat-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }

/* About V2 */
.about-v2 {
    padding: 10rem 0;
    border-top: 1px solid #333;
}

.about-flex {
    display: flex;
    gap: 5rem;
}

.vertical-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--y);
    letter-spacing: 5px;
}

.about-content-v2 h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content-v2 p {
    font-size: 1.5rem;
    color: #ccc;
    max-width: 800px;
    margin-bottom: 4rem;
    line-height: 1.4;
}

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

.bento-item {
    padding: 3rem;
    text-align: center;
}

.bento-item.yellow { background: var(--y); color: var(--g); }
.bento-item.grey { background: #222; }
.bento-item.blue { background: var(--b); }

.bento-item h4 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 0.5rem; }

/* Tech V2 */
.tech-v2 {
    background: #0a0a0a;
    padding: 10rem 0;
}

.tech-header { margin-bottom: 5rem; }
.sub-title { font-family: var(--font-sub); color: var(--y); font-weight: 800; }
.tech-header h2 { font-family: var(--font-heading); font-size: 3.5rem; }

.pump-showcase-v2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 0 3rem;
}

.pump-blueprint {
    position: relative;
    background: linear-gradient(transparent, rgba(255, 184, 0, 0.05));
    padding: 5rem;
    border: 1px solid #222;
}

.main-pump-img {
    width: 100%;
    filter: brightness(0.8) drop-shadow(0 0 30px rgba(255, 184, 0, 0.1));
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--y);
    border-radius: 50%;
    cursor: pointer;
}

.hotspot::after {
    content: attr(data-label);
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--w);
    color: var(--g);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    transition: var(--trans);
}

.hotspot:hover::after { opacity: 1; left: 40px; }

.hs-1 { top: 30%; right: 25%; }
.hs-2 { bottom: 40%; left: 20%; }
.hs-3 { top: 50%; right: 40%; }

.tech-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-card {
    padding: 2.5rem;
    border: 1px solid #222;
    background: #111;
    transition: var(--trans);
}

.tech-card:hover {
    border-color: var(--y);
    transform: translateX(10px);
}

.card-num { font-family: var(--font-heading); color: var(--y); margin-bottom: 1rem; }
.tech-card h4 { margin-bottom: 1rem; }
.tech-card p { color: #888; font-size: 0.9rem; }

/* Services V2 */
.services-v2 { padding: 10rem 0; }

.services-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.s-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--trans);
    border: 1px solid #222;
}

.s-card i { font-size: 2.5rem; margin-bottom: auto; color: var(--y); }
.s-card h3 { margin-bottom: 1rem; }
.s-card p { color: #aaa; font-size: 0.9rem; }

.s-large { grid-column: span 2; grid-row: span 2; }
.s-medium { grid-column: span 2; }
.yellow-bg { background: var(--y); color: var(--g); border: none; }
.yellow-bg i, .yellow-bg p { color: var(--g); }
.blue-bg { background: var(--b); border: none; }
.grey-bg { background: #222; }

.learn-more {
    margin-top: 2rem;
    text-decoration: none;
    color: var(--y);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Fleet V2 */
.fleet-v2 {
    padding: 10rem 0;
    background: #0a0a0a;
}

.fleet-header {
    text-align: center;
    margin-bottom: 5rem;
}

.fleet-header h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-top: 1rem;
}

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #666;
    padding: 1rem 2.5rem;
    font-family: var(--font-sub);
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tab-btn.active {
    background: var(--y);
    color: var(--g);
    border-color: var(--y);
}

.tab-btn:hover:not(.active) {
    border-color: var(--y);
    color: var(--y);
}

.tab-content {
    display: none;
    animation: fadeIn 0.8s ease;
}

.tab-content.active {
    display: block;
}

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

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fleet-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--g);
}

.fleet-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: grayscale(0.5) contrast(1.1);
}

.fleet-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0) contrast(1.1);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(20px);
    opacity: 0;
    transition: var(--trans);
}

.fleet-item:hover .item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.item-overlay span {
    font-family: var(--font-sub);
    color: var(--y);
    font-weight: 800;
    font-size: 0.8rem;
}

.item-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Contact V2 */
.contact-v2 { padding-bottom: 10rem; }

.contact-v2-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5rem;
}

.contact-v2-info h2 { 
    font-family: var(--font-heading); 
    font-size: 6rem; 
    line-height: 0.9; 
    margin-bottom: 2rem; 
}

.contact-v2-details {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-v2-form {
    width: 100%;
    max-width: 800px;
    background: var(--glass);
    padding: 4rem;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.contact-v2-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-v2-form input, .contact-v2-form select, .contact-v2-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 1.5rem 0;
    color: var(--w);
    font-family: var(--font-sub);
    font-size: 1rem;
}

.contact-v2-form input:focus { outline: none; border-color: var(--y); }

/* Footer V2 */
.footer-v2 {
    padding: 5rem 0;
    border-top: 1px solid #222;
}

.f-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
}

.f-top img { height: 35px; filter: grayscale(1); }

.f-links { display: flex; gap: 3rem; }
.f-links a { text-decoration: none; color: #888; font-family: var(--font-sub); transition: var(--trans); }
.f-links a:hover { color: var(--y); }

.f-bottom {
    display: flex;
    justify-content: space-between;
    color: #444;
    font-size: 0.8rem;
    font-family: var(--font-sub);
}

/* Animations */
section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

section.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .contact-v2-info h2 { font-size: 4rem; }
    .services-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
}

@media (max-width: 992px) {
    .container { padding: 0 2rem; }
    .hero-grid { padding: 0 2rem; grid-template-columns: 1fr; }
    .about-flex { flex-direction: column; gap: 2rem; }
    .vertical-text { writing-mode: horizontal-tb; transform: none; font-size: 0.8rem; margin-bottom: 1rem; }
    .pump-showcase-v2 { grid-template-columns: 1fr; gap: 3rem; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-stats { grid-template-columns: 1fr; }
    .hero-image-v2 { display: none; } /* Simplify mobile hero */
}

@media (max-width: 768px) {
    .v2-navbar { padding: 1rem 1.5rem; }
    .hero-v2 { height: auto; padding: 8rem 0 5rem; }
    .hero-info h1 { font-size: 3.5rem; letter-spacing: -2px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 1.5rem; }
    .btn-v2 { text-align: center; }
    .scroll-indicator { display: none; }
    
    .about-v2, .tech-v2, .fleet-v2, .services-v2, .contact-v2 { padding: 5rem 0; }
    
    .tech-header h2 { font-size: 2.5rem; }
    .pump-blueprint { display: none; } /* Blueprints are too busy for mobile */
    .tech-info-cards { gap: 1rem; }
    .tech-card { padding: 1.5rem; }
    
    .fleet-header h2 { font-size: 2.8rem; }
    .fleet-tabs { flex-direction: column; width: 100%; gap: 0.5rem; }
    .tab-btn { width: 100%; padding: 0.8rem; font-size: 0.8rem; }
    
    .services-bento { grid-template-columns: 1fr; grid-template-rows: auto; gap: 1rem; }
    .s-card { padding: 2rem; height: 300px; }
    .s-large, .s-medium { grid-column: span 1; grid-row: span 1; }
    
    .contact-v2-details { flex-direction: column; gap: 2rem; }
    .contact-v2-form { padding: 2rem; }
    .contact-v2-info h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }
    .contact-v2-grid { gap: 3rem; }
    
    .footer-v2 { padding: 3rem 0; }
    .footer-v2 .f-top { flex-direction: column; gap: 2.5rem; align-items: flex-start; }
    .f-links { flex-direction: column; gap: 1rem; }
    .f-bottom { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-info h1 { font-size: 2.2rem; line-height: 1.1; }
    .hero-p { font-size: 0.9rem; line-height: 1.6; }
    .fleet-grid { grid-template-columns: 1fr; gap: 1rem; width: 100%; margin: 0; }
    .fleet-item { height: 280px; width: 100%; }
    .bento-item { padding: 2.5rem 1.5rem; width: 100%; }
    .container { padding: 0 1rem; width: 100%; box-sizing: border-box; overflow: hidden; }
    
    .tech-header h2 { font-size: 1.6rem; }
    .contact-v2-info h2 { font-size: 2rem; line-height: 1.3; }
    .c-val { font-size: 0.9rem; }
    
    h1, h2, h3 { word-break: break-word; }
}
