/**
 * Stichting Burak - Main Stylesheet
 * Redesigned in Agon-Agent style
 * Colors: Burak Bordeaux & Gold
 */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors - Burak */
    --bordeaux: #8B1A1A;
    --bordeaux-dark: #6B0F0F;
    --bordeaux-light: #A52A2A;
    --gold: #C8A882;
    --gold-light: #D4B89E;
    --gold-dark: #B8976E;

    /* Neutral Colors */
    --cream: #FAF8F5;
    --cream-dark: #F0EBE3;
    --white: #FFFFFF;
    --sand: #E8DED0;
    --charcoal: #1A1A1A;
    --slate: #4A4A4A;
    --mist: #8A8A8A;
    --gray-light: #E5E5E5;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(139, 26, 26, 0.12);
    --shadow-lg: 0 10px 40px rgba(139, 26, 26, 0.2);
    --shadow-xl: 0 20px 60px rgba(139, 26, 26, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul { list-style: none; }

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }

p {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--slate);
    line-height: 1.7;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--bordeaux); border-radius: 4px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.whatsapp-float a {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: white;
    font-size: 26px;
    transition: transform var(--transition-normal);
    position: relative;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    color: var(--white);
    padding: 0.6rem 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.top-bar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    transition: color var(--transition-normal);
}

.top-bar a:hover {
    color: var(--gold);
}

.top-bar i {
    margin-right: 0.5rem;
    color: var(--gold-light);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: var(--white);
    font-size: 1rem;
    transition: color var(--transition-normal);
}

.social-links a:hover { color: var(--gold); }
.social-links a.coming-soon { opacity: 0.4; cursor: default; }

/* ===== MAIN HEADER ===== */
.main-header {
    background: var(--white)/95%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-slow);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--sand);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform var(--transition-normal);
}

.logo:hover { transform: scale(1.02); }

.logo img {
    height: 56px;
    width: auto;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all var(--transition-normal);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--bordeaux);
    background: var(--cream);
}

.nav-menu > li > a i {
    font-size: 0.6rem;
    transition: transform var(--transition-normal);
}

.nav-menu > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    border: 1px solid var(--sand);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    margin-top: 0.5rem;
    z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown.hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--cream);
    color: var(--bordeaux);
}

.dropdown-menu i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bordeaux-dark);
    padding: 0.65rem 1.75rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.4);
}

/* Button Shine Effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-shine:hover::before {
    left: 100%;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 9999px;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-decoration: none;
    color: var(--charcoal);
    border: 1.5px solid transparent;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: var(--bordeaux);
    color: var(--bordeaux);
}

.lang-btn.lang-actief {
    background: var(--bordeaux);
    color: var(--gold) !important;
    border-color: var(--bordeaux);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--bordeaux);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Mobile Menu */
.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--sand);
    padding: 1rem 1.5rem;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--charcoal);
    font-weight: 500;
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.mobile-nav a:hover {
    color: var(--bordeaux);
    background: var(--cream);
}

.mobile-nav .mobile-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    color: var(--white);
    padding: 0.85rem;
    border-radius: 9999px;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bordeaux-dark);
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in;
}

.hero-video-wrapper {
    background-image: url('../images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(26, 26, 26, 0.25) 0%,
            rgba(107, 15, 15, 0.35) 30%,
            rgba(139, 26, 26, 0.40) 55%,
            rgba(107, 15, 15, 0.75) 85%,
            rgba(26, 26, 26, 0.85) 100%);
}

/* Islamic Pattern Overlay */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23C8A882' stroke-width='0.5' opacity='0.12'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem 4rem;
    width: 100%;
}

.hero-content-inner {
    max-width: 56rem;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 26, 26, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 168, 130, 0.5);
    padding: 0.6rem 1.25rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-badge span {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: var(--gold);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 40px rgba(200, 168, 130, 0.25);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title .gold {
    color: var(--gold);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 168, 130, 0.3);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-subtitle .highlight {
    color: var(--gold);
    font-weight: 500;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-button {
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.hero-button-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bordeaux-dark);
}

.hero-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 168, 130, 0.4);
}

.hero-button-secondary {
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-button-secondary:hover {
    background: rgba(26, 26, 26, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== STATS BAR ===== */
.stats-bar {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: -4rem;
}

.stat-card {
    background: rgba(26, 26, 26, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: background var(--transition-normal);
    animation: fadeInUp 0.6s ease both;
}

.stat-card:hover {
    background: rgba(26, 26, 26, 0.45);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
    font-weight: 400;
}

/* ===== TRUST BAR (STANDALONE) ===== */
.trust-bar {
    background: var(--white);
    padding: 3rem 1.5rem;
    border-top: none;
    box-shadow: var(--shadow-md);
}

.trust-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 16px;
    border: 1px solid var(--sand);
    transition: all var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bordeaux);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.trust-label {
    font-size: 0.88rem;
    color: var(--slate);
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(139, 26, 26, 0.1);
    color: var(--bordeaux);
    padding: 0.4rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-badge.gold {
    background: rgba(200, 168, 130, 0.2);
    color: var(--gold-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-title .bordeaux { color: var(--bordeaux); }
.section-title .gold { color: var(--gold); }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
    font-weight: 400;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: rgba(139, 26, 26, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(200, 168, 130, 0.05);
    border-radius: 50%;
    filter: blur(80px);
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.about-stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bordeaux);
}

.about-stat-label {
    font-size: 0.88rem;
    color: var(--slate);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(232, 222, 208, 0.5);
    transition: all var(--transition-normal);
}

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

.value-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
}

.value-icon i {
    color: var(--gold);
    font-size: 1.4rem;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

/* ===== PACKAGE CARDS ===== */
.pakketten-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.pakketten-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--bordeaux);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
}

.pakketten-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.pakket-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(232, 222, 208, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pakket-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Card Image */
.pakket-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.pakket-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.pakket-card:hover .pakket-image {
    transform: scale(1.08);
}

.pakket-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.6), transparent);
}

.pakket-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    color: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 2;
}

.pakket-image-meta {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 2;
}

.pakket-image-meta i {
    margin-right: 0.3rem;
    font-size: 0.82rem;
}

/* Card Content */
.pakket-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pakket-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.pakket-description {
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Features List */
.pakket-features {
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.pakket-features li {
    padding: 0.4rem 0;
    color: var(--slate);
    font-size: 0.92rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pakket-features i {
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pakket-features .more-features {
    color: var(--bordeaux);
    font-weight: 500;
    font-size: 0.88rem;
}

/* Price & CTA */
.pakket-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 1.25rem;
    border-top: 1px solid var(--sand);
    margin-top: auto;
}

.price-label {
    font-size: 0.82rem;
    color: var(--slate);
    font-weight: 500;
}

.price-original {
    font-size: 0.88rem;
    color: var(--mist);
    text-decoration: line-through;
    font-weight: 500;
}

.price-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--bordeaux);
    line-height: 1;
}

.pakket-button {
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    color: var(--white);
    padding: 0.65rem 1.25rem;
    border: none;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.pakket-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.3);
}

/* ===== SERVICES SECTION ===== */
.diensten-section {
    background: var(--white);
}

.diensten-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dienst-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    border-left: 4px solid var(--gold);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.dienst-card::after {
    content: '';
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 80px;
    height: 80px;
    background: rgba(200, 168, 130, 0.06);
    border-radius: 50%;
    filter: blur(20px);
    transition: background var(--transition-normal);
}

.dienst-card:hover::after {
    background: rgba(139, 26, 26, 0.06);
}

.dienst-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(139, 26, 26, 0.2);
    transition: transform var(--transition-normal);
}

.dienst-card:hover .dienst-icon {
    transform: scale(1.1);
}

.dienst-icon i {
    color: var(--gold);
    font-size: 1.6rem;
}

.dienst-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bordeaux);
    margin-bottom: 0.75rem;
}

.dienst-card p {
    color: var(--slate);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark), var(--bordeaux)) !important;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

.reviews-section .hero-pattern {
    opacity: 0.1;
}

.reviews-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
}

.reviews-section .section-title {
    color: var(--white);
}

.reviews-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Review Card */
.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(200, 168, 130, 0.5);
    transform: translateY(-4px);
}

.review-quote-icon {
    font-size: 2rem;
    color: rgba(200, 168, 130, 0.4);
    margin-bottom: 0.75rem;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bordeaux-dark);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.review-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Swiper Custom */
.reviewsSwiper {
    padding-bottom: 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold) !important;
    background: rgba(255,255,255,0.1) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    border: 2px solid var(--gold) !important;
    transition: all var(--transition-normal) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold) !important;
    color: var(--bordeaux-dark) !important;
    transform: scale(1.1);
}

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

.swiper-pagination-bullet {
    background: var(--gold) !important;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all var(--transition-normal);
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 28px;
    border-radius: 5px;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background: var(--white);
}

.partners-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.partner-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    border: 1px solid var(--sand);
    transition: all var(--transition-normal);
    position: relative;
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.partner-card.erkend {
    border: 2px solid var(--gold);
}

.partner-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bordeaux-dark);
    padding: 0.15rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.partner-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.partner-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

.partner-subtitle {
    font-size: 0.75rem;
    color: var(--slate);
    margin-top: 0.25rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark), var(--bordeaux)) !important;
    color: var(--white) !important;
    position: relative;
    overflow: hidden;
}

.newsletter-section .hero-pattern { opacity: 0.1; }

.newsletter-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.newsletter-form label {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.85rem 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    color: var(--white) !important;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-normal);
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-form input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.2) !important;
}

.newsletter-form label {
    color: var(--gold) !important;
}

.newsletter-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bordeaux-dark);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
}

.newsletter-submit:hover {
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.4);
    transform: translateY(-2px);
}

.newsletter-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.newsletter-benefit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
}

.newsletter-benefit i {
    color: var(--gold);
    font-size: 1rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--cream-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(139,26,26,0.05), rgba(200,168,130,0.05));
    border-radius: 50%;
    filter: blur(80px);
}

.cta-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulseGlow 3s ease-in-out infinite;
}

.cta-icon i {
    color: var(--gold);
    font-size: 2.5rem;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(200, 168, 130, 0.3); }
    50% { box-shadow: 0 0 40px rgba(200, 168, 130, 0.6); }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--bordeaux);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--slate);
    margin-bottom: 2.5rem;
}

.cta-subtitle .highlight {
    font-weight: 600;
    color: var(--bordeaux);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: var(--white);
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-circle span {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
}

.footer-brand-text h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-brand-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--bordeaux);
}

.footer-social a.whatsapp:hover {
    background: #25D366;
}

/* Footer Columns */
.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    font-weight: 400;
    transition: color var(--transition-normal);
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .contact-item i {
    color: var(--gold);
    margin-top: 0.2rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ===== PAGE HERO (Sub-pages) ===== */
.page-hero {
    position: relative;
    padding: 5rem 1.5rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 26, 26, 0.88), rgba(107, 15, 15, 0.88));
}

.page-hero .hero-pattern {
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

/* ===== CONTENT SECTIONS (for sub-pages) ===== */
.content-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.content-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: var(--bordeaux);
    margin-bottom: 1rem;
}

/* ===== VIEW ALL BUTTON ===== */
.view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--charcoal);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.view-all-button:hover {
    background: var(--bordeaux);
    transform: translateY(-2px);
}

/* Google Reviews Link */
.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--gold);
    border-radius: 9999px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.google-reviews-link:hover {
    background: var(--gold);
    color: var(--bordeaux-dark);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .lang-switch {
        margin-right: 0.3rem;
    }

    .lang-btn {
        padding: 3px 8px;
        font-size: 0.7rem !important;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .top-bar {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 6rem 1.5rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-button {
        text-align: center;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: -2.5rem;
    }

    .stat-card { padding: 1rem; }
    .stat-value { font-size: 1.4rem; }

    .section { padding: 4rem 1rem; }
    .section-header { margin-bottom: 2.5rem; }

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

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

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

    .trust-content {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .trust-item { padding: 1rem; }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float a {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }

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

/* ===================================================================
   COMPATIBILITY LAYER — Auto-upgrades old inline styles to Agon design
   =================================================================== */

.page-hero {
    position: relative; padding: 5rem 1.5rem; text-align: center;
    background-size: cover !important; background-position: center !important;
    color: var(--white); min-height: 350px;
    display: flex; align-items: center; justify-content: center;
}
.page-hero .hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; }

.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(200,168,130,0.2); backdrop-filter: blur(8px); border: 1px solid rgba(200,168,130,0.4); padding: 0.5rem 1.2rem; border-radius: 9999px; margin-bottom: 1.5rem; }
.hero-badge i { color: var(--gold) !important; font-size: 1rem !important; }
.hero-badge span { color: var(--gold) !important; font-weight: 500 !important; font-size: 0.88rem !important; letter-spacing: 0.5px; }

.hero-title { font-family: var(--font-display) !important; font-weight: 700 !important; color: var(--white) !important; line-height: 1.15; text-shadow: 0 0 40px rgba(200,168,130,0.3); }
.hero-subtitle { color: rgba(255,255,255,0.9) !important; font-family: var(--font-body) !important; line-height: 1.6 !important; }

.section-badge { display: inline-block; background: rgba(139,26,26,0.1); color: var(--bordeaux); padding: 0.4rem 1.2rem; border-radius: 9999px; font-family: var(--font-body); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 1rem; }
.section-title { font-family: var(--font-display) !important; font-weight: 700 !important; line-height: 1.25; }

.hero-button, .hero-button-primary, .hero-button-secondary, .pakket-button, .cta-button {
    font-family: var(--font-body) !important; border-radius: 9999px !important; letter-spacing: 0.3px; transition: all 0.3s ease !important;
}
.hero-button-primary:hover, .pakket-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(200,168,130,0.4); }

[style*="border-left: 4px solid var(--gold)"], [style*="border-left: 6px solid var(--gold)"] { border-radius: 16px !important; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
    font-family: var(--font-body) !important; border-radius: 12px !important; border: 1.5px solid var(--sand) !important;
    padding: 0.85rem 1rem !important; font-size: 0.95rem !important; transition: border-color 0.3s !important; outline: none !important;
}
input:focus, select:focus, textarea:focus { border-color: var(--bordeaux) !important; box-shadow: 0 0 0 3px rgba(139,26,26,0.1) !important; }

button[type="submit"], input[type="submit"] { font-family: var(--font-body) !important; border-radius: 9999px !important; font-weight: 600 !important; transition: all 0.3s !important; }
button[type="submit"]:hover, input[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,26,26,0.3); }

.filter-btn, .details-btn { font-family: var(--font-body) !important; border-radius: 9999px !important; font-weight: 600 !important; transition: all 0.3s !important; }

/* Override old global font forcing from original CSS */
label, span, li, td, th, a, button, input, textarea, select, strong, em { font-size: inherit !important; font-weight: inherit !important; }
p { font-size: inherit !important; font-weight: inherit !important; color: inherit !important; line-height: inherit !important; }
h1, h2, h3, h4, h5, h6 { font-weight: 700 !important; font-family: var(--font-display) !important; }

@media (max-width: 768px) {
    .page-hero { min-height: 280px !important; padding: 3.5rem 1rem !important; }
    .hero-title { font-size: clamp(1.8rem, 5vw, 2.8rem) !important; }
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}

@media print {
    .top-bar, .main-header, .whatsapp-float, .footer { display: none !important; }
    .page-hero, .hero { min-height: auto !important; padding: 2rem !important; }
}
