/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    background: #1a1a1a;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
    --gold: #D4A017;
    --gold-light: #E8B000;
    --gold-dark: #B8860B;
    --charcoal: #1a1a1a;
    --charcoal-light: #242424;
    --charcoal-lighter: #333333;
    --steel: #6b6b6b;
    --steel-light: #8a8a8a;
    --white: #ffffff;
    --off-white: #e8e8e8;
    --green: #22c55e;
}

/* === UTILITIES === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 6px;
    font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
    transition: all 0.2s ease; text-align: center;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(212,160,23,0.3); }
.btn-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: rgba(212,160,23,0.1); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* === HEADER === */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(15, 15, 15, 0.97); backdrop-filter: blur(12px);
    padding: 6px 0; border-bottom: 1px solid rgba(212,160,23,0.15);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; }
.logo-img { height: 70px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a {
    color: rgba(255,255,255,0.7); font-weight: 600; font-size: 0.85rem;
    transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.5px;
}
.nav a:hover { color: var(--gold); }
.header-cta { padding: 10px 24px; font-size: 0.85rem; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

/* === HERO === */
.hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 50%, #252525 100%);
    color: var(--white); padding: 160px 0 100px; text-align: center;
    position: relative; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 25% 75%, rgba(212,160,23,0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 25%, rgba(212,160,23,0.03) 0%, transparent 50%);
}
.hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 {
    font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.8; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.trust-bar { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.trust-bar span { border: 1px solid rgba(255,255,255,0.08); padding: 8px 16px; border-radius: 4px; background: rgba(255,255,255,0.03); }

/* === SECTIONS === */
.section { padding: 80px 0; }
.section-alt { background: #1f1f1f; }
.section-dark { background: #0d0d0d; }
.section-title {
    font-size: 2.2rem; font-weight: 800; text-align: center; margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 1px; color: var(--white);
}
.section-title .gold { color: var(--gold); }
.section-sub { text-align: center; color: var(--steel-light); font-size: 1.05rem; margin-bottom: 48px; }

/* === EQUIPMENT CARDS === */
.equipment-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.equipment-card {
    background: var(--charcoal-light); border-radius: 12px; overflow: hidden;
    border: 1px solid #333; transition: all 0.3s;
}
.equipment-card:hover { transform: translateY(-4px); border-color: rgba(212,160,23,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.equipment-img {
    height: 220px; position: relative;
    display: flex; align-items: flex-end; padding: 16px;
    overflow: hidden;
}
.equipment-photo {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.trailer-bg {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 60%, rgba(212,160,23,0.1) 100%);
}
.skid-steer-bg {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 60%, rgba(212,160,23,0.15) 100%);
}
.excavator-bg {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 60%, rgba(212,160,23,0.1) 100%);
}
.equipment-badge {
    position: absolute; top: 16px; right: 16px;
    background: var(--green); color: #fff; padding: 6px 16px;
    border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.equipment-info { padding: 28px; }
.equipment-info h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--white); }
.equipment-info ul { margin-bottom: 16px; }
.equipment-info li { padding: 4px 0; font-size: 0.9rem; color: var(--steel-light); }
.equipment-info li strong { color: var(--off-white); }
.equipment-use { font-size: 0.9rem; color: var(--steel); margin-bottom: 16px; font-style: italic; }
.equipment-price { font-size: 1.3rem; margin-bottom: 20px; color: var(--gold); font-weight: 700; }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.pricing-table {
    background: var(--charcoal-light); border-radius: 12px; padding: 32px;
    border: 1px solid #333;
}
.pricing-table h3 {
    font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 2px solid var(--gold-dark); color: var(--white);
}
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; border-bottom: 1px solid #333;
    color: var(--off-white);
}
.price-row:last-child { border-bottom: none; }
.price-row.featured {
    background: rgba(212,160,23,0.08); margin: 0 -16px; padding: 14px 16px; border-radius: 6px;
    border: 1px solid rgba(212,160,23,0.2); border-bottom: 1px solid rgba(212,160,23,0.2);
}
.price-row strong { font-size: 1.2rem; color: var(--gold); }
.pricing-note {
    background: var(--charcoal-light); border-radius: 12px; padding: 24px 32px; text-align: center;
    border: 1px solid #333;
}
.pricing-note h4 { margin-bottom: 8px; color: var(--gold); }
.pricing-note p { color: var(--steel-light); }

/* === STEPS === */
.steps-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.step { text-align: center; }
.step-num {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--gold); color: #111;
    font-size: 1.5rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step h3 { margin-bottom: 8px; color: var(--white); }
.step p { color: var(--steel-light); font-size: 0.95rem; }

/* === BOOKING FORM === */
.booking-form {
    max-width: 700px; margin: 0 auto;
    background: var(--charcoal-light); border: 1px solid #333;
    border-radius: 12px; padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--off-white); }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px; border: 1px solid #444; border-radius: 6px;
    font-size: 1rem; font-family: inherit; transition: border-color 0.2s;
    background: #1a1a1a; color: var(--white);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--steel); }
.form-group select { color: var(--steel-light); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(212,160,23,0.15);
}
.form-quote {
    background: rgba(212,160,23,0.08); border: 1px solid rgba(212,160,23,0.3); border-radius: 8px;
    padding: 20px; margin-bottom: 24px; text-align: center;
}
.form-quote h4 { color: var(--gold); font-size: 1.3rem; }
.form-note { text-align: center; color: var(--steel); font-size: 0.85rem; margin-top: 12px; }

/* === AREA TAGS === */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tags span {
    background: var(--charcoal-light); border: 1px solid #333;
    padding: 8px 20px; border-radius: 4px;
    font-weight: 600; font-size: 0.9rem; color: var(--steel-light);
    transition: all 0.2s;
}
.area-tags span:hover { border-color: var(--gold-dark); color: var(--gold); }

/* === FOOTER === */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 32px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-img { height: 80px; }
.footer-grid h4 { color: var(--gold); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
.footer-grid p { color: rgba(255,255,255,0.5); margin-bottom: 8px; font-size: 0.95rem; }
.footer-grid a { color: var(--gold); }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid #333; padding-top: 20px; text-align: center;
    color: rgba(255,255,255,0.25); font-size: 0.85rem;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 120px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .equipment-grid, .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .trust-bar { flex-direction: column; gap: 8px; }
    .booking-form { padding: 24px; }
}
