/* Robus Umzüge – Premium UI Layer */

:root {
    --gradient-primary: linear-gradient(135deg, #1b4332 0%, #2d6a4f 45%, #40916c 100%);
    --gradient-gold: linear-gradient(135deg, #c9a227 0%, #e8d48b 50%, #c9a227 100%);
    --gradient-soft: linear-gradient(180deg, #f4f8f6 0%, #ffffff 50%, #f8fbf9 100%);
    --gradient-dark: linear-gradient(135deg, #0f2318 0%, #1b4332 60%, #2d6a4f 100%);
    --shadow-soft: 0 4px 24px rgba(27, 67, 50, 0.08);
    --shadow-card: 0 12px 40px rgba(27, 67, 50, 0.12);
    --shadow-hover: 0 24px 60px rgba(27, 67, 50, 0.18);
    --shadow-luxury: 0 30px 80px rgba(15, 35, 24, 0.15);
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --radius-xl: 24px;
}

body {
    background: var(--gradient-soft);
    background-attachment: fixed;
}

.site-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(45, 106, 79, 0.08);
}

.site-header.scrolled {
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.35);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 35, 28, 0.92) 0%, rgba(27, 67, 50, 0.78) 50%, rgba(33, 37, 41, 0.85) 100%);
}

.hero-text h1 {
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.stats-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::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.04'%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");
}

.service-card, .testimonial-card, .blog-card, .region-card, .trust-card {
    border-radius: 20px;
    border: 1px solid rgba(45, 106, 79, 0.08);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover, .blog-card:hover, .region-card:hover, .trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(45, 106, 79, 0.2);
}

.glass-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-card);
}

.section-head h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section {
    background: var(--gradient-primary);
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Services dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--secondary);
    background: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--primary);
    background: rgba(45, 106, 79, 0.08);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 520px;
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(45, 106, 79, 0.1);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
    max-height: 320px;
    overflow-y: auto;
}

.nav-dropdown-grid a {
    padding: 0.6rem 0.85rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.nav-dropdown-grid a:hover {
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
}

.nav-dropdown-all {
    display: block;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

.mobile-services summary {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.mobile-services-list {
    padding: 0 1rem 0.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-services-list a {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Calculator */
.calculator-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: start;
}

.calculator-form { padding: 2rem; }

.calculator-result {
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(45, 106, 79, 0.2);
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    font-family: var(--font-display);
}

.price-display span:first-child,
.price-display span:nth-child(3) {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
}

.price-sep { color: var(--gray-600); font-size: 1.5rem; }

.calculator-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.footer-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: italic;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.page-hero::after {
    background: linear-gradient(135deg, rgba(15, 35, 28, 0.88), rgba(33, 37, 41, 0.82));
}

@media (max-width: 1024px) {
    .calculator-layout { grid-template-columns: 1fr; }
    .nav-dropdown-menu { display: none; }
}

@media (max-width: 768px) {
    .section-head h2 {
        -webkit-text-fill-color: var(--primary-dark);
        background: none;
    }
}

/* ─── Prose / Blog & Service Content ─── */
.prose-content,
.service-content-card .prose-content {
    line-height: 1.75;
    font-size: 1.02rem;
    color: var(--secondary);
}

.prose-content h2,
.blog-content.prose-content h2 {
    margin: 2.25rem 0 1rem;
    padding-top: 0.5rem;
    color: var(--primary-dark);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    border-top: 1px solid var(--gray-200);
}

.prose-content h2:first-child,
.blog-content.prose-content h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.prose-content h3,
.blog-content.prose-content h3 {
    margin: 1.5rem 0 0.65rem;
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 600;
}

.prose-content p,
.blog-content.prose-content p {
    margin-bottom: 1.15rem;
    color: var(--secondary);
}

.prose-content ul,
.prose-content ol,
.blog-content.prose-content ul {
    margin: 0 0 1.25rem 1.35rem;
    padding-left: 0.5rem;
}

.prose-content li,
.blog-content.prose-content li {
    margin-bottom: 0.5rem;
    list-style: disc;
}

.prose-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose-content strong {
    color: var(--dark);
    font-weight: 600;
}

/* ─── Service Detail Page ─── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: 0.6; }

.service-page-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}

.service-content-card { padding: 2.5rem; }

.service-benefits-block,
.service-faq-block {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: var(--shadow-soft);
}

.service-benefits-block h2,
.service-faq-block h2 {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
}

.service-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    list-style: none;
}

.service-benefits-grid li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--secondary);
}

.service-benefits-grid svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.service-faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 0.85rem 0;
}

.service-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
}

.service-faq-item summary::-webkit-details-marker { display: none; }

.service-faq-item p {
    margin-top: 0.65rem;
    color: var(--secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-sidebar-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-sidebar-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.service-sidebar-card h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.service-sidebar-card p {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.service-sidebar-card .btn { margin-bottom: 0.5rem; }

.service-process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-process-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.process-step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-process-list strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.service-process-list p {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin: 0;
}

.service-related-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.service-related-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0.85rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--gray-100);
    text-decoration: none;
    transition: var(--transition);
}

.service-related-list a:hover {
    background: rgba(45, 106, 79, 0.1);
    color: var(--primary);
}

.service-detail-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .service-page-grid { grid-template-columns: 1fr; }
    .service-benefits-grid { grid-template-columns: 1fr; }
    .blog-featured { grid-template-columns: 1fr; }
}

/* ─── Luxury Site Enhancements ─── */
.section {
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, rgba(241, 248, 245, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
}

.glass-card {
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-card);
}

.hero {
    min-height: 92vh;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 55%);
    pointer-events: none;
    z-index: 2;
}

.glass-badge {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.72rem;
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.section-head h2 {
    position: relative;
    padding-bottom: 0.75rem;
}

.section-head h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 999px;
}

.section-head.text-left h2::after {
    left: 0;
    transform: none;
}

.service-card,
.testimonial-card,
.region-card,
.trust-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stats-section {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.page-hero {
    min-height: 420px;
}

.page-hero-blog {
    min-height: 380px;
}

.page-hero-content h1 {
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.cta-section {
    box-shadow: var(--shadow-luxury);
}

.site-footer {
    background: var(--gradient-dark);
}

/* ─── Luxury Blog ─── */
.blog-hero-stats {
    margin-top: 1.25rem;
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
}

.blog-hero-stats strong {
    color: var(--gold-light);
    font-size: 1.1rem;
}

.blog-featured-section {
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

.blog-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(45, 106, 79, 0.12);
    background: #fff;
}

.blog-featured-image {
    position: relative;
    display: block;
    min-height: 360px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-featured:hover .blog-featured-image img {
    transform: scale(1.04);
}

.blog-featured-label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: var(--gradient-gold);
    color: #1a2420;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.blog-featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.blog-featured-body h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0.75rem 0;
    line-height: 1.25;
}

.blog-featured-body h2 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.blog-featured-body h2 a:hover {
    color: var(--primary);
}

.blog-grid-luxury {
    gap: 2rem;
}

.blog-card-luxury {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(45, 106, 79, 0.1);
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.blog-card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(201, 162, 39, 0.35);
}

.blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 35, 24, 0.55) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.blog-card-luxury:hover .blog-card-overlay {
    opacity: 1;
}

.blog-card-luxury .blog-card-image {
    position: relative;
}

.blog-card-luxury .blog-card-body h3 {
    font-size: 1.1rem;
    font-family: var(--font-display);
}

.blog-card-luxury .blog-category {
    background: rgba(45, 106, 79, 0.1);
    padding: 0.2rem 0.55rem;
    border-radius: 4px;
}

.blog-single .page-hero-sm {
    min-height: 340px;
}

.blog-content.prose-content {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(45, 106, 79, 0.08);
    box-shadow: var(--shadow-card);
}

.blog-cta-inline {
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.06) 0%, rgba(201, 162, 39, 0.08) 100%);
    border-radius: var(--radius);
    padding: 1.5rem !important;
    margin-top: 2.5rem !important;
}

/* ─── Forms & Cards luxury ─── */
.form-card {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(45, 106, 79, 0.08);
}

.form-card-lg {
    padding: 2.5rem;
}

.link-arrow {
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--gold);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 240px; }
    .blog-featured-body { padding: 1.75rem; }
}
