/* ===========================
   JZP Clearance Services
   Brand Colours:
   Primary Green:   #18B83E
   Dark Green:      #129B33
   Accent Green:    #AAFFC0
   White:           #FFFFFF
   Dark Text:       #1a1a1a
   Light BG:        #f5f5f5
=========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

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

/* ===== NAVIGATION ===== */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo img {
    height: 100px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #18B83E;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, #18B83E 0%, #129B33 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 36px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #18B83E 0%, #129B33 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.btn-primary {
    background: #18B83E;
    color: #fff;
    border-color: #18B83E;
}

.btn-primary:hover {
    background: #129B33;
    border-color: #129B33;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #18B83E;
}

.btn-light {
    background: #fff;
    color: #18B83E;
    border-color: #fff;
}

.btn-light:hover {
    background: #AAFFC0;
    border-color: #AAFFC0;
    color: #129B33;
}

.btn-full { width: 100%; text-align: center; }

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 70px 20px;
    background: #f5f5f5;
}

.services-preview h2,
.why-choose h2,
.about-intro h2,
.areas-covered h2,
.gallery-intro h2,
.service-process h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: #fff;
    border-radius: 6px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(24,184,62,0.15);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #18B83E;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
}

.text-center { text-align: center; }

/* ===== WHY CHOOSE ===== */
.why-choose {
    padding: 70px 20px;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.feature {
    border-left: 4px solid #18B83E;
    padding: 16px 20px;
    background: #f5f5f5;
    border-radius: 0 6px 6px 0;
}

.feature h3 {
    font-weight: 700;
    margin-bottom: 6px;
    color: #18B83E;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, #18B83E 0%, #129B33 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    opacity: 0.95;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
    padding: 70px 20px;
    background: #fff;
}

.service-detail {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #e8e8e8;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 70px;
    text-align: center;
}

.service-detail-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #18B83E;
    margin-bottom: 12px;
    text-align: left;
}

.service-detail-content p {
    margin-bottom: 14px;
    color: #444;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content ul li {
    padding: 4px 0 4px 20px;
    position: relative;
    color: #444;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #18B83E;
    font-weight: 700;
}

/* ===== PROCESS STEPS ===== */
.service-process {
    padding: 70px 20px;
    background: #f5f5f5;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.step {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

.step-number {
    width: 52px;
    height: 52px;
    background: #18B83E;
    color: #fff;
    border-radius: 50%;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-weight: 700;
    margin-bottom: 6px;
}

/* ===== ABOUT ===== */
.about-content {
    padding: 70px 20px;
    background: #fff;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-intro p {
    margin-bottom: 14px;
    color: #444;
    font-size: 1.05rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.value-card {
    background: #f5f5f5;
    border-top: 4px solid #18B83E;
    border-radius: 0 0 6px 6px;
    padding: 28px 20px;
    text-align: center;
}

.value-card h3 {
    font-weight: 700;
    color: #18B83E;
    margin-bottom: 8px;
}

/* ===== AREAS COVERED ===== */
.areas-covered {
    padding: 70px 20px;
    background: #f5f5f5;
    text-align: center;
}

.section-intro {
    max-width: 650px;
    margin: -20px auto 36px;
    color: #555;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.area {
    background: #18B83E;
    color: #fff;
    padding: 8px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.95rem;
}

.areas-note {
    color: #555;
}

.areas-note a {
    color: #18B83E;
    font-weight: 600;
    text-decoration: none;
}

.areas-note a:hover { text-decoration: underline; }

/* ===== GALLERY ===== */
.gallery-section {
    padding: 70px 20px;
    background: #fff;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 48px;
}

.gallery-intro p {
    max-width: 650px;
    margin: -20px auto 0;
    color: #555;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gallery-placeholder {
    background: #e8e8e8;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
}

.gallery-placeholder span {
    color: #999;
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    padding: 16px;
    background: #fff;
    position: relative;
}

.gallery-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 10px;
    border-radius: 10px;
    margin-bottom: 6px;
}

.gallery-tag.before {
    background: #fef3c7;
    color: #b45309;
}

.gallery-tag.after {
    background: #AAFFC0;
    color: #129B33;
}

.gallery-caption h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #18B83E;
    margin-bottom: 4px;
}

.gallery-caption p {
    font-size: 0.85rem;
    color: #666;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 70px 20px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-info > p {
    color: #555;
    margin-bottom: 28px;
}

.contact-detail {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #18B83E;
    margin-bottom: 4px;
}

.contact-detail p {
    color: #444;
}

/* ===== FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #18B83E;
}

.form-group textarea { resize: vertical; }

.form-success {
    background: #AAFFC0;
    color: #129B33;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
}

/* ===== WASTE CARRIER LICENCE ===== */
.licence-section {
    padding: 70px 20px;
    background: #fff;
}

.licence-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.licence-section .section-intro {
    margin-bottom: 40px;
}

.licence-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: #f5f5f5;
    border: 2px solid #e8e8e8;
    border-left: 5px solid #18B83E;
    border-radius: 6px;
    padding: 32px;
    max-width: 860px;
    margin: 0 auto;
}

.licence-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.licence-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.licence-details p {
    color: #444;
    margin-bottom: 16px;
}

.licence-number {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.licence-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    white-space: nowrap;
}

.licence-value {
    color: #129B33;
    font-weight: 700;
    font-size: 0.95rem;
    background: #AAFFC0;
    padding: 3px 10px;
    border-radius: 12px;
}

.footer-licence-number {
    color: #AAFFC0;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-section h4 {
    color: #18B83E;
    font-weight: 700;
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

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

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section ul a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover { color: #18B83E; }

.contact-detail a {
    color: #18B83E;
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover { text-decoration: underline; }

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: #777;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 120px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        gap: 16px;
    }

    .nav-links.open { display: flex; }

    .mobile-menu-toggle { display: flex; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .service-detail { flex-direction: column; gap: 16px; }

    .service-detail-icon { width: auto; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; }
}
