/* ============================================
   CDA ENTSORGUNG - Main Stylesheet
   ============================================ */

/* Root Variables */
:root {
    --primary-gray: #3d3d3d;
    --secondary-gray: #6b7280;
    --light-gray: #f5f5f5;
    --accent-yellow: #FFD700;
    --dark-accent: #b8960f;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-gray: #e5e7eb;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Global Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

a {
    color: var(--primary-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-yellow);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* ============================================
   Header Styles
   ============================================ */

.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Top */
.header-top {
    background-color: var(--primary-gray);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info a {
    color: var(--white);
    font-size: 13px;
}

.contact-info a:hover {
    color: var(--accent-yellow);
}

.header-actions {
    display: flex;
    gap: 25px;
}

.header-actions .link {
    color: var(--white);
    font-size: 13px;
}

.header-actions .link:hover {
    color: var(--accent-yellow);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

/* Logo */
.logo {
    margin-right: 40px;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.logo-image {
    display: block;
    height: 110px;
    width: auto;
}

.logo-tagline {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    text-align: center;
    white-space: nowrap;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-gray);
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: var(--accent-yellow);
    letter-spacing: 3px;
    font-weight: 600;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-gray);
    font-weight: 500;
    padding: 8px 0;
    display: block;
    line-height: 1.35;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

/* Dropdown Menu */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 4px;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    padding: 10px 0;
}

.dropdown-menu li {
    border-bottom: 1px solid var(--border-gray);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    line-height: 1.45;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--accent-yellow);
    padding-left: 25px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url('../img/cda.jpg') center center / cover no-repeat;
    color: var(--white);
    padding: 110px 20px 90px;
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    pointer-events: none;
}

.hero::before {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.55), rgba(255, 215, 0, 0));
    top: 40px;
    right: 8%;
    animation: floatOrb 8s ease-in-out infinite;
}

.hero::after {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
    left: 6%;
    bottom: 30px;
    animation: floatOrb 10s ease-in-out infinite reverse;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    font-size: 14px;
    font-weight: 600;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: 0 0 0 rgba(255, 215, 0, 0.65);
    animation: pulseDot 1.8s infinite;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 18px;
    font-weight: 700;
    line-height: 1.08;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 26px;
    opacity: 0.9;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 760px;
}

.hero-stat {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.hero-stat strong {
    display: block;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--white);
}

.hero-stat span {
    font-size: 14px;
    opacity: 0.92;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--primary-gray);
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
}

.hero-showcase {
    display: grid;
    gap: 18px;
}

.hero-layout > *,
.subpage-grid > *,
.split-grid > *,
.flow-grid > *,
.size-cards > *,
.waste-grid > *,
.reviews-grid > *,
.faq-grid > *,
.container-grid > * {
    min-width: 0;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 22px;
    color: var(--white);
    animation: cardFloat 7s ease-in-out infinite;
}

.floating-card:nth-child(2) {
    animation-delay: 0.6s;
}

.floating-card strong {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.floating-card p {
    font-size: 14px;
    opacity: 0.92;
    margin-bottom: 14px;
}

.floating-card ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.floating-card li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
}

.floating-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
}

.showcase-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.showcase-highlight span {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.16);
    color: var(--accent-yellow);
    font-weight: 700;
    font-size: 13px;
}

.flow-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.flow-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.flow-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.flow-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--accent-yellow), #ffe88a);
    color: var(--primary-gray);
    font-weight: 800;
    font-size: 20px;
}

.flow-card p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.flow-link {
    color: var(--primary-gray);
    font-weight: 700;
}

.postcode-shell {
    max-width: 980px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.12);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 36px;
}

.trust-strip {
    background-color: var(--primary-gray);
    color: var(--white);
    padding: 14px 20px;
}

.trust-strip .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    text-align: center;
}

.trust-strip-item {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.section-intro {
    max-width: 760px;
    margin: 12px auto 0;
    text-align: center;
    color: var(--text-light);
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent-yellow);
    color: var(--primary-gray);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: var(--dark-accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Main Content Sections
   ============================================ */

.main-content {
    padding: 40px 0;
}

section {
    padding: 60px 20px;
    margin-bottom: 20px;
}

section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-gray);
}

section h3 {
    font-size: 24px;
    color: var(--primary-gray);
    margin-bottom: 20px;
}

/* Postcode Calculator Section */
.postcode-section {
    background-color: var(--light-gray);
}

.postcode-form {
    margin: 30px 0;
}

.calculator-form {
    display: grid;
    gap: 26px;
}

.calculator-step {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(249, 250, 251, 0.92) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.calculator-step-disabled {
    opacity: 0.5;
}

.calculator-step::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 215, 0, 0) 0%, rgba(255, 215, 0, 0.8) 50%, rgba(255, 215, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calculator-step-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.25s ease;
}

.calculator-step-trigger:disabled {
    cursor: not-allowed;
}

.calculator-step.is-open {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.35);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.calculator-step.is-open::before,
.calculator-step.is-complete::before {
    opacity: 1;
}

.calculator-step.is-open .calculator-step-trigger {
    background: linear-gradient(180deg, rgba(255, 248, 220, 0.42) 0%, rgba(255, 255, 255, 0) 100%);
}

.step-heading-group {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 6px;
}

.step-heading-group strong {
    color: var(--primary-gray);
    font-size: 20px;
    letter-spacing: -0.02em;
}

.step-summary {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.12);
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.25s ease;
}

.calculator-step.is-complete .step-summary {
    background: rgba(255, 215, 0, 0.16);
    border-color: rgba(255, 215, 0, 0.34);
    color: var(--primary-gray);
    box-shadow: 0 8px 18px rgba(255, 215, 0, 0.12);
}

.step-toggle {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.step-toggle::before,
.step-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--primary-gray);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.step-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.calculator-step.is-open .step-toggle::after {
    opacity: 0;
}

.calculator-step-body {
    display: none;
    padding: 0 24px 24px;
}

.calculator-step.is-open .calculator-step-body {
    display: block;
}

.calculator-step.is-complete {
    border-color: rgba(255, 215, 0, 0.55);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.1);
}

.step-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gray);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.18);
}

.step-copy {
    margin: 6px 0 0;
    color: var(--text-light);
}

.waste-option-grid,
.size-option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.selection-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    background: var(--white);
    cursor: pointer;
    text-align: left;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.waste-selection-card {
    padding: 0;
    gap: 0;
    overflow: hidden;
}

.selection-card-media {
    position: relative;
    display: block;
    width: 100%;
    height: 132px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden;
}

.selection-card-media::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 48px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.24) 100%);
}

.selection-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.waste-selection-card:hover .selection-card-media img,
.waste-selection-card.is-selected .selection-card-media img {
    transform: scale(1.04);
}

.selection-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    padding: 18px;
}

.selection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.selection-card strong {
    color: var(--primary-gray);
    font-size: 16px;
}

.selection-card span {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.selection-card em {
    color: var(--primary-gray);
    font-style: normal;
    font-weight: 700;
}

.selection-card.is-selected {
    border-color: var(--accent-yellow);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #fff8cf 100%);
}

.waste-selection-card.is-selected .selection-card-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 248, 207, 0.92) 100%);
}

.calculator-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 4px;
}

.calculator-note {
    margin-top: 0;
}

.btn-primary:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.form-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.form-group input {
    padding: 12px 20px;
    border: 2px solid var(--border-gray);
    border-radius: 4px;
    font-size: 16px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.18);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #facc15 0%, #f59e0b 100%);
    color: var(--primary-gray);
    transform: translateY(-2px);
}

.result-box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 249, 219, 0.72) 100%);
    border: 1px solid rgba(255, 215, 0, 0.42);
    border-radius: 18px;
    padding: 28px;
    margin-top: 20px;
    text-align: left;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.14);
}

.result-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.result-summary strong {
    font-size: clamp(32px, 5vw, 44px);
    color: var(--primary-gray);
}

.result-summary span {
    color: var(--text-light);
    font-size: 15px;
}

.calculator-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.breakdown-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.breakdown-item span {
    color: var(--text-light);
    font-size: 13px;
}

.breakdown-item strong {
    color: var(--primary-gray);
    font-size: 16px;
}

.distance-info {
    margin-bottom: 20px;
}

.distance-info p {
    font-size: 18px;
    margin: 10px 0;
}

.btn-secondary {
    background-color: var(--accent-yellow);
    color: var(--primary-gray);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark-accent);
    color: var(--white);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -18px, 0);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

@keyframes mobileSoftReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Containers Section */
.containers-section {
    background-color: var(--white);
}

.container-types {
    margin-top: 40px;
}

.type-group {
    margin-bottom: 60px;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.container-card {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.container-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-yellow);
}

.container-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.container-price {
    color: var(--primary-gray);
    font-weight: 700;
}

.container-dimensions {
    color: var(--text-light);
    font-size: 13px;
}

.container-visual {
    margin-bottom: 15px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-svg {
    width: 100%;
    height: 100%;
}

.container-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.waste-types {
    background-color: var(--light-gray);
}

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

.waste-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.waste-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.waste-card-visual {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4b5563, #6b7280);
    color: var(--white);
    font-size: 54px;
}

.waste-card-visual-image {
    padding: 0;
    background: #f3f4f6;
}

.waste-card-visual-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.waste-card-content {
    padding: 22px;
}

.waste-card-content h3 {
    margin-bottom: 10px;
}

.waste-card-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 14px;
}

.container-card h4 {
    font-size: 22px;
    color: var(--primary-gray);
    margin-bottom: 10px;
}

.container-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.btn-link {
    color: var(--accent-yellow);
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--primary-gray);
    border-bottom-color: var(--accent-yellow);
}

/* Why Us Section */
.why-us {
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin: 15px 0;
    font-size: 20px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Payment Section */
.payment-section {
    background-color: var(--white);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.payment-method {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.payment-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.payment-method p {
    font-weight: 600;
    color: var(--primary-gray);
}

.reviews-section {
    background-color: var(--light-gray);
}

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

.review-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
}

.review-stars {
    color: var(--accent-yellow);
    font-size: 20px;
    margin-bottom: 14px;
}

.review-card p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-gray);
}

.faq-preview {
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-yellow);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.faq-item p {
    color: var(--text-light);
    font-size: 14px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
}

.cta-row a,
.hero-actions a {
    justify-content: center;
    text-align: center;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.social-links a[aria-disabled="true"] {
    opacity: 0.7;
    cursor: not-allowed;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.info-list li {
    padding-left: 24px;
    position: relative;
    color: var(--text-light);
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--accent-yellow);
    font-weight: 700;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-grid .full-width {
    grid-column: 1 / -1;
}

.contact-form-grid label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-gray);
}

.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font: inherit;
}

.contact-form-grid textarea {
    min-height: 140px;
    resize: vertical;
}

.form-note {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 14px;
}

.visual-panel {
    background: linear-gradient(145deg, #f3f4f6, #ffffff);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--shadow);
    text-align: center;
}

.visual-panel img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

.about-visual-panel {
    padding: 18px;
    overflow: hidden;
}

.about-visual-panel img {
    display: block;
    width: 100%;
    max-width: none;
    height: clamp(280px, 38vw, 420px);
    border-radius: 14px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}

.size-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
}

.size-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 26px;
    transition: all 0.3s ease;
}

.size-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-yellow);
}

.size-card h3 {
    margin-bottom: 8px;
    color: var(--primary-gray);
}

.size-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.size-card .container-price {
    display: inline-block;
    margin-bottom: 8px;
}

.size-card .btn-link {
    margin-top: 8px;
    display: inline-flex;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.stat-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 26px;
    color: var(--primary-gray);
    margin-bottom: 6px;
}

/* Service Areas Section */
.service-areas {
    background-color: var(--primary-gray);
    color: var(--white);
}

.service-areas h2 {
    color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.area-card {
    background-color: rgba(255, 215, 0, 0.1);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--accent-yellow);
    transition: all 0.3s ease;
}

.area-card:hover {
    background-color: var(--accent-yellow);
    color: var(--primary-gray);
}

.area-card h3 {
    color: var(--accent-yellow);
    margin-bottom: 10px;
}

.area-card:hover h3 {
    color: var(--primary-gray);
}

.area-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   Subpage Layout
   ============================================ */

.subpage-hero {
    padding: 80px 20px;
    background: linear-gradient(rgba(31, 41, 55, 0.78), rgba(55, 65, 81, 0.78)), url('../img/cda.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.subpage-hero h1 {
    font-size: 46px;
    margin-bottom: 14px;
    color: var(--white);
}

.subpage-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
    opacity: 0.95;
}

.detail-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.detail-hero-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-yellow);
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0.16);
}

.subpage-content {
    padding: 60px 20px;
}

.subpage-content.alt {
    background-color: var(--light-gray);
}

.subpage-card {
    background: var(--white);
    padding: 32px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
}

.subpage-card h2,
.subpage-card h3 {
    margin-bottom: 14px;
}

.subpage-card p,
.subpage-card li {
    color: var(--text-light);
    line-height: 1.75;
}

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

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

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.pill-list span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.12);
    color: var(--primary-gray);
    font-size: 14px;
    font-weight: 600;
}

.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-yellow);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--primary-gray);
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
}

.feature-card.accented {
    border-top: 4px solid var(--accent-yellow);
}

.feature-card.accepted {
    background: linear-gradient(180deg, #ffffff 0%, #f8fff1 100%);
}

.feature-card.restricted {
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 100%);
}

.article-card {
    background: var(--white);
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-yellow);
}

.article-card h3 {
    margin-bottom: 12px;
}

.article-card p {
    color: var(--text-light);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-yellow);
    font-weight: 700;
}

.info-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.12);
    color: var(--primary-gray);
    border: 1px solid rgba(255, 215, 0, 0.28);
    font-weight: 600;
}

.timeline-note {
    margin-top: 14px;
    color: var(--text-light);
    font-size: 14px;
}

.legal-content h3 {
    margin: 22px 0 10px;
    color: var(--primary-gray);
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary-gray), var(--secondary-gray));
    color: var(--white);
    text-align: center;
    padding: 42px 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-banner p {
    margin-bottom: 24px;
    opacity: 0.92;
}

.cta-banner .cta-btn {
    margin-top: 6px;
}

/* ============================================
   Footer Styles
   ============================================ */

.footer {
    background-color: var(--primary-gray);
    color: var(--white);
    margin-top: 40px;
}

.footer-content {
    padding: 60px 20px 40px;
}

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-yellow);
    opacity: 1;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    font-size: 14px;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 15px;
    }

    .header-top .container-fluid {
        flex-direction: column;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input {
        min-width: 100%;
    }

    section {
        padding: 40px 20px;
    }

    section h2 {
        font-size: 28px;
    }

    .container-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid,
    .payment-methods,
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 82px;
    }

    .logo-text {
        font-size: 24px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    section h2 {
        font-size: 24px;
    }

    section h3 {
        font-size: 18px;
    }

    .container-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
