/* ============================================
   SCRAPUNCLE - MAIN STYLESHEET
   Color Theme: Green (eco/recycle) + Dark Gray
   ============================================ */

:root {
    --primary: #1fa855;
    --primary-dark: #168a44;
    --primary-light: #e8f8ee;
    --secondary: #2c3e50;
    --accent: #f39c12;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31,168,85,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--secondary);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left span { margin-right: 20px; }
.top-bar-left i { color: var(--primary); margin-right: 5px; }
.top-bar-right a {
    color: var(--white);
    margin-left: 14px;
    font-size: 14px;
    transition: var(--transition);
}
.top-bar-right a:hover { color: var(--primary); }

/* ============ HEADER ============ */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}
.logo i { font-size: 28px; }

.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--primary);
}

.header-actions { display: flex; align-items: center; gap: 16px; }
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}
.mobile-nav-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nav-backdrop {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-backdrop.active { display: block; opacity: 1; }

/* ============ TOAST NOTIFICATIONS ============ */
.toast-success, .toast-error {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 2000;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 380px;
    animation: toastSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    border-left: 5px solid var(--primary);
}
.toast-error { border-left-color: #ef4444; }

.toast-icon {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.toast-error .toast-icon { background: #ef4444; }

.toast-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--text-dark); }
.toast-body p { font-size: 13px; color: var(--text-gray); line-height: 1.4; margin: 0; }

.toast-close {
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    margin-left: auto;
}
.toast-close:hover { color: var(--text-dark); }

@keyframes toastSlideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes toastSlideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}
.toast-success.hiding, .toast-error.hiding {
    animation: toastSlideOut 0.35s ease forwards;
}

@media (max-width: 576px) {
    .toast-success, .toast-error {
        top: auto;
        bottom: 20px;
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

/* ============ ALERTS (legacy, kept for compatibility) ============ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin: 20px auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ============ HERO V2 - ANIMATED SVG + RATE WIDGET ============ */
.hero-v2 {
    position: relative;
    overflow: hidden;
    padding: 60px 0 90px;
    background: #eafaf0;
}
.hero-svg-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-svg-bg svg { width: 100%; height: 100%; display: block; }

.hero-v2-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.hero-v2-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--secondary);
    margin-bottom: 20px;
}
.hero-v2-content h1 span {
    color: var(--primary);
    position: relative;
}
.hero-v2-content p {
    font-size: 17px;
    color: #4b5563;
    max-width: 460px;
    margin-bottom: 30px;
}
.hero-v2-buttons { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 5; }
.hero-v2-buttons .btn-outline {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-dark);
}
.hero-v2-buttons .btn-outline:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}
.hero-v2-buttons .btn-primary {
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}



/* Rate Widget Card */
.rate-widget {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 26px;
    position: relative;
}
.rate-widget-head {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rate-widget-head i { color: var(--accent); }

.rate-widget-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.rate-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.rate-pill:hover { border-color: var(--primary); }
.rate-pill.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.rate-widget-display {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: opacity 0.15s ease;
}
.rate-widget-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}
.rate-widget-display h4 { font-size: 15px; margin-bottom: 2px; }
.rate-widget-price { font-size: 20px; font-weight: 800; color: var(--primary); margin: 0; }
.rate-widget-display small { color: var(--text-gray); font-size: 12px; }

/* ---- SVG Animations ---- */
.hero-cloud { animation: floatCloud 14s ease-in-out infinite; }
.hero-cloud-2 { animation-duration: 18s; animation-delay: -4s; }
@keyframes floatCloud {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

.hero-leaf { animation: leafDrift 9s ease-in-out infinite; transform-origin: center; }
.hero-leaf-2 { animation-duration: 11s; animation-delay: -2s; }
.hero-leaf-3 { animation-duration: 8s; animation-delay: -5s; }
@keyframes leafDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(15deg); }
}

.hero-turbine-blades {
    animation: spinTurbine 6s linear infinite;
    transform-origin: 0 0;
}
.hero-turbine-blades-slow { animation-duration: 8s; }
@keyframes spinTurbine {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-truck { animation: driveTruck 16s linear infinite; }
@keyframes driveTruck {
    0% { transform: translateX(-120px); }
    45% { transform: translateX(1340px); }
    50% { transform: translateX(1340px) scaleX(-1) translateX(-1340px) translateX(-1340px); opacity:0; }
    50.01% { transform: translateX(-120px) scaleX(-1) translateX(0); opacity:0; }
    55% { opacity: 1; }
    100% { transform: translateX(-120px) scaleX(-1) translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-cloud, .hero-leaf, .hero-turbine-blades, .hero-truck { animation: none !important; }
}

@media (max-width: 992px) {
    .hero-v2-inner { grid-template-columns: 1fr; }
    .hero-v2-content { text-align: center; }
    .hero-v2-content p { margin-left: auto; margin-right: auto; }
    .hero-v2-buttons { justify-content: center; }
    .hero-v2-content h1 { font-size: 36px; }
}

@media (max-width: 576px) {
    .hero-v2-buttons {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .hero-v2-buttons .btn.btn-lg {
        flex: 1 1 0;
        padding: 12px 10px;
        font-size: 13px;
        gap: 6px;
        white-space: nowrap;
    }
    .hero-v2-buttons .btn-lg i { font-size: 12px; }
}

@media (max-width: 360px) {
    .hero-v2-buttons .btn.btn-lg { font-size: 11.5px; padding: 10px 6px; }
}



@media (max-width: 576px) {
    .hero-v2 { padding: 40px 0 60px; }
    .hero-v2-content h1 { font-size: 28px; }
    .rate-widget { padding: 20px; }
    .rate-pill { font-size: 11.5px; padding: 7px 12px; }
}



/* ============ HERO SECTION (legacy/unused) ============ */



.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    padding: 70px 0;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}
.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--secondary);
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.hero-stat h3 { font-size: 28px; color: var(--primary); font-weight: 800; }
.hero-stat p { font-size: 14px; color: var(--text-gray); margin: 0; }

.hero-image {
    position: relative;
    text-align: center;
}
.hero-image img {
    width: 100%;
    border-radius: var(--radius);
}
.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

/* ============ SECTION HEADINGS ============ */
.section { padding: 80px 0; }
.section-bg { background: var(--bg-light); }
.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.section-head h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}
.section-head p { color: var(--text-gray); font-size: 16px; }

/* ============ CATEGORY GRID ============ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--white);
}
.category-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.category-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 12px;
    min-height: 36px;
}
.category-rate {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

/* ============ SEARCH BAR ============ */
.search-bar {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}
.search-bar input {
    width: 100%;
    padding: 16px 50px 16px 22px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}
.search-bar input:focus { border-color: var(--primary); }
.search-bar i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.step-card { text-align: center; position: relative; }
.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { color: var(--text-gray); font-size: 14px; }

/* ============ WHY CHOOSE US ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.feature-card h4 { font-size: 16px; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-gray); margin: 0; }

/* ============ RATE TABLE ============ */
.rate-table-wrap {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
}
.rate-table-head {
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    gap: 10px;
}
table.rate-table { width: 100%; border-collapse: collapse; }
table.rate-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}
table.rate-table tr:last-child td { border-bottom: none; }
table.rate-table tr:hover { background: var(--bg-light); }
.rate-name { font-weight: 600; }
.rate-price {
    text-align: right;
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}
.rate-note { font-size: 12px; color: var(--text-gray); display: block; margin-top: 3px; }
.rate-disclaimer {
    background: #fff7ed;
    border-left: 4px solid var(--accent);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #92400e;
    margin-bottom: 30px;
}

/* ============ FORMS ============ */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}
.form-group { margin-bottom: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.form-group label .required { color: #ef4444; }
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus { border-color: var(--primary); }
textarea.form-control { resize: vertical; min-height: 100px; }
.error-text { color: #ef4444; font-size: 13px; margin-top: 6px; display: block; }
.is-invalid { border-color: #ef4444 !important; }

/* ============ ABOUT PAGE ILLUSTRATION ============ */
.about-illustration {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-svg { width: 100%; height: auto; display: block; }

.about-cloud { animation: aboutCloudFloat 13s ease-in-out infinite; }
.about-cloud-2 { animation-duration: 16s; animation-delay: -3s; }
@keyframes aboutCloudFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.about-leaf { animation: aboutLeafDrift 8s ease-in-out infinite; }
.about-leaf-2 { animation-duration: 10s; animation-delay: -3s; }
@keyframes aboutLeafDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(12deg); }
}

.about-kabadiwala { animation: aboutCharBob 3.2s ease-in-out infinite; transform-origin: bottom center; }
@keyframes aboutCharBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.about-arm-swing { animation: aboutArmSwing 2s ease-in-out infinite; transform-origin: 86px 76px; }
@keyframes aboutArmSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-8deg); }
}

@media (prefers-reduced-motion: reduce) {
    .about-cloud, .about-leaf, .about-kabadiwala, .about-arm-swing { animation: none !important; }
}

/* ============ ABOUT PAGE ============ */
.about-hero {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.about-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 10px; }
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-content img { border-radius: var(--radius); }
.about-text h2 { font-size: 28px; margin-bottom: 16px; color: var(--secondary); }
.about-text p { color: var(--text-gray); margin-bottom: 16px; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}
.stat-box {
    text-align: center;
    background: var(--primary-light);
    padding: 20px;
    border-radius: var(--radius);
}
.stat-box h3 { font-size: 30px; color: var(--primary); font-weight: 800; }
.stat-box p { font-size: 13px; color: var(--text-gray); margin: 0; }

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}
.contact-info-card {
    background: var(--secondary);
    color: var(--white);
    padding: 36px;
    border-radius: var(--radius);
}
.contact-info-card h3 { font-size: 22px; margin-bottom: 24px; }
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info-item i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-item h5 { font-size: 14px; margin-bottom: 3px; opacity: 0.7; }
.contact-info-item p, .contact-info-item a { font-size: 15px; color: var(--white); }
.map-embed {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 30px;
}
.map-embed iframe { width: 100%; height: 300px; border: 0; }

/* ============ FAQ ACCORDION ============ */
.faq-wrap {
    max-width: 780px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active { border-color: var(--primary); }

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary-dark); }
.faq-item.active .faq-question { color: var(--primary-dark); }
.faq-question i {
    font-size: 13px;
    color: var(--text-gray);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 22px;
    background: var(--white);
}
.faq-answer p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    padding-bottom: 18px;
    margin: 0;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 22px; }

/* ============ CUSTOMER REVIEWS ============ */
.review-overall {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 36px;
}
.review-overall-score {
    text-align: center;
    flex-shrink: 0;
}
.review-overall-score strong {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}
.review-stars { margin: 8px 0 6px; }
.review-stars i, .review-card-stars i { color: #f59e0b; font-size: 14px; }
.review-overall-score span { font-size: 12px; color: var(--text-gray); }

.review-overall-bars { flex: 1; }
.review-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-bar-row span { font-size: 12px; color: var(--text-gray); width: 28px; }
.review-bar-row small { font-size: 11.5px; color: var(--text-gray); width: 28px; }
.review-bar {
    flex: 1;
    height: 7px;
    background: var(--border);
    border-radius: 50px;
    overflow: hidden;
}
.review-bar div {
    height: 100%;
    background: var(--primary);
    border-radius: 50px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.review-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.review-avatar {
    width: 42px; height: 42px; min-width: 42px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}
.review-card-head h5 { font-size: 14.5px; font-weight: 600; margin-bottom: 1px; }
.review-card-head span { font-size: 12px; color: var(--text-gray); }
.review-card-stars { margin-left: auto; }
.review-card-stars i { font-size: 12px; }
.review-card p {
    font-size: 13.5px;
    color: var(--text-gray);
    line-height: 1.65;
    margin-bottom: 14px;
}
.review-card small {
    font-size: 11.5px;
    color: var(--primary-dark);
    font-weight: 600;
}
.review-card small i { margin-right: 4px; }

@media (max-width: 768px) {
    .review-overall { flex-direction: column; gap: 20px; text-align: center; padding: 22px; }
    .review-bar-row span, .review-bar-row small { width: 22px; }
    .review-grid { grid-template-columns: 1fr; }
    .faq-question { font-size: 14px; padding: 16px 18px; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--bg-light); }

.testi-slider-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 52px;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 30px;
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
    position: relative;
}
.testi-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }

.testi-quote i {
    font-size: 28px;
    color: var(--primary);
    opacity: 0.25;
}

.testi-card p {
    font-size: 14.5px;
    color: var(--text-gray);
    line-height: 1.75;
    flex: 1;
    margin: 0;
}

.testi-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testi-stars i { color: #f59e0b; font-size: 13px; }

.testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
}
.testi-author span {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    text-align: right;
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 50px;
}

/* Arrows */
.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: var(--white);
    border: 1px solid var(--border);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 5;
}
.testi-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.testi-prev { left: -4px; }
.testi-next { right: -4px; }

@media (max-width: 992px) {
    .testi-card { min-width: calc(50% - 12px); }
    .testi-prev { left: 0; }
    .testi-next { right: 0; }
}
@media (max-width: 576px) {
    .testi-card {
        min-width: 100%;
        padding: 24px 20px;
    }
    .testi-arrow { display: none; }
    .testi-card p { font-size: 13.5px; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}
.cta-banner h2 { font-size: 30px; margin-bottom: 14px; font-weight: 800; }
.cta-banner p { margin-bottom: 26px; opacity: 0.95; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--secondary); color: var(--white); }

/* ============ FOOTER ============ */
.main-footer { background: var(--secondary); color: #d1d5db; padding-top: 60px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}
.footer-col p { font-size: 14px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; margin-bottom: 14px; }
.footer-contact li i { color: var(--primary); margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 16px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

/* ============ FLOATING BUTTONS ============ */
.float-btn {
    position: fixed;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-float { background: #25d366; bottom: 90px; right: 24px; }
.call-float { background: var(--primary); bottom: 24px; right: 24px; }

/* ============ STATUS BADGES (admin) ============ */
.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-secondary { background: #e5e7eb; color: #374151; }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .about-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-left span:nth-child(2) { display: none; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        transition: 0.3s ease;
        padding: 80px 24px 24px;
        z-index: 1001;
    }
    .main-nav.active { right: 0; }
    .main-nav ul { flex-direction: column; gap: 20px; }
    .mobile-nav-close { display: flex; }
    .mobile-toggle { display: block; }
    .header-actions .btn-primary {
        padding: 9px 16px;
        font-size: 13px;
        gap: 6px;
    }
    .hero-content h1 { font-size: 30px; }
    .section { padding: 50px 0; }
    .section-head h2 { font-size: 26px; }
    .form-row { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
    .stats-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: left; }
    .hero-stats { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .category-card { padding: 20px 14px; }
    .hero-content h1 { font-size: 26px; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; }
    .whatsapp-float { bottom: 80px; right: 16px; }
    .call-float { bottom: 20px; right: 16px; }
    .header-actions .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }
    .logo span { font-size: 18px; }
}



/* ============ TESTIMONIALS (3-per-row carousel) ============ */
.testimonials-section { background: var(--bg-light); }

.testi-slider-wrap {
    position: relative;
    padding-bottom: 46px;
}

.testi-viewport {
    overflow: hidden;
    border-radius: 4px;
}

.testi-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.testi-quote i { font-size: 22px; color: var(--primary); opacity: 0.35; }

.testi-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testi-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testi-card-avatar {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testi-author { display: flex; flex-direction: column; min-width: 0; }
.testi-author strong { font-size: 14.5px; color: var(--text-dark); }
.testi-author span { font-size: 12px; color: var(--text-gray); }

.testi-stars i { color: #f59e0b; font-size: 13px; }

/* Featured (green) variant */
.testi-card-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: transparent;
}
.testi-card-featured .testi-quote i { color: var(--white); opacity: 0.5; }
.testi-card-featured p { color: rgba(255,255,255,0.95); }
.testi-card-featured .testi-footer { border-top-color: rgba(255,255,255,0.25); }
.testi-card-featured .testi-card-avatar { background: var(--white); color: var(--primary-dark); }
.testi-card-featured .testi-author strong { color: var(--white); }
.testi-card-featured .testi-author span { color: rgba(255,255,255,0.8); }
.testi-card-featured .testi-stars i { color: #ffe08a; }

/* Arrows */
.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 5;
    box-shadow: var(--shadow);
}
.testi-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.testi-prev { left: -4px; }
.testi-next { right: -4px; }

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.testi-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 50px;
}

@media (max-width: 992px) {
    .testi-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 576px) {
    .testi-card { flex: 0 0 100%; padding: 24px 20px; }
    .testi-card p { font-size: 14px; }
    .testi-arrow { display: none; }
}

/* ---- Mobile hero background toggle ---- */
.hero-svg-bg-mobile { display: none; }

@media (max-width: 768px) {
    .hero-svg-bg-desktop { display: none; }
    .hero-svg-bg-mobile { display: block; }
}

/* ---- Mobile SVG Animations ---- */
.hero-glow-m { animation: glowPulseM 4.5s ease-in-out infinite; }
@keyframes glowPulseM {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 0.65; }
}

.hero-leaf-m { animation: leafDriftM 7s ease-in-out infinite; transform-origin: center; }
.hero-leaf-m2 { animation-duration: 9s; animation-delay: -2s; }
.hero-leaf-m3 { animation-duration: 8s; animation-delay: -4s; }
.hero-leaf-m4 { animation-duration: 6.5s; animation-delay: -1.5s; }
@keyframes leafDriftM {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(14deg); }
}

.hero-recycle-m {
    animation: spinRecycleM 9s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes spinRecycleM {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-coin-m { animation: coinFloatM 4s ease-in-out infinite; }
@keyframes coinFloatM {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.hero-truck-m { animation: driveTruckM 9s linear infinite; }
@keyframes driveTruckM {
    0%   { transform: translateX(-60px); }
    48%  { transform: translateX(430px); }
    50%  { transform: translateX(430px) scaleX(-1) translateX(-430px) translateX(-430px); opacity: 0; }
    50.01% { transform: translateX(-60px) scaleX(-1) translateX(0); opacity: 0; }
    55%  { opacity: 1; }
    100% { transform: translateX(-60px) scaleX(-1) translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow-m, .hero-leaf-m, .hero-recycle-m, .hero-coin-m, .hero-truck-m {
        animation: none !important;
    }
}


.logo img.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img.logo-img {
        height: 34px;
    }
}