/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #f5f5f5;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Global variables */
:root {
    --topbar-height: 44px;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: var(--topbar-height, 0px);
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #166534;
}

/* Top Contact Bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
    border-bottom: 1px solid #1f1f1f;
    z-index: 1100;
}

.topbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.topbar-item {
    color: #cccccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.topbar-item i {
    color: #ffd700;
}

.topbar-item a {
    color: #f5f5f5;
    text-decoration: none;
}

.topbar-item a:hover {
    text-decoration: underline;
}

.topbar-sep {
    color: #444;
    margin: 0 0.25rem;
}

.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-cta {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0a0a0a;
    background: #ffd700;
    border: 2px solid #ffd700;
    text-decoration: none;
    transition: all 0.25s ease;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 100%, 12px 100%);
}

.topbar-cta:hover {
    background: transparent;
    color: #ffd700;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.2);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo i {
    margin-right: 0.8rem;
    font-size: 2rem;
    color: #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #166534;
    text-shadow: 0 0 10px rgba(22, 101, 52, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #166534, #ffd700);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #166534;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #0f0f0f url('images/main.jpg') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="construction" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 0 0 L 20 20 M 20 0 L 0 20" stroke="rgba(22,101,52,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23construction)"/></svg>'),
        linear-gradient(45deg, transparent 30%, rgba(22, 101, 52, 0.05) 50%, transparent 70%);
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.hero-title {
    font-family: 'Mulish', sans-serif;
    font-size: 4.5rem;
    font-weight: 1000;
    font-style: italic;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #166534;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    color: #d8d8d8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons {
    margin-bottom: 1rem;
}

.btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
}

.btn-primary {
    background: linear-gradient(135deg, #166534 0%, #198a3d 100%);
    color: white;
    border: 2px solid #166534;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #198a3d 0%, #1aaf47 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(22, 101, 52, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #0a0a0a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.hero-stats {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    z-index: 2;
}

.stat {
    text-align: center;
    background: rgba(10, 10, 10, 0.8);
    padding: 2rem 1.5rem;
    border: 2px solid #166534;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    backdrop-filter: blur(10px);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hexagon" width="50" height="43.4" patternUnits="userSpaceOnUse"><polygon points="25,0 43.3,12.5 43.3,37.5 25,50 6.7,37.5 6.7,12.5" fill="none" stroke="rgba(22,101,52,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23hexagon)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #166534;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 100%);
    padding: 2.5rem;
    border: 2px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(22, 101, 52, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #166534;
    box-shadow: 0 15px 40px rgba(22, 101, 52, 0.3);
}

.service-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 346 / 232;
    background: #0f0f0f;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    margin-bottom: 2rem;
    border: 2px solid #333;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.5rem 0;
    color: #aaaaaa;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.service-features li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 0.8rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #0f0f0f url('images/about-bg.jpg') center center / cover no-repeat;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.35) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Improve About readability with a subtle glass panel */
.about-text {
    background: rgba(10, 10, 10, 0.55);
    border: 2px solid rgba(22, 101, 52, 0.6);
    padding: 2rem;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #166534;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffd700;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-text p {
    color: #e1e1e1;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    background: rgba(22, 101, 52, 0.1);
    border-left: 4px solid #166534;
    backdrop-filter: blur(5px);
}

.feature i {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 450px;
    height: 350px;
    background: linear-gradient(135deg, #166534, #ffd700);
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 100%, 30px 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="machinery" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="2" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23machinery)"/></svg>');
    opacity: 0.3;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.image-placeholder p {
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/snow.jpg') center center / cover no-repeat;
    filter: grayscale(50%) brightness(0.5) contrast(1.1) blur(1px);
    opacity: 0.25;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.25);
    border: 2px solid rgba(51, 51, 51, 0.7);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #166534;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(22, 101, 52, 0.2);
}

.contact-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(10, 10, 10, 0.25);
    padding: 3rem;
    border: 2px solid rgba(51, 51, 51, 0.7);
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 100%, 25px 100%);
    backdrop-filter: blur(8px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #333;
    background: rgba(0, 0, 0, 0.5);
    color: #f5f5f5;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #166534;
    background: rgba(22, 101, 52, 0.1);
    box-shadow: 0 0 15px rgba(22, 101, 52, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid #166534;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-family: 'Mulish', sans-serif;
    font-size: 1.5rem;
    font-weight: 1000;
    font-style: italic;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-logo i {
    margin-right: 0.8rem;
    font-size: 2rem;
    color: #ffd700;
}

.footer p {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-style: italic;
    opacity: 0.8;
    margin: 0;
    color: #cccccc;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: #0f0f0f url('images/truck.jpg') center center / cover no-repeat;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0.35) 100%);
}

.testimonials .section-header h2 {
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.testimonials .section-header p {
    color: #cfcfcf;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(10, 10, 10, 0.65);
    border-left: 6px solid #166534;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    color: #e5e5e5;
    margin-bottom: 1.25rem;
}

.testimonial-card .author {
    color: #ffd700;
    font-weight: 700;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .about-text {
        padding: 1.25rem;
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    }

    .topbar {
        --topbar-height: 40px;
    }

    .topbar-sep {
        display: none;
    }

    .topbar-left .topbar-item:nth-of-type(2) {
        display: none; /* hide address on smaller screens */
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-bottom: 2px solid #166534;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .image-placeholder {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.contact-item,
.feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for better UX */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}





