/* ============================================================
   PfotenEden – Premium Tierbedarf Stylesheet
   ============================================================ */
:root {
    --primary: #2E5E4E;
    --primary-dark: #234539;
    --primary-light: #3d7563;
    --secondary: #F4B860;
    --secondary-dark: #e0a040;
    --accent: #6D8B74;
    --bg: #F9FAFB;
    --bg-white: #ffffff;
    --text: #1F2937;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --shadow-sm: 0 2px 8px rgba(46, 94, 78, 0.06);
    --shadow-md: 0 8px 30px rgba(46, 94, 78, 0.1);
    --shadow-lg: 0 20px 50px rgba(46, 94, 78, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }

/* ---- Loader ---- */
#page-loader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--bg-white);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-paw {
    width: 56px; height: 56px; margin: 0 auto 12px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    animation: pulse-paw 1.2s ease infinite;
}
.loader-paw i { color: var(--secondary); font-size: 1.5rem; }
.loader-inner span { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 1.1rem; }
@keyframes pulse-paw { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }

/* ---- Cookie Banner ---- */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
    background: var(--bg-white); border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 1rem 0; transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.cookie-content p { margin: 0; font-size: 0.9rem; color: var(--text-muted); max-width: 700px; }
.cookie-content a { color: var(--primary); font-weight: 500; }
.cookie-actions { display: flex; gap: 0.5rem; }
.btn-cookie-accept { background: var(--primary); color: #fff; border: none; padding: 0.5rem 1.25rem; border-radius: 50px; font-weight: 600; font-size: 0.875rem; }
.btn-cookie-accept:hover { background: var(--primary-dark); color: #fff; }
.btn-cookie-decline { background: transparent; color: var(--text-muted); border: 1px solid var(--border); padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; }
.btn-cookie-decline:hover { border-color: var(--primary); color: var(--primary); }

/* ---- Header ---- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.header-top {
    background: var(--primary); color: rgba(255,255,255,0.9);
    font-size: 0.8rem; padding: 0.4rem 0;
}
.header-top i { color: var(--secondary); margin-right: 0.35rem; }
.site-header .navbar { padding: 0.75rem 0; }
.home-page .site-header:not(.scrolled) .navbar { padding-top: 0.5rem; }
.home-page .site-header:not(.scrolled) { background: transparent; }
.home-page .site-header:not(.scrolled) .header-top { background: rgba(46,94,78,0.95); }
.home-page .site-header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.92); }
.home-page .site-header:not(.scrolled) .nav-link:hover,
.home-page .site-header:not(.scrolled) .nav-link.active { color: var(--secondary); }
.home-page .site-header:not(.scrolled) .brand-text { color: #fff; }
.home-page .site-header:not(.scrolled) .brand-text small { color: rgba(255,255,255,0.75); }
.home-page .site-header:not(.scrolled) .toggler-bar { background: #fff; }
.inner-page .site-header {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}
.social-links { display: flex; gap: 0.65rem; }
.social-links a {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, rgba(46,94,78,0.1), rgba(109,139,116,0.15));
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1rem; transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: #fff; }

.navbar-brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-icon {
    width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--secondary); font-size: 1.25rem;
}
.brand-text { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--primary); line-height: 1.1; }
.brand-text small { display: block; font-size: 0.65rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.02em; }
.nav-link {
    font-family: var(--font-head); font-weight: 500; font-size: 0.925rem;
    color: var(--text); padding: 0.5rem 1rem !important; position: relative;
}
.nav-link.active, .nav-link:hover { color: var(--primary) !important; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem;
    height: 2px; background: var(--secondary); border-radius: 2px;
}
.btn-nav { padding: 0.55rem 1.35rem !important; border-radius: 50px; font-size: 0.875rem; font-weight: 600; }
.navbar-toggler { border: none; padding: 0; width: 32px; height: 24px; position: relative; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
    display: block; width: 100%; height: 2px; background: var(--primary);
    margin: 6px 0; transition: var(--transition); border-radius: 2px;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ---- Buttons ---- */
.btn-primary {
    background: var(--primary); border-color: var(--primary);
    font-family: var(--font-head); font-weight: 600; border-radius: 50px;
    padding: 0.65rem 1.75rem; transition: var(--transition);
}
.btn-primary:hover, .btn-primary:focus {
    background: var(--primary-dark); border-color: var(--primary-dark);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,94,78,0.25);
}
.btn-gold {
    background: var(--secondary); color: var(--text); border: none;
    font-family: var(--font-head); font-weight: 600; border-radius: 50px;
    padding: 0.65rem 1.75rem; transition: var(--transition);
}
.btn-gold:hover { background: var(--secondary-dark); color: var(--text); transform: translateY(-2px); }
.btn-outline-primary {
    color: var(--primary); border: 2px solid var(--primary);
    font-family: var(--font-head); font-weight: 600; border-radius: 50px;
    padding: 0.6rem 1.65rem; background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-white {
    background: #fff; color: var(--primary); border: none;
    font-family: var(--font-head); font-weight: 600; border-radius: 50px;
    padding: 0.65rem 1.75rem;
}
.btn-white:hover { background: var(--secondary); color: var(--text); transform: translateY(-2px); }

/* ---- Section Utilities ---- */
.section { padding: 5rem 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-head); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-label::before {
    content: ''; width: 24px; height: 2px; background: var(--secondary); border-radius: 2px;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; }

/* ---- Hero ---- */
.hero-section {
    min-height: 100vh; position: relative; display: flex; align-items: center;
    padding-top: 120px; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(46,94,78,0.92) 0%, rgba(46,94,78,0.75) 45%, rgba(31,41,55,0.4) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
    padding: 0.4rem 1rem; font-size: 0.85rem; margin-bottom: 1.5rem;
}
.hero-badge i { color: var(--secondary); }
.hero-content h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem); color: #fff;
    margin-bottom: 1.25rem; font-weight: 800;
}
.hero-content h1 span { color: var(--secondary); }
.hero-content p { font-size: 1.15rem; opacity: 0.92; max-width: 520px; margin-bottom: 2rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.65rem; font-size: 0.9rem; opacity: 0.9; }
.trust-item i { font-size: 1.25rem; color: var(--secondary); }
.hero-visual-float {
    position: relative; z-index: 2;
}
.hero-card-float {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-radius: var(--radius-lg); padding: 1.5rem;
    box-shadow: var(--shadow-lg); max-width: 320px; margin-left: auto;
}
.hero-card-float img { border-radius: var(--radius); margin-bottom: 1rem; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-card-float h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.hero-card-float .price { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 1.25rem; }
.hero-card-float .price small { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; text-decoration: line-through; margin-left: 0.5rem; }
.hero-card-float .rating { color: var(--secondary); font-size: 0.85rem; margin-top: 0.35rem; }

/* ---- Trust Bar ---- */
.trust-bar {
    background: var(--bg-white); border-bottom: 1px solid var(--border);
    padding: 1.25rem 0; margin-top: -1px;
}
.trust-bar-item {
    display: flex; align-items: center; gap: 0.75rem; justify-content: center;
    text-align: left; padding: 0.5rem;
}
.trust-bar-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(46,94,78,0.1), rgba(109,139,116,0.15));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.15rem;
}
.trust-bar-item strong { display: block; font-family: var(--font-head); font-size: 0.9rem; }
.trust-bar-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Categories ---- */
.categories-section { background: var(--bg); }
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 991px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 3/4; cursor: pointer; group: cat;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(46,94,78,0.9) 0%, rgba(46,94,78,0.2) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.25rem; color: #fff; transition: var(--transition);
}
.cat-card:hover .cat-card-overlay { background: linear-gradient(to top, rgba(46,94,78,0.95) 0%, rgba(46,94,78,0.4) 100%); }
.cat-card-overlay i { font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.cat-card-overlay h3 { font-size: 1.1rem; color: #fff; margin-bottom: 0.15rem; }
.cat-card-overlay span { font-size: 0.8rem; opacity: 0.85; }

/* ---- Products ---- */
.products-section { background: var(--bg-white); }
.product-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    transition: var(--transition); height: 100%; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--bg); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--secondary); color: var(--text);
    font-family: var(--font-head); font-size: 0.7rem; font-weight: 700;
    padding: 0.25rem 0.65rem; border-radius: 50px; text-transform: uppercase;
}
.product-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.product-rating { color: var(--secondary); font-size: 0.8rem; margin-bottom: 0.75rem; }
.product-rating span { color: var(--text-muted); margin-left: 0.35rem; }
.product-price { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--primary); margin-bottom: 1rem; }
.product-price del { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; margin-left: 0.5rem; }
.product-body .btn { margin-top: auto; width: 100%; font-size: 0.875rem; padding: 0.55rem; }

/* ---- Why Us ---- */
.why-section {
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff; position: relative; overflow: hidden;
}
.why-section::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(244,184,96,0.08) 0%, transparent 70%);
}
.why-section .section-label { color: var(--secondary); }
.why-section .section-label::before { background: var(--secondary); }
.why-section .section-title { color: #fff; }
.why-section .section-subtitle { color: rgba(255,255,255,0.8); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (max-width: 575px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
    padding: 1.75rem; transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.why-icon {
    width: 52px; height: 52px; background: var(--secondary); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; color: var(--text); margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.05rem; color: #fff; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.9rem; color: rgba(255,255,255,0.78); margin: 0; }

/* ---- Stats ---- */
.stats-section { padding: 3.5rem 0; background: var(--bg-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { text-align: center; padding: 1rem; }
.stat-num {
    font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800; color: var(--primary); line-height: 1;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.35rem; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--bg); }
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { flex: 0 0 100%; padding: 0 0.5rem; }
@media (min-width: 768px) { .testimonial-slide { flex: 0 0 50%; } }
@media (min-width: 992px) { .testimonial-slide { flex: 0 0 33.333%; } }
.testimonial-card {
    background: var(--bg-white); border-radius: var(--radius-lg);
    padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    height: 100%; display: flex; flex-direction: column;
}
.testimonial-card .stars { color: var(--secondary); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--text-muted); flex: 1; margin-bottom: 1.5rem; font-style: italic; border: none; padding: 0; }
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }
.slider-controls { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.slider-btn {
    width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border);
    background: var(--bg-white); color: var(--primary); display: flex;
    align-items: center; justify-content: center; cursor: pointer; transition: var(--transition);
}
.slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- FAQ ---- */
.faq-section { background: var(--bg-white); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; overflow: hidden; background: var(--bg-white); }
.faq-question {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.15rem 1.5rem; font-family: var(--font-head); font-weight: 600;
    font-size: 0.95rem; color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-question i { color: var(--primary); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.15rem; color: var(--text-muted); font-size: 0.925rem; }

/* ---- Newsletter ---- */
.newsletter-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border-radius: var(--radius-lg); margin: 0 1rem; overflow: hidden;
    position: relative;
}
@media (min-width: 768px) { .newsletter-section { margin: 0 2rem; } }
.newsletter-inner { padding: 3.5rem 2rem; position: relative; z-index: 2; }
.newsletter-section h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; max-width: 480px; }
.nl-form { display: flex; gap: 0.5rem; max-width: 460px; flex-wrap: wrap; }
.nl-form input {
    flex: 1; min-width: 200px; border: none; border-radius: 50px;
    padding: 0.75rem 1.25rem; font-size: 0.925rem;
}
.nl-form .btn-gold { white-space: nowrap; }

/* ---- CTA Banner ---- */
.cta-banner {
    background: var(--bg-white); border-radius: var(--radius-lg);
    border: 1px solid var(--border); overflow: hidden;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
}
@media (max-width: 767px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner-img { aspect-ratio: 16/11; overflow: hidden; }
.cta-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-content { padding: 2.5rem; }
.cta-banner-content h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.cta-banner-content p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ---- Inner Page Hero ---- */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px; color: #fff; position: relative; overflow: hidden;
}
.page-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: var(--bg); border-radius: 30px 30px 0 0;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }
.breadcrumb-nav {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem;
    color: rgba(255,255,255,0.75); margin-bottom: 1rem;
}
.breadcrumb-nav a { color: var(--secondary); }
.breadcrumb-nav a:hover { color: #fff; }

/* ---- About Page ---- */
.story-section .story-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.story-section .story-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 575px) { .mission-cards { grid-template-columns: 1fr; } }
.mission-card {
    background: var(--bg-white); border-radius: var(--radius); padding: 2rem;
    border: 1px solid var(--border); transition: var(--transition);
}
.mission-card:hover { box-shadow: var(--shadow-md); }
.mission-card i { font-size: 2rem; color: var(--primary); margin-bottom: 1rem; }
.team-card {
    background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card-body h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.team-card-body .role { color: var(--accent); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card-body p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ---- Services Page ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
    background: var(--bg-white); border: 1px solid var(--border); border-radius: 50px;
    padding: 0.45rem 1.15rem; font-family: var(--font-head); font-size: 0.85rem;
    font-weight: 500; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.service-highlight {
    background: linear-gradient(135deg, rgba(46,94,78,0.06), rgba(244,184,96,0.08));
    border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--border);
}

/* ---- Contact Page ---- */
.contact-info-card {
    background: var(--bg-white); border-radius: var(--radius-lg); padding: 2rem;
    border: 1px solid var(--border); height: 100%;
}
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(46,94,78,0.1), rgba(109,139,116,0.15));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.15rem;
}
.contact-info-item strong { display: block; font-family: var(--font-head); font-size: 0.9rem; margin-bottom: 0.15rem; }
.contact-info-item span, .contact-info-item a { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--primary); }
.contact-form-wrap {
    background: var(--bg-white); border-radius: var(--radius-lg); padding: 2rem;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-form-wrap .form-label { font-family: var(--font-head); font-weight: 600; font-size: 0.875rem; }
.contact-form-wrap .form-control, .contact-form-wrap .form-select {
    border-radius: 12px; border-color: var(--border); padding: 0.7rem 1rem;
}
.contact-form-wrap .form-control:focus, .contact-form-wrap .form-select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(46,94,78,0.12);
}
.map-wrap {
    border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
    aspect-ratio: 21/9; background: var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---- Blog Page ---- */
.blog-card {
    background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border); transition: var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.blog-cat { color: var(--primary); font-weight: 600; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.65rem; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.blog-sidebar {
    background: var(--bg-white); border-radius: var(--radius-lg); padding: 1.75rem;
    border: 1px solid var(--border); position: sticky; top: 100px;
}
.blog-sidebar h4 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--secondary); }
.sidebar-cats li { margin-bottom: 0.5rem; }
.sidebar-cats a { color: var(--text-muted); font-size: 0.9rem; display: flex; justify-content: space-between; }
.sidebar-cats a:hover { color: var(--primary); }

/* ---- Policy Pages ---- */
.policy-content {
    background: var(--bg-white); border-radius: var(--radius-lg); padding: 2.5rem;
    border: 1px solid var(--border); margin-bottom: 3rem;
}
.policy-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; color: var(--primary); }
.policy-content h2:first-of-type { margin-top: 0; }
.policy-content p, .policy-content li { color: var(--text-muted); font-size: 0.925rem; }
.policy-content ul { padding-left: 1.25rem; }
.policy-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }

/* ---- Footer ---- */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); position: relative; margin-top: 4rem; }
.footer-wave { height: 4px; background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary)); }
.footer-main { padding: 4rem 0 2.5rem; }
.footer-brand {
    display: flex; align-items: center; gap: 0.65rem;
    font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: #fff; margin-bottom: 1rem;
}
.footer-brand .brand-icon { width: 38px; height: 38px; font-size: 1.1rem; }
.footer-desc { font-size: 0.9rem; opacity: 0.8; margin-bottom: 1.25rem; max-width: 320px; }
.footer-social { display: flex; gap: 0.65rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--text); }
.site-footer h5 { color: #fff; font-size: 0.95rem; margin-bottom: 1.15rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.footer-links a:hover { color: var(--secondary); }
.footer-nl-text { font-size: 0.875rem; opacity: 0.8; margin-bottom: 0.75rem; }
.footer-newsletter .form-control {
    border: none; border-radius: 50px 0 0 50px; padding: 0.65rem 1rem; font-size: 0.875rem;
}
.footer-newsletter .btn-gold { border-radius: 0 50px 50px 0; padding: 0.65rem 1rem; }
.footer-contact p { font-size: 0.85rem; opacity: 0.8; margin-bottom: 0.4rem; }
.footer-contact i { color: var(--secondary); margin-right: 0.5rem; width: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0;
    font-size: 0.8rem; opacity: 0.7;
}
.footer-legal-note { margin: 0; }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%; border: none;
    background: var(--primary); color: #fff; font-size: 1.15rem;
    box-shadow: var(--shadow-md); cursor: pointer; opacity: 0; visibility: hidden;
    transform: translateY(12px); transition: var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--secondary); color: var(--text); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .section { padding: 3.5rem 0; }
    .hero-section { min-height: auto; padding: 130px 0 3rem; }
    .hero-visual-float { margin-top: 2rem; }
    .hero-card-float { margin: 0 auto; }
    .page-hero { padding: 120px 0 50px; }
}
@media (max-width: 767px) {
    .cookie-content { flex-direction: column; text-align: center; }
    .hero-trust { gap: 1rem; }
}
