/* =============================================
   CERTIFICATION STRIP
   ============================================= */
.cert-strip {
    background: #0d1117;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cert-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
}
.cert-item img {
    height: 64px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.25s;
}
.cert-item img:hover { opacity: 1; }
.cert-sep {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .cert-item { padding: 10px 20px; }
    .cert-item img { height: 44px; }
    .cert-sep { height: 32px; }
}
@media (max-width: 480px) {
    .cert-strip-inner { gap: 8px; }
    .cert-sep { display: none; }
    .cert-item { padding: 8px 14px; }
    .cert-item img { height: 38px; }
}

/* =============================================
   FOOTER CTA BAND
   ============================================= */
.footer-cta-band {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.footer-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-cta-text h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
}
.footer-cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.82);
    margin: 0;
}
.footer-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: #fff;
    color: #c0392b;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-cta-primary:hover {
    background: #f8e9e8;
    color: #922b21;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.6);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s, color 0.2s;
}
.btn-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   FOOTER MAIN
   ============================================= */
.footer-main {
    background: #0a0f0c;
    padding: 80px 0 0;
    color: rgba(255,255,255,0.65);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}
.footer-logo-link:hover { opacity: 0.85; }
.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}
.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0 0 20px;
    max-width: 280px;
}
.footer-icat {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.footer-icat:hover { opacity: 1; }
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
    border: 1px solid rgba(255,255,255,0.12);
}
.footer-social:hover { transform: translateY(-3px); color: #fff; }
.footer-social--fb:hover { background: #1877f2; border-color: #1877f2; }
.footer-social--yt:hover { background: #ff0000; border-color: #ff0000; }
.footer-social--ig:hover { background: #dc2743; border-color: #dc2743; }
.footer-social--wa:hover { background: #25d366; border-color: #25d366; }

.footer-col-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: #2ecc71;
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}
.footer-links a:hover {
    color: #2ecc71;
    padding-left: 6px;
}
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.55;
}
.fci-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(46,204,113,0.12);
    color: #2ecc71;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background 0.2s;
}
.footer-contact-list li:hover .fci-icon {
    background: rgba(46,204,113,0.22);
}
.footer-contact-list a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-list a:hover { color: #2ecc71; }

/* Footer Bottom Bar */
.footer-bottom {
    background: #060a08;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
}
.footer-copy,
.footer-made,
.footer-dev {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.footer-sep {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.18);
    padding: 0 10px;
    user-select: none;
}
.footer-dev a,
.footer-policy-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-dev a:hover,
.footer-policy-link:hover {
    color: #2ecc71;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 640px) {
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-actions { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-main { padding: 56px 0 0; }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
    }
    .footer-sep { display: none; }
    .footer-copy,
    .footer-made,
    .footer-dev,
    .footer-dev a,
    .footer-policy-link { font-size: 0.72rem; }
    .footer-bottom { padding: 16px 0; }
}

/* =============================================
   GLOBAL BUTTON HOVER COLOR FIXES
   (overrides base a:hover{color:dark-green} for
    all buttons that don't explicitly set color)
   ============================================= */
.faq-cta:hover {
    color: #fff;
}
.ev-showcase-btn--primary:hover {
    color: #fff;
}
.ev-showcase-btn--outline:hover {
    color: #fff;
}
.ev-btn-primary:hover {
    color: #fff;
}
.ev-btn-outline:hover {
    color: #fff;
}
.btn-primary:hover,
.btn-green:hover {
    color: #fff;
}

/* =============================================
   PRODUCT ENQUIRY MODAL
   ============================================= */
.ev-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.ev-modal[hidden] { display: none; }

.ev-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.ev-modal-box {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    animation: ev-modal-in 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes ev-modal-in {
    from { opacity: 0; transform: scale(0.92) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Close button */
.ev-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.2s, color 0.2s;
}
.ev-modal-close:hover { background: #c0392b; color: #fff; }

/* Left: Form side */
.ev-modal-left {
    background: #fff;
    padding: 40px 36px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.ev-modal-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c0392b;
    margin: 0 0 6px;
}
.ev-modal-title {
    font-size: 1.55rem;
    font-weight: 900;
    color: #111;
    margin: 0 0 4px;
    line-height: 1.2;
}
.ev-modal-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a7a3c;
    margin: 0 0 24px;
}
.ev-modal-form { flex: 1; }
.ev-mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.ev-mf-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}
.ev-mf-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #555;
}
.ev-mf-field label span { color: #c0392b; }
.ev-mf-field input,
.ev-mf-field textarea {
    padding: 10px 13px;
    border: 1.5px solid #e5e5e5;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #111;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
    background: #fafafa;
}
.ev-mf-field input:focus,
.ev-mf-field textarea:focus {
    border-color: #c0392b;
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
    background: #fff;
}
.ev-mf-field textarea { resize: vertical; }
.ev-modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    background: #c0392b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.3px;
    font-family: inherit;
    margin-top: 4px;
}
.ev-modal-submit:hover { background: #922b21; transform: translateY(-1px); color: #fff; }
.ev-modal-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.ev-enquire-msg {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Right: Image side */
.ev-modal-right {
    background: #f2f2f2;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ev-modal-right-brand { display: none; }
.ev-modal-product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.ev-modal-right-footer { display: none; }

/* Modal Responsive */
@media (max-width: 640px) {
    .ev-modal-box {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }
    .ev-modal-right {
        min-height: 220px;
        order: -1;
    }
    .ev-modal-product-img { object-fit: contain; }
    .ev-modal-left { padding: 24px 20px; }
    .ev-mf-row { grid-template-columns: 1fr; }
}

/* =============================================
   FIXED ENQUIRE NOW TAB
   ============================================= */
.ev-enquire-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px 0 0 12px;
    padding: 18px 10px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.13);
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.07);
    border-right: none;
    transition: box-shadow 0.25s, background 0.25s;
}
.ev-enquire-tab:hover {
    background: #fdf2f1;
    box-shadow: -6px 0 32px rgba(192,57,43,0.18);
}
.ev-enquire-tab__icon {
    width: 38px;
    height: 38px;
    background: #c0392b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, transform 0.25s;
}
.ev-enquire-tab:hover .ev-enquire-tab__icon {
    background: #922b21;
    transform: scale(1.08);
}
.ev-enquire-tab__text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.82rem;
    font-weight: 800;
    color: #c0392b;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.25s;
}
.ev-enquire-tab:hover .ev-enquire-tab__text {
    color: #922b21;
}
@media (max-width: 480px) {
    .ev-enquire-tab { padding: 14px 8px; gap: 8px; }
    .ev-enquire-tab__icon { width: 32px; height: 32px; }
    .ev-enquire-tab__text { font-size: 0.72rem; }
}
