/* ===========================
   ROOT VARIABLES
   =========================== */
:root {
    /* Colors */
    --primary-color: #722F37;
    --primary-dark: #5a2529;
    --primary-light: #8d3d47;
    --accent-gold: #C9A86A;
    --accent-gold-light: #d4b67d;
    --background-cream: #f5f0e8;
    --background-white: #ffffff;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #8a8a8a;
    --border-color: #e5d5c8;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-padding: 20px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(114, 47, 55, 0.08);
    --shadow-md: 0 4px 16px rgba(114, 47, 55, 0.12);
    --shadow-lg: 0 8px 32px rgba(114, 47, 55, 0.16);
    --shadow-xl: 0 16px 48px rgba(114, 47, 55, 0.2);
}

/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--background-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-slide-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out 0.3s both;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-content {
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.4) 0%, rgba(114, 47, 55, 0.3) 50%, rgba(201, 168, 106, 0.2) 100%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(44,44,44,0.10);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 400;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-style: italic;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--primary-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-services {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.8;
}

.card-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--background-cream);
    border-radius: 12px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.decoration-icon {
    width: 30px;
    height: 30px;
    color: var(--accent-gold);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    background: var(--background-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image {
    width: 100%;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.image-wrapper:hover .main-image {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent-gold);
    border-radius: 20px;
    z-index: -1;
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin: 0;
}

/* ===========================
   HOME COMFORT SECTION
   =========================== */
.home-comfort {
    position: relative;
    overflow: hidden;
}

.home-comfort-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.home-comfort-text h2 {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.home-comfort-lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.home-comfort-text p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.home-comfort-text p:last-child {
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--accent-gold);
}

.home-comfort-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comfort-region-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    opacity: 0.85;
}

.comfort-region-text {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.comfort-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comfort-icon svg {
    color: var(--primary-color);
    stroke-width: 1.5;
}

@media (max-width: 768px) {
    .home-comfort-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-comfort-text h2 {
        font-size: 2rem;
    }
    
    .home-comfort-lead {
        font-size: 1.1rem;
    }
    
    .home-comfort-image {
        padding: 40px 20px;
    }
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--background-cream);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
}

.service-card-highlight .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-gold);
}

.service-card-highlight h3,
.service-card-highlight p,
.service-card-highlight li {
    color: white !important;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-card-highlight .service-list li::before {
    background: var(--accent-gold);
}

/* ===========================
   WHY US SECTION
   =========================== */
.why-us {
    background: var(--background-cream);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    padding: 25px;
    border-radius: 50%;
    box-shadow: var(--shadow-xl);
    text-align: center;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-secondary);
    display: block;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.why-us-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--background-cream), var(--border-color));
    border-radius: 12px;
}

.why-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.why-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   PRICING SECTION
   =========================== */
.pricing {
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--background-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.pricing-header {
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 2px solid rgba(114, 47, 55, 0.1);
}

.pricing-card-featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.pricing-card-featured .pricing-header h3 {
    color: white;
}

.pricing-body {
    padding: 30px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(114, 47, 55, 0.1);
}

.pricing-card-featured .price-item {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-card-featured .price-label {
    color: rgba(255, 255, 255, 0.9);
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    white-space: nowrap;
}

.pricing-card-featured .price-value {
    color: var(--accent-gold);
}

.pricing-note {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 40px;
}

.pricing-note p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.pricing-note strong {
    color: var(--primary-color);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background: var(--background-cream);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.contact-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 5px;
}

.contact-link-text {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-link-text:hover {
    color: var(--accent-gold);
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light) !important;
    font-style: italic;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--background-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 60px;
    height: 60px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-main {
    color: white;
    font-size: 1.5rem;
}

.footer-logo .logo-sub {
    color: var(--accent-gold);
}

.footer-tagline {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    opacity: 0.9;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.footer-contact a {
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

/* Note: Primary responsive styles are at the end of this file */

/* ===========================
   GALLERY & IMAGE SHOWCASE STYLES
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    min-width: 0;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-2x2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.gallery-row {
    display: contents;
}

.gallery-row .gallery-item {
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.image-showcase {
    background: white;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.showcase-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.showcase-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.showcase-image:hover img {
    transform: scale(1.08);
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   NEW HERO & PREMIUM STYLES
   =========================== */
.hero-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px 0;
    text-align: center;
}

.badge-premium {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.badge-subtext {
    display: block;
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Pricing Grid für Pakete */
.pricing-grid-packages {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.package-number {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.pricing-header {
    position: relative;
}

.package-1 .pricing-header {
    background: linear-gradient(135deg, #5a5a5a, #3d3d3d);
    color: white;
}

.package-1 .package-number {
    background: var(--accent-gold);
    color: #3d3d3d;
}

.package-1 .price-value {
    color: var(--accent-gold);
}

.package-1 h3 {
    color: white;
}

.package-2.featured {
    border: 3px solid var(--accent-gold);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(201, 168, 106, 0.2);
}

.package-2 .pricing-header {
    background: linear-gradient(135deg, var(--primary-color), #5a2529);
    color: white;
}

.package-2 .package-number {
    background: var(--accent-gold);
    color: var(--primary-color);
    font-weight: 800;
}

.package-2 .price-value {
    color: var(--accent-gold);
}

.package-2 .pricing-body {
    color: var(--text-dark);
}

.package-2 .package-description p {
    color: var(--text-dark);
}

.package-2 .package-description p:first-child {
    color: var(--text-dark);
    font-weight: 600;
}

.package-2 .package-features h4 {
    color: var(--text-dark);
}

.package-2 .package-features li {
    color: var(--text-dark);
}

.package-2 .price-period {
    color: var(--text-medium);
}

.package-2 h3 {
    color: white;
}

.package-3 .pricing-header {
    background: linear-gradient(135deg, var(--primary-light), #8d3d47);
    color: white;
}

.package-3 .package-number {
    background: var(--accent-gold);
    color: white;
}

.package-3 .price-value {
    color: var(--accent-gold);
}

.package-3 h3 {
    color: white;
}

.package-4 .pricing-header {
    background: linear-gradient(135deg, #3d2a2a, #2a1f1f);
    color: white;
}

.package-4 .package-number {
    background: var(--accent-gold);
    color: #3d2a2a;
}

.package-4 .price-value {
    color: var(--accent-gold);
}

.package-4 h3 {
    color: white;
}

.price {
    margin: 20px 0;
    text-align: center;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-period {
    display: block;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.package-2 .price-value {
    color: white;
}

.package-info {
    background: rgba(114, 47, 55, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 3px solid var(--accent-gold);
}

.package-info p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.package-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

.package-2 .package-info {
    background: rgba(255, 255, 255, 0.15);
}

.package-2 .package-info p {
    color: rgba(255, 255, 255, 0.95);
}

.package-2 .package-info strong {
    color: var(--accent-gold);
}

.package-description {
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
}

.package-1 .package-description {
    background: rgba(90, 90, 90, 0.08);
    border-left: 4px solid var(--accent-gold);
}

.package-2 .package-description {
    background: rgba(114, 47, 55, 0.08);
    border-left: 4px solid var(--accent-gold);
}

.package-3 .package-description {
    background: rgba(141, 61, 71, 0.08);
    border-left: 4px solid var(--accent-gold);
}

.package-4 .package-description {
    background: rgba(61, 42, 42, 0.08);
    border-left: 4px solid var(--accent-gold);
}

.package-description p {
    margin: 5px 0;
}

.package-description p:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

.package-description .small {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.package-features {
    margin: 20px 0;
}

.package-features h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--primary-color);
}

.package-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 20px;
    width: 100%;
}

.pricing-extras {
    background: var(--background-cream);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.pricing-extras h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.addon-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.addon-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.addon-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* Why Us Enhanced Styles */
.why-item-highlight {
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(114, 47, 55, 0.05));
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.why-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   ICON STYLES
   =========================== */
.icon-small {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: -3px;
    color: currentColor;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 10px;
}

.hero-highlights {
    list-style: none;
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-highlights li {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-highlights .icon-small {
    color: var(--accent-gold);
    flex-shrink: 0;
}

.checks li::before,
.principles li::before {
    display: none;
}

.checks li,
.principles li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
}

.checks .icon-small,
.principles .icon-small {
    color: currentColor;
    flex-shrink: 0;
}

.checks .icon-small {
    color: #4CAF50;
}

.principles .icon-small {
    color: #E53935;
}

/* ===========================
   TRANSPARENTE ABRECHNUNG SECTION
   =========================== */
.pricing-structure {
    background: var(--background-cream);
}

.abrechnung-intro {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.abrechnung-intro p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.abrechnung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.abrechnung-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border-top: 5px solid transparent;
}

.abrechnung-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.kassenleistungen {
    border-top-color: #FFC107;
    background: white;
    color: var(--text-dark);
}

.kassenleistungen h3 {
    color: var(--text-dark);
}

.kassenleistungen h4 {
    color: var(--text-dark);
}

.kassenleistungen p {
    color: var(--text-medium);
}

.kassenleistungen .intro {
    color: var(--text-medium);
}

.kassenleistungen .icon-small {
    color: #FFC107;
}

.kassenleistungen .service-table {
    background: #fff;
    border-color: #eee;
}

.kassenleistungen .table-row {
    border-bottom-color: #eee;
    color: var(--text-dark);
}

.kassenleistungen .table-row:first-child {
    background: #faf8f4;
    color: var(--text-dark);
}

.kassenleistungen .table-cell {
    color: var(--text-medium);
}

.kassenleistungen .table-cell strong {
    color: var(--primary-color);
}

.kassenleistungen .service-note {
    border-top-color: #FFC107;
    color: var(--text-medium);
}

.privatleistungen {
    border-top-color: #FFC107;
}

.wichtig {
    border-top-color: #E53935;
    background: linear-gradient(135deg, #E53935, #C62828);
    color: white;
}

.wichtig h3 {
    color: white;
}

.wichtig h4 {
    color: white;
}

.wichtig p {
    color: rgba(255, 255, 255, 0.95);
}

.wichtig .icon-small {
    color: white;
}

.abrechnung-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    width: 60px;
    height: 60px;
}

.abrechnung-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.kassenleistungen .abrechnung-icon svg {
    stroke: #FFC107;
    color: #FFC107;
}

.privatleistungen .abrechnung-icon svg {
    stroke: #FFC107;
    color: #FFC107;
}

.wichtig .abrechnung-icon svg {
    stroke: #E53935;
    color: #E53935;
}

.abrechnung-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.abrechnung-card p {
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.7;
}

.abrechnung-card .intro {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.abrechnung-card h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.examples {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-left: 0;
}

.examples li {
    color: var(--text-medium);
    padding-left: 20px;
    position: relative;
}

.examples li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.abrechnung-info {
    background: var(--background-cream);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    border-left: 3px solid var(--accent-gold);
}

.abrechnung-info p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.abrechnung-info strong {
    color: var(--primary-color);
}

/* ===========================
   SERVICE TABLE STYLES
   =========================== */
.service-table {
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 15px;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:first-child {
    background: rgba(114, 47, 55, 0.08);
    font-weight: 600;
    color: var(--primary-color);
}

.service-card-highlight .table-row:first-child {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.service-card-highlight .table-row {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.table-cell {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.table-cell strong {
    color: var(--text-dark);
}

.service-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .abrechnung-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid-packages {
        grid-template-columns: 1fr !important;
    }

    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .table-cell {
        font-size: 0.85rem;
        padding: 5px 0;
    }
}

/* ===========================
   PRICING OVERVIEW TABLE
   =========================== */
.pricing-overview {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin: 40px 0;
}

.pricing-overview h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.pricing-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.pricing-table tbody tr {
    border-bottom: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.pricing-table tbody tr:hover {
    background: var(--background-cream);
    box-shadow: inset 0 0 10px rgba(114, 47, 55, 0.05);
}

.pricing-table td {
    padding: 18px 15px;
    color: var(--text-dark);
}

.pricing-table strong {
    color: var(--primary-color);
}

.pricing-table .price {
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 1.05rem;
}

.pricing-table .kasse {
    color: #4CAF50;
    font-weight: 600;
}

.pricing-table .eigenanteil {
    color: var(--text-dark);
    font-weight: 500;
}

.table-note {
    background: var(--background-cream);
    padding: 20px;
    border-left: 4px solid var(--accent-gold);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.table-note strong {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .pricing-overview {
        padding: 30px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .pricing-table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
        border-radius: 10px;
        box-shadow: var(--shadow-sm);
    }

    .pricing-table {
        min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .pricing-overview h3 {
        font-size: 1.4rem;
    }
}

.why-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    color: var(--primary-color);
}

/* ===========================
   IMPRESSUM SECTION
   =========================== */
.impressum,
.datenschutz {
    padding: var(--section-padding) 0;
    background: var(--background-white);
}

.impressum-header {
    text-align: center;
    margin-bottom: 80px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 40px;
}

.impressum-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-secondary);
}

.impressum-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 400;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
}

.impressum-block {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.impressum-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.impressum-block h2 {
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.impressum-block h3 {
    font-size: 1.15rem;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.datenschutz-content h3 {
    margin-top: 35px !important;
    margin-bottom: 15px !important;
}

/* Styles for datenschutz direct content */
.datenschutz h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.datenschutz h2 {
    font-size: 1.8rem;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.datenschutz h3 {
    font-size: 1.15rem;
    font-family: var(--font-secondary);
    color: var(--primary-color);
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.datenschutz p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.datenschutz ul {
    list-style: none;
    margin: 12px 0 0 0;
    padding-left: 0;
}

.datenschutz li {
    color: var(--text-medium);
    padding-left: 25px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.6;
}

.datenschutz li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.datenschutz a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    transition: var(--transition-fast);
}

.datenschutz a:hover {
    color: var(--accent-gold);
}

.impressum-block p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
}

.impressum-subtitle {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px !important;
}

.impressum-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.impressum-list {
    list-style: none;
    margin: 12px 0 0 0;
    padding-left: 0;
}

.impressum-list li {
    color: var(--text-medium);
    padding-left: 25px;
    margin-bottom: 8px;
    position: relative;
    line-height: 1.6;
}

.impressum-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.impressum-block a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    transition: var(--transition-fast);
}

.impressum-block a:hover {
    color: var(--accent-gold);
}

.info-box {
    background-color: var(--background-cream);
    border-left: 4px solid var(--accent-gold);
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.info-box h3 {
    margin-top: 0;
}

.datenschutz-content .index {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.datenschutz-content .index li {
    margin: 8px 0;
}

.datenschutz-content .index-link {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
}

.datenschutz-content .index-link:hover {
    color: var(--accent-gold);
}

.glossary {
    list-style: none;
    padding-left: 0;
}

.glossary li {
    margin-bottom: 20px;
    padding-left: 0;
}

.impressum-back {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

.impressum-back .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.impressum-back .btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design for Impressum */
@media (max-width: 768px) {
    .impressum,
    .datenschutz {
        padding: 60px 0;
    }

    .impressum-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .impressum-header h1 {
        font-size: 2rem;
    }

    .impressum-header .section-subtitle {
        font-size: 1rem;
    }

    .impressum-block h2 {
        font-size: 1.4rem;
    }

    .impressum-block h3 {
        font-size: 1.05rem;
    }

    .impressum-block {
        margin-bottom: 35px;
        padding-bottom: 25px;
    }

    .impressum-block p {
        font-size: 0.95rem;
    }

    /* Datenschutz mobile styles */
    .datenschutz h1 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .datenschutz h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .datenschutz h3 {
        font-size: 1.05rem;
        margin-top: 18px;
        margin-bottom: 12px;
    }

    .datenschutz p {
        font-size: 0.95rem;
    }

    .datenschutz ul {
        margin: 12px 0;
    }

    .datenschutz li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
}

/* ===========================
   COMPREHENSIVE RESPONSIVE DESIGN
   =========================== */

/* Large Desktop (1200px+) - Default styles */

/* Desktop/Tablet Transition (1024px - 1199px) */
@media (max-width: 1199px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }
    
    .about-content,
    .why-us-content,
    .home-comfort-content {
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .pricing-grid-packages {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-card {
        max-width: 550px;
        margin: 0 auto;
    }
    
    .about-content,
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .home-comfort-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .home-comfort-text h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid-packages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
}

/* Tablet Portrait (600px - 767px) */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
        --container-padding: 15px;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-smooth);
        gap: 20px;
        z-index: 1001;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .logo-text {
        display: flex;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .hero-highlights {
        margin: 20px 0;
        gap: 10px;
    }
    
    .hero-highlights li {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .hero-card {
        padding: 30px 25px;
        max-width: 100%;
    }
    
    .hero-card h3 {
        font-size: 1.6rem;
    }
    
    .card-services {
        font-size: 0.95rem;
    }
    
    .card-contact {
        gap: 12px;
    }
    
    .contact-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .contact-link svg {
        width: 18px;
        height: 18px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 1.9rem;
    }
    
    .section-label {
        font-size: 0.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-content {
        gap: 30px;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .about-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
        gap: 15px;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
    }
    
    /* Home Comfort */
    .home-comfort-content {
        gap: 30px;
    }
    
    .home-comfort-text h2 {
        font-size: 2rem;
    }
    
    .home-comfort-lead {
        font-size: 1.05rem;
    }
    
    .comfort-region-image {
        max-width: 280px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Abrechnung */
    .abrechnung-intro {
        padding: 20px;
    }
    
    .abrechnung-intro p {
        font-size: 0.95rem;
    }
    
    .abrechnung-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .abrechnung-card {
        padding: 25px;
    }
    
    .abrechnung-card h3 {
        font-size: 1.25rem;
    }
    
    /* Why Us */
    .why-us-content {
        gap: 30px;
    }
    
    .why-us-list {
        gap: 15px;
    }
    
    .why-item {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .why-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
    }
    
    .why-content h4 {
        font-size: 1rem;
    }
    
    .why-content p {
        font-size: 0.9rem;
    }
    
    .floating-badge {
        width: 90px;
        height: 90px;
        padding: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .badge-number {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid-packages {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .pricing-card {
        border-radius: 15px;
    }
    
    .pricing-header {
        padding: 30px 25px 25px;
    }
    
    .pricing-header h3 {
        font-size: 1.6rem;
    }
    
    .pricing-body {
        padding: 25px;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    /* Contact */
    .contact-content {
        gap: 30px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .contact-card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .contact-card h4 {
        font-size: 1.15rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col h4 {
        font-size: 1.15rem;
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-legal {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-2x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-image img {
        height: 220px;
    }
    
    /* Back to top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 15px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Small (480px and below) */
@media (max-width: 479px) {
    :root {
        --container-padding: 12px;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-line.highlight {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-highlights li {
        font-size: 0.85rem;
    }
    
    .hero-card {
        padding: 25px 20px;
    }
    
    .hero-card h3 {
        font-size: 1.4rem;
    }
    
    .card-services {
        font-size: 0.9rem;
    }
    
    .hero-badge {
        padding: 12px 15px;
    }
    
    .badge-premium {
        font-size: 0.95rem;
    }
    
    .badge-subtext {
        font-size: 0.8rem;
    }
    
    .contact-link {
        padding: 10px 12px;
        font-size: 0.8rem;
        gap: 8px;
    }
    
    .contact-link svg {
        width: 16px;
        height: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .feature-item,
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .feature-icon,
    .why-icon {
        margin: 0 auto;
    }
    
    .feature-content,
    .why-content {
        text-align: center;
    }
    
    .home-comfort-text h2 {
        font-size: 1.7rem;
    }
    
    .home-comfort-lead {
        font-size: 1rem;
    }
    
    .home-comfort-text p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
    }
    
    .abrechnung-card {
        padding: 20px;
    }
    
    .abrechnung-card h3 {
        font-size: 1.15rem;
    }
    
    .pricing-header {
        padding: 25px 20px 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
    }
    
    .pricing-body {
        padding: 20px;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .price-item {
        flex-direction: column;
        gap: 8px;
        padding: 15px 0;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .footer-logo .logo-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo .logo-main {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .floating-badge {
        width: 80px;
        height: 80px;
        padding: 15px;
    }
    
    .badge-number {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .gallery-item img {
        height: 100%;
    }

    .gallery-item {
        aspect-ratio: 5 / 4;
    }
    
    .showcase-image img {
        height: 180px;
    }
    
    .gallery-2x2 {
        gap: 16px;
    }
}

/* Extra Small Devices (320px) */
@media (max-width: 359px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .title-line.highlight {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .hero-card {
        padding: 20px 15px;
    }
    
    .hero-card h3 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

/* ===========================
   ACCESSIBILITY
   =========================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .navbar,
    .scroll-indicator,
    .back-to-top,
    .mobile-menu-toggle {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section-padding {
        padding: 40px 0;
    }
}
