/* ============================================================
   ECO-DEPOT PAGE — eco-depot.css
   ============================================================ */

/* ---------- Hero Image (Intro) ---------- */
.depot-hero-img {
    width: 100%;
    height: 320px;
    object-fit: fill;
    border-radius: 40px 0 40px 0;
    margin-top: 1.5rem;
}

/* ---------- Wash Types ---------- */
.depot-wash-section { border-top: 1px solid rgba(0,0,0,.06); }

.depot-wash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.depot-wash-card {
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.depot-wash-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.dwc-header {
    padding: 1.5rem 1.8rem;
    text-align: center;
}

.dwc-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.dwc-isotank    { background: var(--teal); }
.dwc-tanker     { background: #84A1A7; }
.dwc-packaging  { background: var(--purple); }

.dwc-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.dwc-body {
    padding: 1.5rem 1.8rem;
    background: rgba(224, 222, 209, .3);
}

.dwc-body p { font-size: 1rem !important; }

/* ---------- Wash Methods ---------- */
.depot-methods-section { border-top: 1px solid rgba(0,0,0,.06); }

.methods-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: center;
}

.methods-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: flex-start;
}

.method-tag {
    background: var(--teal);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    padding: .7rem 1.6rem;
    border-radius: 999px;
}

.methods-img-wrap {
    border-radius: 40px 0 40px 0;
    overflow: hidden;
}

.methods-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* ---------- Additional Services ---------- */
.depot-services-section { border-top: 1px solid rgba(0,0,0,.06); }

.depot-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.depot-svc-item {
    text-align: center;
    padding: 0;
    border-radius: 40px 0 40px 0;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.depot-svc-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.depot-svc-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.depot-svc-icon { display: block; margin-bottom: .8rem; }

.depot-svc-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin: .8rem 1.2rem .5rem;
}

.depot-svc-item p {
    text-align: center !important;
    font-size: .95rem !important;
    padding: 0 1.2rem 1.2rem;
}

/* ---------- Workflow ---------- */
.depot-workflow-section { border-top: 1px solid rgba(0,0,0,.06); }

.workflow-steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.wf-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(224, 222, 209, .3);
    border-radius: 12px;
    border-right: 4px solid var(--teal);
}

.wf-step-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    flex-shrink: 0;
    width: 2.5rem;
    text-align: center;
}

.wf-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #000;
    margin-bottom: .3rem;
}

.wf-step-content p {
    font-size: .95rem !important;
    margin-bottom: 0 !important;
}

/* ---------- Pricing ---------- */
.depot-pricing-section { border-top: 1px solid rgba(0,0,0,.06); }

.pricing-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple);
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: right;
}

.pricing-cta {
    margin-top: 1.5rem !important;
    text-align: center !important;
    font-style: normal !important;
    font-size: 1.1rem !important;
    color: #000 !important;
}

.pricing-cta a {
    color: var(--teal);
    text-decoration: underline;
    font-weight: 600;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.pricing-table {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-table-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: var(--purple);
    padding: 1rem 1.2rem;
    text-align: center;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 600;
    padding: .7rem 1rem;
    text-align: right;
    background: rgba(224, 222, 209, .4);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.pricing-table td {
    font-family: var(--font-body);
    font-size: .9rem;
    padding: .65rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,.04);
    color: #000;
}

.pricing-table tr:last-child td { border-bottom: none; }

.pricing-note {
    margin-top: 1rem;
    font-size: .9rem !important;
    font-style: normal !important;
    color: #888 !important;
    text-align: center !important;
}

.pricing-note a {
    color: var(--teal);
    text-decoration: underline;
}

.pricing-table-note {
    font-size: .8rem !important;
    font-style: normal !important;
    color: #888 !important;
    padding: .5rem 1rem .8rem;
    margin: 0 !important;
}

/* ---------- Documents ---------- */
.depot-docs-section { border-top: 1px solid rgba(0,0,0,.06); }

.depot-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.depot-doc {
    padding: 1.8rem;
    background: rgba(218, 239, 234, .3);
    border: 1px solid rgba(91, 158, 150, .15);
    border-radius: 16px;
}

.depot-doc h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: .6rem;
}

.depot-doc p { font-size: .95rem !important; }

/* ---------- Clickable doc cards ---------- */
.depot-docs-hint {
    text-align: center;
    font-family: var(--font-body);
    font-size: .98rem !important;
    color: var(--text-mid) !important;
    margin: -.4rem 0 1.4rem !important;
    font-style: italic;
}

.depot-doc--clickable {
    cursor: pointer;
    text-align: right;
    font-family: inherit;
    color: inherit;
    width: 100%;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.depot-doc--clickable:hover,
.depot-doc--clickable:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,.10);
    border-color: var(--teal);
    outline: none;
}

.depot-doc-cta {
    display: block;
    margin-top: .9rem;
    font-family: var(--font-heading);
    font-size: .98rem;
    font-weight: 600;
    color: var(--teal-dark);
}

/* ---------- Certificate lightbox ---------- */
.cert-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.cert-lightbox[hidden] { display: none; }

.cert-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(2px);
    cursor: pointer;
}

.cert-lightbox-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 2.2rem 1.6rem 1.6rem;
    max-width: 720px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.cert-lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1rem;
    text-align: center;
}

.cert-lightbox-close {
    position: absolute;
    top: .4rem;
    left: .4rem;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-mid);
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--transition), color var(--transition);
}

.cert-lightbox-close:hover,
.cert-lightbox-close:focus-visible {
    background: rgba(0,0,0,.06);
    color: var(--text);
    outline: none;
}

.cert-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,.08);
}

.cert-lightbox-img[hidden],
.cert-lightbox-gallery[hidden],
.cert-lightbox-pages[hidden] { display: none; }

/* Gallery mode (multiple images) */
.cert-lightbox-content--gallery { max-width: 980px; }
.cert-lightbox-content--pages   { max-width: 820px; }

/* Pages mode (multi-page document — vertical scroll) */
.cert-lightbox-pages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: .25rem;
}

.cert-lightbox-pages img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.06);
}

.cert-lightbox-pages-counter {
    text-align: center;
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-mid);
    margin-bottom: .4rem;
    direction: ltr;
}

.cert-lightbox-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
}

.cert-lightbox-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,.08);
    background: #f5f3eb;
}

@media (max-width: 740px) {
    .cert-lightbox-gallery { grid-template-columns: repeat(2, 1fr); }
    .cert-lightbox-gallery img { height: 160px; }
}

@media (max-width: 480px) {
    .cert-lightbox-gallery { grid-template-columns: 1fr; }
    .cert-lightbox-gallery img { height: 200px; }
}

@media (max-width: 640px) {
    .cert-lightbox { padding: 1rem .5rem; }
    .cert-lightbox-content { padding: 2rem 1rem 1rem; }
    .cert-lightbox-title { font-size: 1.15rem; }
}

/* ---------- Advantages ---------- */
.depot-advantages { border-top: 1px solid rgba(0,0,0,.06); }

.depot-adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1.5rem;
}

.depot-adv {
    padding: 0;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 40px 0 40px 0;
    text-align: center;
    overflow: hidden;
}

.depot-adv-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.depot-adv h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin: 1.2rem 1.5rem .7rem;
}

.depot-adv p {
    text-align: center !important;
    font-size: 1rem !important;
    padding: 0 1.5rem 1.5rem;
}

/* ---------- Clients ---------- */
.depot-clients-section { border-top: 1px solid rgba(0,0,0,.06); }

.depot-clients-logos {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.depot-client-logo {
    padding: 1.2rem 2rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow .25s ease;
}

.depot-client-logo:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.depot-client-logo img {
    max-height: 50px;
    max-width: 160px;
    object-fit: contain;
}

/* ---------- Contact Form ---------- */
.depot-contact-section {
    border-top: 1px solid rgba(0,0,0,.06);
}

/* ---------- Location & Contact Info ---------- */
.depot-location-section {
    border-top: 1px solid rgba(0,0,0,.06);
}

.depot-location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    margin-top: 1.8rem;
    align-items: stretch;
}

.depot-location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.depot-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.3rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.06);
    transition: box-shadow .25s ease, transform .25s ease;
}

.depot-info-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    transform: translateY(-2px);
}

.depot-info-icon {
    font-size: 1.7rem;
    line-height: 1;
    flex-shrink: 0;
}

.depot-info-content {
    flex: 1;
    min-width: 0;
}

.depot-info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 .25rem;
    color: var(--text);
    text-align: right;
}

.depot-info-content a,
.depot-info-content p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-dark);
    text-decoration: none;
    margin: 0;
    text-align: right;
    display: block;
    word-break: break-word;
}

.depot-info-content a {
    transition: color .25s ease;
}

.depot-info-content a:hover,
.depot-info-content a:focus-visible {
    color: var(--teal-dark);
    text-decoration: underline;
}

.depot-info-phone {
    direction: ltr;
    unicode-bidi: embed;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem !important;
}

.depot-location-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.06);
    min-height: 380px;
    background: #f0eee5;
}

.depot-location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .depot-location-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .depot-location-map {
        min-height: 300px;
    }
    .depot-location-map iframe {
        min-height: 300px;
    }
}

.depot-contact-form {
    margin-top: 1.5rem;
    background: rgba(255,255,255,.5);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 2rem;
}

.depot-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.depot-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.depot-contact-form .form-group--full {
    margin-bottom: 1.2rem;
}

.depot-contact-form label {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 600;
    color: #000;
    margin-bottom: .4rem;
}

.depot-contact-form input,
.depot-contact-form select,
.depot-contact-form textarea {
    font-family: var(--font-body);
    font-size: .95rem;
    padding: .75rem 1rem;
    border: 1px solid rgba(0,0,0,.12);
    border-radius: var(--radius);
    background: #fff;
    color: #000;
    transition: border-color var(--transition);
}

.depot-contact-form input:focus,
.depot-contact-form select:focus,
.depot-contact-form textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(91,158,150,.15);
}

.depot-contact-form input::placeholder,
.depot-contact-form textarea::placeholder {
    color: #aaa;
}

.depot-contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.depot-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
}

.depot-contact-form .form-submit {
    text-align: center;
    margin-top: .5rem;
}

.depot-contact-form .btn-submit {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: .85rem 3rem;
    background: var(--teal);
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.depot-contact-form .btn-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.depot-contact-form .form-success {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(218,239,234,.5);
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--teal);
}

.depot-contact-form input.invalid,
.depot-contact-form select.invalid,
.depot-contact-form textarea.invalid {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem .8rem;
    padding: .6rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-body);
    font-size: .9rem;
    color: #000;
    cursor: pointer;
    padding: .35rem .7rem;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 6px;
    transition: background var(--transition), border-color var(--transition);
}

.checkbox-label:hover {
    background: rgba(218,239,234,.3);
    border-color: var(--teal);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--teal);
    cursor: pointer;
}

/* File upload */
.file-upload-wrap {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.2rem;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-heading) !important;
    font-size: .9rem !important;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
    margin: 0 !important;
}

.file-upload-btn:hover {
    background: var(--teal-dark);
}

.file-name {
    font-family: var(--font-body);
    font-size: .85rem;
    color: #666;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .depot-hero-img { height: 220px; }
    .depot-wash-grid { grid-template-columns: 1fr; }
    .methods-layout { grid-template-columns: 1fr; }
    .methods-img-wrap { max-width: 320px; margin: 0 auto; }
    .methods-img { height: 280px; }
    .depot-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-tables { grid-template-columns: 1fr; }
    .depot-docs-grid { grid-template-columns: 1fr; }
    .depot-adv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .depot-hero-img { height: 180px; }
    .depot-svc-grid { grid-template-columns: 1fr; }
    .methods-grid { gap: .6rem; }
    .method-tag { font-size: .9rem; padding: .5rem 1rem; }
    .dwc-img { height: 140px; }
    .depot-svc-photo { height: 140px; }
    .depot-adv-img { height: 140px; }
    .depot-contact-form .form-row { grid-template-columns: 1fr; }
    .depot-contact-form { padding: 1.2rem; }
}
