/* VERASOL 1:1 REBUILD — Palace Garden Branded */
:root {
    --pg-mint: #fdf6ea;
    --pg-dark: #1a1a1a;
    --pg-accent: #c17f24;
    --pg-accent-hover: #a86a1a;
    --pg-teal: #c17f24;
    --pg-text: #333;
    --pg-text-light: #666;
    --pg-white: #fff;
    --pg-gray-bg: #fdf6ea;
    --pg-footer-bg: #4a4a4a;
    --pg-radius: 6px;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif !important;
    color: var(--pg-text);
    background: #fff;
    line-height: 1.6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 1. USP BAR */
.usp-bar {
    background: var(--pg-dark);
    color: #fff;
    font-size: .8rem;
    padding: 10px 0;
}

.usp-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.usp-item svg {
    width: 14px;
    height: 14px;
    fill: #a8d5a2;
}

/* 2. HERO */
.hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .45) 100%);
    z-index: 2;
}

.hero-tags {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Gelber äußerer Wrapper = gelber Rand an der Spitze */
.hero-tag-outer {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 50%, calc(100% - 20px) 100%, 0 100%);
    background: var(--pg-accent);
    padding: 3px 6px 3px 0;
}

.hero-tag-outer--1 { width: 420px; }
.hero-tag-outer--2 { width: 340px; }
.hero-tag-outer--3 { width: 260px; }

/* Weißer innerer Tag */
.hero-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--pg-dark);
    padding: 13px 40px 13px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 0 60px;
    display: flex;
    justify-content: flex-end;
}

.hero-text {
    max-width: 600px;
    color: #fff;
}

.hero-text--right {
    text-align: right;
}

.hero-text .sub {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 4px;
    opacity: .9;
}

.hero-text h1 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px;
    text-transform: none;
}

.hero-text .btn-hero {
    display: inline-block;
    background: var(--pg-accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--pg-radius);
    font-weight: 600;
    font-size: .95rem;
}

.hero-text .btn-hero:hover {
    background: var(--pg-accent-hover);
}

.hero-offerte-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    background: var(--pg-accent);
    color: #fff;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}

.hero-offerte-btn::after {
    content: '↓';
    font-size: 1.1rem;
}

.hero-offerte-btn:hover {
    background: var(--pg-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(193, 127, 36, 0.45);
}

.hero-promo {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 3;
    background: var(--pg-accent);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--pg-radius);
    text-align: center;
    max-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.hero-promo .promo-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .9;
}

.hero-promo .promo-value {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 4px 0;
}

.hero-promo .promo-sub {
    font-size: .8rem;
    opacity: .8;
}

/* 3. INTRO 2-COL */
.intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-left h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pg-accent);
    line-height: 1.2;
    text-transform: none;
    margin: 0 0 24px;
}

.intro-left h2 strong {
    font-weight: 700;
    color: var(--pg-accent);
}

.intro-left p {
    color: var(--pg-text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.intro-right {
    background: var(--pg-gray-bg);
    padding: 40px;
    border-radius: var(--pg-radius);
}

.intro-right h3 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pg-accent);
    margin: 0 0 16px;
    line-height: 1.2;
    text-transform: none;
}

.intro-right h3 strong {
    font-weight: 700;
    color: var(--pg-accent);
}

.intro-right p {
    color: var(--pg-text-light);
    font-size: .95rem;
}

.intro-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--pg-accent);
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: var(--pg-radius);
    font-size: .9rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.btn:hover {
    background: var(--pg-accent-hover);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pg-accent);
    color: var(--pg-accent) !important;
}

.btn-outline:hover {
    background: var(--pg-accent);
    color: #fff !important;
}

/* 4. USP IMAGE */
.usp-image-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.usp-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.usp-tags {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.usp-tag {
    background: rgba(255, 255, 255, .92);
    color: var(--pg-dark);
    padding: 14px 28px 14px 20px;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 0 var(--pg-radius) var(--pg-radius) 0;
    position: relative;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .1);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
    padding-right: 40px;
}

/* 4b. VERANDA TEXT BLOCK */
.veranda-text-block {
    padding: 50px 0 60px;
    background: #fff;
    text-align: center;
}

.veranda-text-block h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--pg-accent);
    margin: 0 0 20px;
    text-transform: none;
    line-height: 1.2;
}

.veranda-text-block p {
    color: var(--pg-text-light);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

/* 4c. MATEN SECTION */
.maten-section {
    padding: 60px 0 70px;
    background: var(--pg-gray-bg);
}

.maten-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 36px;
    text-transform: none;
    line-height: 1.2;
    text-align: center;
}

.maten-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.maten-block {
    background: #fff;
    border-radius: var(--pg-radius);
    padding: 24px 20px;
    border-top: 3px solid var(--pg-accent);
}

.maten-block p {
    color: var(--pg-text);
    font-size: 0.88rem;
    margin: 0 0 10px;
    line-height: 1.5;
    font-weight: 500;
}

.maten-block p:last-child {
    margin-bottom: 0;
}

.maten-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.maten-info-block {
    background: #fff;
    border-radius: var(--pg-radius);
    padding: 24px 20px;
    border-top: 3px solid var(--pg-accent);
}

.maten-info-block p {
    color: var(--pg-text);
    font-size: 0.9rem;
    margin: 0 0 12px;
    line-height: 1.5;
}

.maten-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maten-info-block li {
    color: var(--pg-text-light);
    font-size: 0.88rem;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.maten-info-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--pg-accent);
    font-weight: 700;
}

.maten-info-block li.ral-item {
    padding-left: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.maten-info-block li.ral-item::before {
    display: none;
}

.ral-dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

@media(max-width: 1024px) {
    .maten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .maten-info-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .maten-grid {
        grid-template-columns: 1fr;
    }
}

/* VRIJSTAANDE VERANDA */
.vrijstaande-section {
    padding: 80px 0;
    background: var(--pg-gray-bg);
}

.vrijstaande-text {
    max-width: 860px;
    margin: 0 auto 60px;
    text-align: center;
}

.vrijstaande-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--pg-accent);
    margin: 0 0 24px;
}

.vrijstaande-text p {
    color: var(--pg-text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.vrijstaande-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.photo-placeholder {
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .vrijstaande-photos {
        grid-template-columns: 1fr;
    }
}

/* 5. PRODUCT CATEGORIES CAROUSEL */
.categories-section {
    padding: 80px 0;
    background: var(--pg-gray-bg);
}

.section-header {
    margin-bottom: 50px;
}

.section-header .label {
    color: var(--pg-accent);
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pg-accent);
    text-transform: none;
    margin: 0;
    line-height: 1.2;
}

.section-header h2 strong {
    font-weight: 700;
    color: var(--pg-accent);
}

.cat-slide {
    position: relative;
    height: 420px;
    border-radius: var(--pg-radius);
    overflow: hidden;
}

.cat-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.cat-slide:hover img {
    transform: scale(1.05);
}

.cat-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cat-slide-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cat-slide-btn {
    background: #fff;
    color: var(--pg-text);
    padding: 8px 20px;
    border-radius: 99px;
    font-weight: 600;
    font-size: .85rem;
    display: inline-block;
}

/* 6. MAGAZINE */
.magazine-section {
    padding: 80px 0;
    background: #fff;
}

.magazine-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.magazine-content .label {
    color: var(--pg-accent);
    font-size: 1rem;
    margin-bottom: 4px;
}

.magazine-content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--pg-text);
    text-transform: none;
    margin: 0 0 20px;
    line-height: 1.2;
}

.magazine-content p {
    color: var(--pg-text-light);
}

.magazine-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.magazine-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--pg-text);
}

.magazine-list li svg {
    width: 18px;
    height: 18px;
    fill: var(--pg-accent);
    flex-shrink: 0;
}

.magazine-img {
    border-radius: var(--pg-radius);
    overflow: hidden;
}

.magazine-img img {
    width: 100%;
    height: auto;
}

/* 7. QUALITY */
.quality-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}

.quality-img {
    height: 100%;
    min-height: 500px;
}

.quality-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-content {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quality-content .label {
    color: var(--pg-accent);
    font-size: 1rem;
    margin-bottom: 4px;
}

.quality-content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--pg-text);
    text-transform: none;
    margin: 0 0 20px;
    line-height: 1.2;
}

.quality-content p {
    color: var(--pg-text-light);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-weight: 500;
}

.check-list li svg {
    width: 20px;
    height: 20px;
    fill: var(--pg-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* 8. PROJECTS CAROUSEL */
.projects-section {
    padding: 80px 0;
    background: var(--pg-gray-bg);
    position: relative;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.projects-header .left .label {
    color: var(--pg-accent);
    font-size: 1rem;
    margin-bottom: 4px;
}

.projects-header .left h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--pg-text);
    text-transform: none;
    margin: 0;
    line-height: 1.2;
}

.proj-slide {
    position: relative;
    height: 400px;
    border-radius: var(--pg-radius);
    overflow: hidden;
    cursor: pointer;
}

.proj-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.proj-slide:hover img {
    transform: scale(1.05);
}

.proj-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    align-items: flex-start;
}

.proj-slide-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.proj-btn {
    background: #fff;
    color: var(--pg-accent);
    padding: 10px 20px;
    border-radius: var(--pg-radius);
    font-size: .85rem;
    font-weight: 600;
    display: inline-block;
}

/* 9. FAQ */
.faq-section {
    background: #fff;
    overflow: hidden;
    margin: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: stretch;
}

.faq-image {
    overflow: hidden;
    align-self: start;
    position: sticky;
    top: 114px;
}

.faq-image img {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    object-position: top;
    display: block;
}

.faq-content {
    padding: 80px 10% 80px 60px;
}

.faq-content .label {
    color: var(--pg-accent);
    font-size: 1rem;
    margin-bottom: 4px;
}

.faq-content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--pg-text);
    text-transform: none;
    margin: 0 0 30px;
    line-height: 1.2;
}

.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0 18px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pg-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    -webkit-tap-highlight-color: rgba(193, 127, 36, 0.2);
    outline-color: var(--pg-accent);
}

.faq-question:hover {
    background: var(--pg-accent);
    color: #fff;
    transition: background 0.2s, color 0.2s;
}

.faq-question:hover svg {
    fill: #fff;
}

.faq-question.active {
    color: var(--pg-accent);
    background: rgba(193, 127, 36, 0.07);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--pg-text-light);
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-question.active svg {
    transform: rotate(180deg);
    fill: var(--pg-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 8px 0 18px 16px;
    color: var(--pg-text-light);
    font-size: .95rem;
    line-height: 1.7;
}

/* 10. SHOWROOM FINDER */
.showroom-section {
    background: var(--pg-footer-bg);
    padding: 40px 0;
}

.showroom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.showroom-inner .showroom-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.showroom-input {
    display: flex;
    gap: 0;
}

.showroom-input input {
    padding: 12px 20px;
    border: none;
    border-radius: var(--pg-radius) 0 0 var(--pg-radius);
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    width: 280px;
    outline: none;
}

.showroom-input button {
    padding: 12px 24px;
    background: var(--pg-accent);
    color: #fff;
    border: none;
    border-radius: 0 var(--pg-radius) var(--pg-radius) 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
}

.showroom-input button:hover {
    background: var(--pg-accent-hover);
}

/* CONTACT FORM (HOME) */
.home-contact-section {
    padding: 110px 0;
    background: var(--pg-gray-bg);
}

.home-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 8px 0 16px;
}

.home-contact-header p {
    color: var(--pg-text-light);
    font-size: 1rem;
    margin: 0;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: stretch;
}

/* Info cards column */
.home-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

/* USP box at the bottom of sidebar */
.hc-usp-box {
    background: #c17f24;
    border-radius: 10px;
    padding: 28px 24px;
}

.hc-usp-box h4 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 18px;
    font-family: 'Poppins', sans-serif;
}

.hc-usp-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hc-usp-box ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
}

.hc-usp-box ul li::before {
    content: '✓';
    font-weight: 700;
    color: #c17f24;
    background: #fff;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.home-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 10px;
    padding: 20px;
}

.hc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--pg-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.home-contact-card > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hc-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pg-accent);
}

.hc-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.hc-value:hover {
    color: var(--pg-accent);
}

.hc-note {
    font-size: 0.8rem;
    color: #888;
}

/* Form column */
.home-contact-form-wrap {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 14px;
    padding: 40px;
}

.home-contact-form .hcf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.hcf-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hcf-full {
    margin-bottom: 20px;
}

.hcf-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
}

.hcf-group input,
.hcf-group select,
.hcf-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #f7f5f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.hcf-group input::placeholder,
.hcf-group textarea::placeholder {
    color: #aaa;
}

.hcf-group input:focus,
.hcf-group select:focus,
.hcf-group textarea:focus {
    outline: none;
    border-color: var(--pg-accent);
}

.hcf-group select option {
    background: #fff;
}

.hcf-group textarea {
    resize: vertical;
    min-height: 130px;
}

.hcf-dsgvo {
    background: #f0ece5;
    border: 1px solid #e8e0d5;
    border-radius: 8px;
    padding: 18px;
}

.hcf-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

.hcf-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: var(--pg-accent);
    background: #111;
    border: 1px solid #444;
}

.hcf-checkbox-label a {
    color: var(--pg-accent);
    text-decoration: underline;
}

.hcf-submit {
    width: 100%;
    margin-top: 10px;
    background: linear-gradient(135deg, var(--pg-accent) 0%, var(--pg-accent-hover) 100%);
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.hcf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 127, 36, 0.4);
}

@media (max-width: 900px) {
    .home-contact-grid {
        grid-template-columns: 1fr;
    }

    .home-contact-form-wrap {
        padding: 24px;
        order: -1;
    }

    .home-contact-info {
        order: 1;
    }
}

@media (max-width: 600px) {
    .home-contact-form .hcf-row {
        grid-template-columns: 1fr;
    }
}

/* Google Maps embed */
.hc-map-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e8e0d5;
}

.hc-map-wrap iframe {
    display: block;
    width: 100%;
    height: 260px;
}

.hc-map-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f7f5f0;
    color: var(--pg-accent);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.hc-map-link:hover {
    background: #ede9e0;
    color: var(--pg-accent-hover);
}

/* Google Reviews card */
.hc-reviews-card {
    background: #fff;
    border: 1px solid #e8e0d5;
    border-radius: 10px;
    overflow: hidden;
}

.hc-reviews-logo-banner {
    background: #111;
    padding: 14px 20px;
    display: flex;
    align-items: center;
}

.hc-reviews-logo-banner img {
    height: 32px;
    width: auto;
    display: block;
}

.hc-reviews-body {
    padding: 20px;
}

.hc-reviews-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.hc-google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hc-stars {
    display: flex;
    gap: 2px;
}

.hc-stars svg {
    width: 18px;
    height: 18px;
}

.hc-reviews-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 16px;
}

.hc-reviews-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid var(--pg-accent);
    border-radius: 8px;
    color: var(--pg-accent);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.hc-reviews-btn:hover {
    background: var(--pg-accent);
    color: #fff;
}

/* Form section title */
.hcf-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pg-accent);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e0d5;
}

/* Radio card group */
.hcf-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 4px;
}

.hcf-radio-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f7f5f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #444;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    user-select: none;
}

.hcf-radio-card input[type="radio"] {
    display: none;
}

.hcf-radio-card:hover {
    border-color: var(--pg-accent);
    color: #1a1a1a;
}

.hcf-radio-card:has(input:checked) {
    border-color: var(--pg-accent);
    background: rgba(193, 127, 36, 0.12);
    color: var(--pg-accent);
    font-weight: 600;
}

/* Color radio cards */
.hcf-radio-group--colors {
    flex-direction: column;
    gap: 8px;
}

.hcf-radio-color {
    padding: 10px 16px;
}

.hcf-radio-color .ral-dot {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    display: inline-block;
}

/* File upload */
.hcf-file-wrap {
    position: relative;
}

.hcf-file-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.hcf-file-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f7f5f0;
    border: 2px dashed #ccc;
    border-radius: 8px;
    color: #888;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.hcf-file-wrap:hover .hcf-file-label {
    border-color: var(--pg-accent);
    color: #333;
}

/* 11. FOOTER */
.site-footer {
    background: var(--pg-dark);
    color: #ccc;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif !important;
    font-size: .95rem;
    font-weight: 600;
    margin: 0 0 16px;
    text-transform: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    font-size: .85rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left {
    color: #888;
    font-size: .8rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-right span {
    color: #aaa;
    font-size: .8rem;
}

/* SWIPER CUSTOM */
.swiper-button-prev,
.swiper-button-next {
    color: var(--pg-accent) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 22px !important;
}

.nav-arrows {
    display: flex;
    gap: 12px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: all .2s;
}

.nav-arrow:hover {
    border-color: var(--pg-accent);
}

.nav-arrow svg {
    width: 18px;
    height: 18px;
    fill: #666;
}

/* RESPONSIVE */
@media(max-width:1024px) {

    .intro-grid,
    .magazine-grid,
    .quality-section {
        grid-template-columns: 1fr;
    }

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

    .faq-image {
        position: static;
    }

    .faq-image img {
        height: auto;
        min-height: unset;
        object-fit: unset;
    }

    .faq-content {
        padding: 32px 20px 40px;
    }

    .faq-content h2 {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }

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

    .quality-img {
        min-height: 300px;
    }

    .hero-promo {
        display: none;
    }

    .usp-tags {
        left: 20px;
    }
}

@media(max-width:600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .usp-image-section {
        height: 350px;
    }

    .intro-left h2 {
        font-size: 1.8rem;
    }

    /* --- HERO MOBILE: Titel+Button oben, Tags unten — Gruppe zentriert --- */
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        height: auto;
        min-height: 90vh;
        max-height: none;
    }

    /* Content-Wrap zuerst (order 1) */
    .hero-content-wrap {
        order: 1;
        justify-content: center;
        padding: 0 20px 16px;
        flex: 0 0 auto;
        width: 100%;
    }

    .hero-text--right {
        text-align: center;
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .hero-offerte-btn {
        font-size: 0.9rem;
        padding: 14px 28px;
        margin-top: 10px;
    }

    /* Tags danach (order 2), aus absoluter Position heraus */
    .hero-tags {
        position: relative;
        top: auto;
        transform: none;
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 7px;
        padding-bottom: 36px;
        z-index: 3;
    }

    .hero-tag-outer--1 { width: 230px; }
    .hero-tag-outer--2 { width: 188px; }
    .hero-tag-outer--3 { width: 148px; }

    .hero-tag {
        font-size: 0.72rem;
        padding: 9px 30px 9px 14px;
    }

    /* --- MATEN: alles zentrieren --- */
    .maten-title {
        text-align: center;
    }

    .maten-block {
        text-align: center;
    }

    .maten-info-block {
        text-align: center;
    }

    .maten-info-block ul {
        display: inline-block;
        text-align: left;
    }

    .maten-info-block li.ral-item {
        justify-content: flex-start;
    }

    /* --- INTRO-RIGHT: gleiche Abstände, zentriert --- */
    .intro-right {
        padding: 22px;
    }

    .intro-right h3,
    .intro-right > p {
        text-align: center;
    }

    .intro-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .intro-buttons .btn,
    .intro-buttons .btn-outline {
        flex: 1 1 auto;
        text-align: center;
    }

    /* --- FOOTER: alles mittig --- */
    .footer-col {
        text-align: center;
    }

    .footer-links li {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
}

/* =====================================================
   4b. CONSTRUCTIEVE VOORDELEN
   ===================================================== */
.constructie-voordelen-section {
    padding: 100px 0;
    background: #fdf6ea;
}

.constructie-voordelen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.constructie-img-left {
    display: flex;
    justify-content: flex-start;
}

.constructie-img-left img {
    max-width: 100%;
    height: auto;
}

.constructie-text-right .label {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.constructie-text-right h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--pg-text);
    margin: 0 0 20px;
    line-height: 1.3;
}

.constructie-text-right h2 strong {
    font-weight: 700;
}

.constructie-text-right p {
    color: var(--pg-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

@media(max-width:1024px) {
    .constructie-voordelen-grid {
        grid-template-columns: 1fr;
    }

    .constructie-img-left {
        justify-content: center;
    }
}

/* =====================================================
   4b. CONSTRUCTIEVE VOORDELEN – ALTERNATING ROWS
   ===================================================== */
.constructie-voordelen-section {
    padding: 80px 0;
    background: #fff;
}

.voordeel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 70px;
}

.voordeel-row:last-child {
    margin-bottom: 0;
}

.voordeel-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tekst LINKS (rij 1 & 3): ruim padding links zodat tekst niet aan rand staat */
.voordeel-row:not(.voordeel-row--rev) .voordeel-text {
    padding: 50px 60px 50px 10%;
}

/* Tekst RECHTS (rij 2): ruim padding rechts zodat tekst niet aan rand staat */
.voordeel-row--rev .voordeel-text {
    padding: 50px 10% 50px 60px;
}

.voordeel-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--pg-accent);
    margin: 0 0 16px;
    line-height: 1.2;
    text-transform: none;
}

.voordeel-text h3 strong {
    font-weight: 700;
    color: var(--pg-accent);
}

.voordeel-text p {
    color: var(--pg-text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

@media(max-width: 768px) {
    .voordeel-row,
    .voordeel-row--rev {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    /* Bild IMMER oben — normale Reihen: Bild ist 2. Element → nach vorne */
    .voordeel-row:not(.voordeel-row--rev) .voordeel-img {
        order: -1;
    }

    /* Reversed Reihen: Bild ist bereits 1. Element im HTML → bleibt oben */
    .voordeel-row--rev .voordeel-img {
        order: 0;
    }

    .voordeel-row:not(.voordeel-row--rev) .voordeel-text,
    .voordeel-row--rev .voordeel-text {
        padding: 24px 20px;
        text-align: center;
    }

    .voordeel-text h3 {
        font-size: 1.3rem;
    }
}