* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2933;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.navbar {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.logo span {
    color: #e49b18;
}

.logo small {
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    margin-top: 5px;
    color: #6b7280;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navigation a {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    transition: 0.2s;
}

.navigation a:hover,
.navigation a.active {
    color: #e49b18;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-link {
    font-weight: 600;
}

.quote-button {
    background: #e49b18;
    color: #ffffff;
    padding: 11px 18px;
    border-radius: 5px;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    background: #f4f5f6;
    padding: 75px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.hero-label,
.section-heading span,
.section-label {
    color: #e49b18;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero h1 {
    margin: 15px 0 22px;
    font-size: 58px;
    line-height: 1.08;
    color: #17202a;
}

.hero h1 span {
    display: block;
    color: #e49b18;
}

.hero-content > p {
    max-width: 580px;
    color: #5f6b76;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.primary-button,
.secondary-button,
.cta-button {
    display: inline-block;
    padding: 13px 23px;
    border-radius: 5px;
    font-weight: 700;
    transition: 0.2s;
}

.primary-button {
    background: #e49b18;
    color: #ffffff;
}

.primary-button:hover {
    background: #c9820c;
}

.secondary-button {
    border: 1px solid #25313b;
    color: #25313b;
}

.secondary-button:hover {
    background: #25313b;
    color: #ffffff;
}

.hero-image {
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.hero-image img {
     width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 45px;
}

.hero-stat strong {
    display: block;
    font-size: 25px;
    color: #17202a;
}

.hero-stat span {
    font-size: 13px;
    color: #6b7280;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.section-heading h2 {
    margin: 10px 0;
    font-size: 38px;
    color: #17202a;
}

.section-heading p {
    color: #68737d;
}


/* =====================================================
   CATEGORIES
===================================================== */

.categories {
    padding: 85px 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    padding: 30px 25px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: 0.25s;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #e49b18;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-icon {
    font-size: 38px;
    margin-bottom: 18px;
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.category-card p {
    color: #68737d;
    margin-bottom: 20px;
}

.category-card strong {
    color: #e49b18;
    font-size: 14px;
}


/* =====================================================
   EQUIPMENT
===================================================== */

.equipment-section {
    padding: 85px 0;
    background: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.product-content {
    padding: 22px;
}

.product-category {
    color: #e49b18;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.product-content h3 {
    margin: 8px 0;
    font-size: 21px;
}

.product-content p {
    color: #68737d;
    min-height: 55px;
}

.product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
}

.product-footer small {
    display: block;
    color: #8a939b;
    font-size: 11px;
}

.product-footer strong {
    display: block;
    font-size: 19px;
}

.details-button {
    border: 1px solid #25313b;
    padding: 9px 13px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

.details-button:hover {
    background: #25313b;
    color: #ffffff;
}

.center-button {
    text-align: center;
    margin-top: 40px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    padding: 85px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 35px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #68737d;
    margin-bottom: 20px;
}

.service-card a {
    color: #e49b18;
    font-weight: 700;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 85px 0;
    background: #f8f9fa;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 430px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    margin: 12px 0 20px;
    font-size: 40px;
    line-height: 1.15;
}

.about-content p {
    color: #68737d;
    margin-bottom: 15px;
}

.about-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
    font-weight: 600;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 55px 0;
    background: #202a33;
    color: #ffffff;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-container span {
    color: #e49b18;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.cta-container h2 {
    margin-top: 8px;
    font-size: 32px;
    max-width: 700px;
}

.cta-button {
    background: #e49b18;
    color: #ffffff;
    white-space: nowrap;
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    padding: 85px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-information h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.contact-information > p {
    color: #68737d;
    margin-bottom: 30px;
}

.contact-item {
    padding: 18px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item span {
    color: #68737d;
}

.contact-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #d7dce0;
    border-radius: 5px;
    padding: 12px 13px;
    background: #ffffff;
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e49b18;
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #17202a;
    color: #ffffff;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 45px;
}

.footer-logo {
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-grid p {
    color: #b9c0c6;
}

.footer-grid h4 {
    margin-bottom: 15px;
}

.footer-grid a {
    display: block;
    color: #b9c0c6;
    margin-bottom: 9px;
}

.footer-grid a:hover {
    color: #e49b18;
}

.footer-bottom {
    border-top: 1px solid #303b45;
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    color: #9ca5ad;
    font-size: 13px;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .navigation {
        gap: 15px;
    }

    .header-actions {
        display: none;
    }

    .hero h1 {
        font-size: 45px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .navbar {
        position: relative;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .navigation {
        display: none;

        position: absolute;
        top: 78px;
        left: 0;
        right: 0;

        background: #ffffff;
        border-top: 1px solid #e5e7eb;

        padding: 20px;

        flex-direction: column;
        align-items: flex-start;
    }

    .navigation.active {
        display: flex;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-image {
        height: 300px;
    }

    .hero-stats {
        gap: 25px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }


.product-details-section {
    padding: 80px 20px;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-details-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

.product-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details-content h1 {
    font-size: 48px;
    color: #12263a;
    margin: 10px 0 20px;
}

.product-description {
    color: #64748b;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.price-request {
    font-size: 20px;
    font-weight: 700;
    color: #e99b0c;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.secondary-button {
    display: inline-block;
    padding: 14px 25px;
    border: 1px solid #12263a;
    color: #12263a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

@media (max-width: 700px) {

    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details-image {
        height: 350px;
    }

    .product-details-content h1 {
        font-size: 36px;
    }

    .product-actions {
        flex-direction: column;
    }

/* =========================
   LOGIN PAGE
========================= */

.login-section {
    min-height: 75vh;
    padding: 80px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f6f8;
}

.login-container {
    width: 100%;
    max-width: 500px;
}

.login-card {
    background: #ffffff;

    padding: 45px;

    border-radius: 12px;

    border: 1px solid #e5e7eb;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.login-heading {
    text-align: center;
    margin-bottom: 35px;
}

.login-heading h1 {
    font-size: 40px;
    color: #12263a;
    margin: 10px 0;
}

.login-heading p:last-child {
    color: #64748b;
    margin: 0;
}


/* Form */

.login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #12263a;

    font-weight: 600;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #d1d5db;

    border-radius: 6px;

    font-size: 15px;

    box-sizing: border-box;

    outline: none;
}

.form-group input:focus {
    border-color: #e99b0c;
}


/* Login Options */

.login-options {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 25px;

    font-size: 14px;
}

.login-options label {
    color: #64748b;

    display: flex;

    align-items: center;

    gap: 7px;
}

.login-options a {
    color: #e99b0c;

    text-decoration: none;

    font-weight: 600;
}


/* Login Button */

.login-button {
    width: 100%;

    padding: 15px;

    border: none;

    border-radius: 6px;

    background: #e99b0c;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.login-button:hover {
    background: #d88e08;
}


/* Register */

.register-link {
    text-align: center;

    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #e5e7eb;
}

.register-link p {
    color: #64748b;
}

.register-link a {
    color: #e99b0c;

    text-decoration: none;

    font-weight: 700;
}


/* Mobile */

@media (max-width: 600px) {

    .login-section {
        padding: 50px 15px;
    }

    .login-card {
        padding: 30px 20px;
    }

    .login-heading h1 {
        font-size: 32px;
    }

    .login-options {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    /* Registration Messages */

.form-message {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
}

.form-message.success {
    background: #e8f7ee;
    color: #18743c;
    border: 1px solid #b7e4c7;
}

.form-message.error {
    background: #fff0f0;
    color: #b42318;
    border: 1px solid #f5c2c0;


.welcome-user {
    color: #12263a;
    font-weight: 600;
    font-size: 14px;

.account-info {
    margin: 25px 0;
    padding: 20px;
    background: #f5f6f8;
    border-radius: 8px;
}

.account-info p {
    color: #475569;
    margin: 10px 0;
}

.account-info strong {
    color: #12263a;
}

.account-info + .primary-button {
    margin-right: 10px;
}

.secondary-button {
    display: inline-block;
    padding: 14px 25px;
    border: 1px solid #12263a;
    color: #12263a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}


/* =====================================================
   RESPONSIVE MOBILE HEADER + MOBILE LAYOUT FIX
===================================================== */

/* Make navbar use the same container width as the site */
.navbar {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Desktop: mobile menu button stays hidden */
.menu-toggle {
    display: none;
}

/* Prevent images/content from creating horizontal scrolling */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 900px) {

    .navbar {
        gap: 15px;
    }

    .navigation {
        gap: 18px;
    }

    .header-actions {
        gap: 10px;
    }

    .hero-container {
        gap: 35px;
    }

    .hero-image {
        min-height: 0;
        height: 360px;
    }

    .about-image {
        height: 360px;
    }

    .product-image {
        height: 230px;
    }
}

@media (max-width: 700px) {

    /* ================= HEADER ================= */

    .site-header {
        position: sticky;
        top: 0;
    }

    .navbar {
        width: 100%;
        min-height: 68px;
        padding: 10px 15px;
        gap: 10px;
    }

    .logo {
        font-size: 22px;
    }

    .logo small {
        font-size: 8px;
        letter-spacing: 2.5px;
        margin-top: 4px;
    }

    /* Hamburger button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: 1px solid #e5e7eb;
        border-radius: 6px;
        background: #ffffff;
        color: #17202a;
        font-size: 25px;
        line-height: 1;
        cursor: pointer;
    }

    .menu-toggle:hover {
        border-color: #e49b18;
        color: #e49b18;
    }

    /* Mobile dropdown */
    .navigation {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        z-index: 999;
        width: 100%;
        padding: 10px 15px 15px;
        background: #ffffff;
        border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .navigation.active {
        display: flex;
    }

    .navigation a {
        display: block;
        width: 100%;
        padding: 12px 5px;
        border-bottom: 1px solid #f0f1f2;
        font-size: 15px;
    }

    .navigation a:last-child {
        border-bottom: 0;
    }

    /* Logged-in / logged-out buttons also appear inside mobile menu */
    .header-actions {
        display: none;
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
    }

    .mobile-menu-actions a {
        display: block;
        width: 100%;
        padding: 11px 12px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-menu-actions .mobile-action-link {
        border: 1px solid #e5e7eb;
    }

    .mobile-menu-actions .mobile-quote-button {
        background: #e49b18;
        color: #ffffff;
        text-align: center;
    }

    .mobile-menu-actions .mobile-action-link:hover {
        color: #e49b18;
        border-color: #e49b18;
    }

    .mobile-menu-actions .mobile-quote-button:hover {
        background: #c9820c;
    }

    .mobile-welcome {
        padding: 8px 5px 5px;
        color: #12263a;
        font-size: 13px;
        font-weight: 600;
    }

    /* ================= HERO ================= */

    .hero {
        padding: 35px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero h1 {
        font-size: 34px;
        margin: 10px 0 16px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 22px;
    }

    .primary-button,
    .secondary-button,
    .cta-button {
        padding: 11px 17px;
    }

    /* Smaller hero image on mobile */
    .hero-image {
        width: 100%;
        height: 220px;
        min-height: 0;
        border-radius: 10px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-stats {
        gap: 18px;
        margin-top: 28px;
        flex-wrap: wrap;
    }

    .hero-stat strong {
        font-size: 21px;
    }

    .hero-stat span {
        font-size: 12px;
    }

    /* ================= SECTIONS ================= */

    .categories,
    .equipment-section,
    .services-section,
    .about-section,
    .contact-section {
        padding: 55px 0;
    }

    .section-heading {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .category-card {
        padding: 24px 20px;
    }

    /* Product cards: don't make images huge */
    .product-image {
        height: 210px;
    }

    .product-content {
        padding: 18px;
    }

    .product-content h3 {
        font-size: 19px;
    }

    .product-footer {
        align-items: center;
    }

    /* ================= ABOUT ================= */

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        width: 100%;
        height: 230px;
    }

    .about-content h2 {
        font-size: 30px;
    }

    /* ================= CTA ================= */

    .cta-container {
        gap: 20px;
    }

    .cta-container h2 {
        font-size: 27px;
    }

    /* ================= CONTACT ================= */

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* ================= FOOTER ================= */

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* ================= PRODUCT DETAILS ================= */

    .product-details-section {
        padding: 50px 15px;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-details-image {
        height: 280px;
    }

    .product-details-content h1 {
        font-size: 32px;
    }

    .product-description {
        font-size: 15px;
    }

    .product-actions {
        flex-direction: column;
        gap: 10px;
    }

    .product-actions a,
    .product-actions button {
        width: 100%;
        text-align: center;
    }
}

/* Very small phones */
@media (max-width: 400px) {

    .logo {
        font-size: 20px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero-image {
        height: 190px;
    }

    .product-image {
        height: 190px;
    }

    .hero-stats {
        gap: 12px;
    }
}
