/* ============================================================
   OMAGORA PLANT HIRE - MAIN STYLESHEET
   Equipment Yellow #F2A900 | Industrial Black #1A1A1A | Signal Red #C8102E
   ============================================================ */

/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1A1A1A;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a { color: #1A1A1A; text-decoration: none; }

.eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #F2A900;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: #F2A900;
    color: #1A1A1A;
    border-color: #F2A900;
}

.btn-primary:hover {
    background: #1A1A1A;
    color: #F2A900;
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-outline:hover {
    background: #F2A900;
    color: #1A1A1A;
    border-color: #F2A900;
}

.btn-dark {
    background: #1A1A1A;
    color: #FFFFFF;
    border-color: #1A1A1A;
}

.btn-dark:hover {
    background: #F2A900;
    color: #1A1A1A;
    border-color: #F2A900;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1A1A1A;
    border-bottom: 3px solid #F2A900;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text-lines {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-main {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.logo-text-sub {
    color: #F2A900;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.03em;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #F2A900;
    border-bottom-color: #F2A900;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    color: #F2A900;
    font-weight: 700;
    font-size: 0.9375rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    max-height: 800px;
    color: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.55) 50%, rgba(26,26,26,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero h1 .accent {
    color: #F2A900;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #E5E5E5;
    max-width: 560px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-established {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    background: #F2A900;
    color: #1A1A1A;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid #1A1A1A;
}

.hero-established .big {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.hero-established .small {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
    padding: 80px 0;
}

.section-dark {
    background: #1A1A1A;
    color: #FFFFFF;
}

.section-dark h2,
.section-dark h3 {
    color: #FFFFFF;
}

.section-light {
    background: #F5F5F5;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-header p {
    color: #666;
    font-size: 1.0625rem;
    margin-top: 1rem;
}

.section-dark .section-header p {
    color: #B5B5B5;
}

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    border: 4px solid #F2A900;
}

.about-intro-content h2 {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #E5E5E5;
}

.about-stat {
    text-align: left;
}

.about-stat .number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F2A900;
    line-height: 1;
    display: block;
}

.about-stat .label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
    display: block;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #FFFFFF;
    padding: 32px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #F2A900;
}

.service-card:hover {
    border-left-color: #C8102E;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card .num {
    font-size: 0.875rem;
    font-weight: 900;
    color: #F2A900;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    display: block;
}

.service-card h3 {
    margin-bottom: 12px;
    color: #1A1A1A;
}

.service-card p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   FLEET PREVIEW
   ============================================================ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.fleet-card {
    background: #2A2A2A;
    overflow: hidden;
    border: 1px solid #333;
}

.fleet-card-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.fleet-card-content {
    padding: 28px;
}

.fleet-card h3 {
    color: #F2A900;
    margin-bottom: 8px;
}

.fleet-card .specs {
    color: #B5B5B5;
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.fleet-card .quantity {
    display: inline-block;
    background: #F2A900;
    color: #1A1A1A;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ============================================================
   CREDENTIALS BAND
   ============================================================ */
.credentials {
    background: #F2A900;
    padding: 60px 0;
    color: #1A1A1A;
}

.credentials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 20px 24px;
}

.cred-item .cred-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: #F2A900;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
    font-weight: 900;
    font-size: 1rem;
}

.cred-item .cred-text {
    font-weight: 600;
    font-size: 0.9375rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: #1A1A1A;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta-content h2 {
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-content h2 .accent {
    color: #F2A900;
}

.cta-content p {
    font-size: 1.125rem;
    color: #B5B5B5;
    margin-bottom: 2rem;
}

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

.cta-phone {
    color: #F2A900;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0F0F0F;
    color: #B5B5B5;
    padding: 60px 0 24px;
}

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

.footer-brand h3 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 360px;
}

.footer-col h4 {
    color: #F2A900;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #B5B5B5;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #F2A900;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #2A2A2A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: #666;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1A1A1A;
        flex-direction: column;
        padding: 16px 24px;
        gap: 16px;
        border-top: 1px solid #2A2A2A;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-cta .nav-phone {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-image {
        height: 360px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .cred-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .hero-established {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .hero-established .big {
        font-size: 1.25rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 560px) {
    .hero {
        min-height: 520px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
