/* ═══════════════════════════════════════════════════
   Robus Umzüge – Homepage Premium
   ═══════════════════════════════════════════════════ */

.home-page { overflow-x: hidden; }

.home-hero { min-height: 92vh; }
.home-hero-bg { animation: homeKenBurns 22s ease-in-out infinite alternate; }
@keyframes homeKenBurns {
    from { transform: scale(1.06); }
    to { transform: scale(1.14); }
}

.home-hero-grid { align-items: center; }

.home-btn-glow {
    box-shadow: 0 8px 32px rgba(64, 145, 108, 0.45);
    transition: box-shadow 0.3s, transform 0.3s;
}
.home-btn-glow:hover {
    box-shadow: 0 12px 40px rgba(64, 145, 108, 0.6);
    transform: translateY(-2px);
}

.home-hero-thumbs {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.65rem;
    z-index: 3;
    padding: 0.5rem 0.75rem;
    background: rgba(15, 35, 24, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.15);
}
.home-hero-thumbs img {
    width: 52px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid rgba(201, 162, 39, 0.5);
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}
.home-hero-thumbs img:hover { opacity: 1; transform: scale(1.08); }

/* MARQUEE */
.home-marquee {
    overflow: hidden;
    background: linear-gradient(90deg, #0f2418, #1b4332, #0f2418);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.home-marquee-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: homeMarquee 40s linear infinite;
}
.home-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.home-marquee-item i {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #c9a227;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.6);
}
@keyframes homeMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* STATS */
.home-stats { margin-top: -3rem; position: relative; z-index: 5; }
.home-stat-item strong { font-size: 2.2rem; }

/* QUICK ACTIONS */
.home-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.home-quick-card {
    display: block;
    padding: 1.75rem 1.5rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: 0 8px 30px rgba(15, 35, 24, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
}
.home-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 35, 24, 0.12);
    border-color: rgba(201, 162, 39, 0.4);
}
.home-quick-card h3 { font-size: 1.05rem; color: #1b4332; margin: 0.75rem 0 0.35rem; }
.home-quick-card p { font-size: 0.88rem; color: #5a6b63; margin: 0; }
.home-quick-card .link-arrow { position: absolute; top: 1.25rem; right: 1.25rem; color: #c9a227; font-weight: 700; }

.home-quick-emergency {
    background: linear-gradient(135deg, #1b4332, #2d6a4f);
    border-color: transparent;
}
.home-quick-emergency h3, .home-quick-emergency p, .home-quick-emergency .link-arrow { color: #fff; }
.home-quick-emergency p { opacity: 0.85; }

.home-quick-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(45, 106, 79, 0.1);
}

/* INTRO */
.home-intro-grid { align-items: center; }
.home-intro-visual { position: relative; }
.home-intro-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 35, 24, 0.15);
}
.home-intro-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
}
.home-intro-badge strong { display: block; font-size: 1rem; }
.home-intro-badge span { font-size: 0.78rem; opacity: 0.85; }
.home-intro-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* FEATURED SERVICES BENTO */
.home-services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.home-service-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 35, 24, 0.08);
    border: 1px solid rgba(45, 106, 79, 0.08);
    transition: transform 0.35s, box-shadow 0.35s;
}
.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 35, 24, 0.14);
}
.home-service-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.home-service-body { padding: 1.25rem 1.5rem 1.5rem; }
.home-service-body h3 { font-size: 1.1rem; color: #1b4332; margin: 0.5rem 0; }
.home-service-body p { font-size: 0.88rem; color: #5a6b63; margin-bottom: 0.75rem; }

/* CALC BANNER */
.home-calc-banner {
    background: linear-gradient(135deg, #0f2418 0%, #1b4332 50%, #2d6a4f 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}
.home-calc-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/stock/pexels-08-truck.jpg') center/cover;
    opacity: 0.15;
}
.home-calc-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: center;
}
.home-calc-text h2 { color: #fff; font-family: 'Playfair Display', serif; }
.home-calc-text p { color: rgba(255,255,255,0.8); }
.home-calc-text .section-tag { color: #e8d48b; }

.home-calc-widget { padding: 1.75rem; text-align: center; }
.home-calc-preview {
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 14px;
}
.home-calc-preview span { display: block; font-size: 0.82rem; color: #5a6b63; }
.home-calc-preview strong { display: block; font-size: 2rem; color: #1b4332; margin: 0.25rem 0; }
.home-calc-preview small { font-size: 0.75rem; color: #7a8b83; }

/* PROCESS */
.home-process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
}
.home-process-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    z-index: 0;
}
.home-process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: 0 8px 30px rgba(15, 35, 24, 0.06);
}
.home-process-num {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b4332, #40916c);
    color: #e8d48b;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}
.home-process-step h4 { color: #1b4332; margin-bottom: 0.5rem; }
.home-process-step p { font-size: 0.88rem; color: #5a6b63; margin: 0; }

/* EQUIPMENT */
.home-equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.home-equipment-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 35, 24, 0.08);
    border: 1px solid rgba(45, 106, 79, 0.08);
}
.home-equipment-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}
.home-equipment-body { padding: 1.25rem; }
.home-equipment-body h4 { color: #1b4332; margin: 0.5rem 0 0.35rem; }
.home-equipment-body p { font-size: 0.85rem; color: #5a6b63; margin: 0; }

/* COMPARE */
.home-compare-table {
    max-width: 720px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(15, 35, 24, 0.1);
    border: 1px solid rgba(45, 106, 79, 0.1);
}
.home-compare-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid rgba(45, 106, 79, 0.08);
    align-items: center;
    text-align: center;
    font-size: 0.92rem;
}
.home-compare-row.head {
    background: #1b4332;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.78rem;
}
.home-compare-row span:first-child { text-align: left; font-weight: 600; color: #1b4332; }
.home-compare-row.head span:first-child { color: transparent; }
.home-compare-row .diy { color: #b54545; }
.home-compare-row .pro { color: #2d6a4f; font-weight: 700; }

/* FAQ */
.home-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.home-faq-item {
    border: 1px solid rgba(45, 106, 79, 0.12);
    border-radius: 14px;
    margin-bottom: 0.65rem;
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.home-faq-item[open] { box-shadow: 0 8px 30px rgba(15, 35, 24, 0.08); }
.home-faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #1b4332;
    cursor: pointer;
    list-style: none;
}
.home-faq-item summary::-webkit-details-marker { display: none; }
.home-faq-item p {
    padding: 0 1.25rem 1rem;
    margin: 0;
    color: #5a6b63;
    line-height: 1.65;
    font-size: 0.92rem;
}

.home-why-list { margin-top: 1.25rem; }

.home-blog-grid { grid-template-columns: repeat(3, 1fr); }

/* RESPONSIVE */
@media (max-width: 1100px) {
    .home-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .home-services-bento { grid-template-columns: repeat(2, 1fr); }
    .home-equipment-grid { grid-template-columns: repeat(2, 1fr); }
    .home-process-track { grid-template-columns: repeat(2, 1fr); }
    .home-process-track::before { display: none; }
    .home-calc-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .home-hero-thumbs { display: none; }
    .home-quick-grid,
    .home-services-bento,
    .home-equipment-grid,
    .home-process-track,
    .home-faq-grid,
    .home-blog-grid { grid-template-columns: 1fr; }
    .home-compare-row { grid-template-columns: 1fr; text-align: left; }
    .home-compare-row span:first-child { font-weight: 700; }
}
