:root {
    --primary-color: #ff9900;
    --primary-dark: #cc7a00;
    --text-color: #000000;
    --text-light: #ffffff;
    --bg-color: #ffffff;
    --bg-secondary: #f4f4f4;
    --font-main: 'Outfit', sans-serif;
    --container-width: 1200px;
    --gray-border: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header */
header {
    background-color: #ffffff;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.brand-wrapper {
    background-color: var(--primary-color);
    color: var(--text-light);
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 60px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    max-width: 500px;
}

.brand-text {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    line-height: 1.2;
}

.brand-text small {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    margin-top: 4px;
    font-style: italic;
}

.nav-wrapper {
    margin-left: auto;
    padding-right: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    transition: background 0.3s;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
    width: 100%;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.price-banner {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-note {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-phone {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s;
}

.hero-phone:hover {
    transform: scale(1.05);
    color: #fff;
}

.social-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Expand Box */
.expand-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 15px 0;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
}

.expand-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
}

/* Features / Steps Section */
.features-section {
    padding: 80px 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
}

.circle-img-wrapper {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    position: relative;
}

.circle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

/* Expandable Bar */
.expand-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 20px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.expand-bar:hover {
    background-color: var(--primary-dark);
}

.expand-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
}


/* Contact Section Styles */
.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-info-panel {
    flex: 1;
    min-width: 300px;
    padding-right: 10px;
}

.contact-form-panel {
    flex: 1;
    min-width: 300px;
    /* max-width removed to allow fitting 3 cols */
}

#disposal-form,
#parts-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

#disposal-form h3,
#parts-form h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #aaa;
    background-color: #fff;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #333333;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #000000;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.parts-gallery {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    /* Default: No wrapping for desktop to ensure side-by-side */
    flex-wrap: nowrap;
}

.gallery-item-part {
    flex: 1;
    min-width: 280px;
    /* Prevent collapsing into thin strips */
    height: 300px;
    /* Slightly taller for better visibility */
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item-part img {
    transition: transform 0.5s ease;
}

.gallery-item-part:hover img {
    transform: scale(1.1);
}

/* Footer & Certs */
.footer-info {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    align-items: center;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .parts-gallery {
        flex-wrap: wrap;
    }

    .gallery-item-part {
        min-width: 100%;
        /* Stack on mobile */
        margin-bottom: 20px;
    }

    .brand-wrapper {
        width: 100%;
        clip-path: none;
        position: relative;
        text-align: center;
        justify-content: center;
        padding: 10px;
    }

    .header-inner {
        height: auto;
        flex-direction: column;
    }

    .nav-wrapper {
        width: 100%;
        padding: 15px 0;
        background: #fff;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .price-banner {
        font-size: 2.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .circle-img-wrapper {
        margin: 0 auto;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-form-panel {
        max-width: 100%;
    }
}