/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* ===== CSS CUSTOM PROPERTIES (PROFESSIONELLES DUNKLES DESIGN) ===== */
:root {
    /* Professionelle dunkle Hauptfarbpalette */
    --color-primary: #1e4d3b;        /* Premium Dunkelgrün */
    --color-secondary: #2a3f4a;      /* Elegantes Dunkelblau */
    --color-accent: #c9a876;         /* Luxuriöses Gold */
    --color-neutral: #1a1a1a;        /* Tiefes Schwarz */
    
    /* Verfeinerte Nuancen für Luxus-Look */
    --primary-light: #2d6b4f;
    --primary-dark: #0f1f18;
    --secondary-light: #3d5865;
    --secondary-dark: #1a252a;
    --accent-light: #d4b685;
    --accent-dark: #b59660;
    --neutral-light: #2d2d2d;
    --neutral-dark: #0d0d0d;
    
    /* Semantische Farben für dunkles Premium-Design */
    --primary-color: var(--color-primary);
    --secondary-color: var(--color-secondary);
    --accent-color: var(--color-accent);
    --background-color: #0a0a0a;
    --section-background: #111111;
    --section-alt-background: #161616;
    --card-background: #1f1f1f;
    --text-color: #e8e8e8;
    --text-light: #b8b8b8;
    --text-medium: #d0d0d0;
    --text-dark: #a0a0a0;
    --text-white: #ffffff;
    --border-color: #333333;
    --border-light: #404040;
    
    /* Layout Properties für Premium-Look */
    --container-max-width: 1200px;
    --border-radius: 12px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.8);
    --shadow-accent: 0 4px 20px rgba(201, 168, 118, 0.3);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== PREMIUM DUNKLE TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

h1 { 
    font-size: 4rem; 
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 { font-size: 3rem; color: var(--text-white); }
h3 { font-size: 2.25rem; color: var(--text-medium); }
h4 { font-size: 1.75rem; color: var(--text-medium); }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 800;
    position: relative;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(201, 168, 118, 0.4);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== PREMIUM DUNKLE BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.03em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-accent);
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 118, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 118, 0.1) 100%);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    position: relative;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--color-neutral);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

/* ===== PREMIUM DUNKLE NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(17, 17, 17, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: -4px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(201, 168, 118, 0.6);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--color-neutral) !important;
    padding: 0.8rem 1.8rem !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--text-white) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 118, 0.6);
    text-shadow: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--text-white) 100%);
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, var(--primary-color) 0%, var(--secondary-color) 50%, var(--background-color) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 77, 59, 0.9) 0%, rgba(42, 63, 74, 0.85) 50%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 0 2rem;
    color: var(--text-white);
}

.hero-logo {
    margin-bottom: 3rem;
}

.logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.hero-logo h1 {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--accent-color) 50%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    filter: drop-shadow(0 4px 8px rgba(201, 168, 118, 0.3));
}

.hero-tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 1.9;
    background: linear-gradient(135deg, rgba(30, 77, 59, 0.3) 0%, rgba(201, 168, 118, 0.1) 100%);
    padding: 2.5rem 3rem;
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 118, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===== PREMIUM SERVICES SECTION ===== */
.services {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--section-alt-background) 0%, var(--section-background) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 118, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 77, 59, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, var(--card-background) 0%, rgba(31, 31, 31, 0.95) 100%);
    padding: 2rem 2rem 3rem 2rem;
    border-radius: 16px;
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    height: 100%;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(201, 168, 118, 0.4);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--accent-color);
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.98) 0%, rgba(45, 45, 45, 0.95) 100%);
}

.service-card:hover::before {
    height: 6px;
    background: linear-gradient(90deg, var(--accent-light) 0%, var(--text-white) 50%, var(--accent-light) 100%);
    box-shadow: 0 0 20px rgba(201, 168, 118, 0.8);
}

.service-image {
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    filter: brightness(0.9) contrast(1.1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.3);
}

.service-card:hover .service-image {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 0 2px var(--accent-color);
}

.service-details {
    width: 100%;
    height: 280px;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-light);
}

.additional-services h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.additional-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.additional-services li {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
    font-weight: 500;
}

.additional-services li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-card:hover .additional-services h4 {
    color: var(--accent-light);
    text-shadow: 0 0 10px rgba(201, 168, 118, 0.6);
}

.service-card:hover .service-details {
    border-color: var(--accent-color);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6), 0 0 0 2px var(--accent-color);
}

/* NEW TABLE STYLE SERVICES */
.service-section {
    background: linear-gradient(135deg, var(--card-background) 0%, rgba(31, 31, 31, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 2px solid var(--accent-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
    box-shadow: 0 0 20px rgba(201, 168, 118, 0.6);
}

.service-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 3px var(--accent-light);
    border-color: var(--accent-light);
}

.service-image-header {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.service-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    filter: brightness(0.9) contrast(1.1);
}

.service-section:hover .service-image-header img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.2);
}

.service-section h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.service-section:hover h3 {
    color: var(--accent-light);
    text-shadow: 0 0 15px rgba(201, 168, 118, 0.8);
}

.service-list {
    flex-grow: 1;
}

.service-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.service-list li:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

/* ZUSÄTZLICHE SERVICES TABELLE */
.additional-services-section {
    margin-top: 4rem;
}

.services-table-header {
    margin-bottom: 2rem;
    text-align: center;
}

.services-table-header h3 {
    font-size: 2.25rem;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
}

.services-table-container {
    background: linear-gradient(135deg, var(--card-background) 0%, rgba(31, 31, 31, 0.95) 100%);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--accent-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    overflow-x: auto;
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

.services-table thead th {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--text-white);
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border: none;
}

.services-table thead th:first-child {
    border-radius: 12px 0 0 0;
    width: 40%;
}

.services-table thead th:last-child {
    border-radius: 0 12px 0 0;
    width: 60%;
}

.services-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.services-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(31, 31, 31, 0.9) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.services-table tbody tr:last-child {
    border-bottom: none;
}

.services-table tbody td {
    padding: 1.5rem 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.services-table tbody td:first-child {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.15rem;
}

.services-table tbody tr:hover td:first-child {
    color: var(--accent-light);
    text-shadow: 0 0 8px rgba(201, 168, 118, 0.5);
}

/* Responsive Table - Mobile First */
@media (max-width: 768px) {
    .additional-services-section {
        margin-top: 3rem;
    }
    
    .services-table-header h3 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .services-table-container {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    /* Mobile: Table wird zu Card-Layout */
    .services-table,
    .services-table thead,
    .services-table tbody,
    .services-table th,
    .services-table td,
    .services-table tr {
        display: block;
    }
    
    .services-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .services-table tbody tr {
        border: 1px solid var(--border-light);
        border-radius: 12px;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(31, 31, 31, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }
    
    .services-table tbody tr:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    
    .services-table tbody td {
        border: none;
        padding: 0.75rem 0;
        position: relative;
        padding-left: 0 !important;
    }
    
    .services-table tbody td:first-child {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--accent-color);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .services-table tbody td:last-child {
        font-size: 1.05rem;
        color: var(--text-light);
        line-height: 1.6;
        padding-top: 1rem;
    }
}

@media (max-width: 480px) {
    .services-table-container {
        padding: 1rem 0.75rem;
        margin: 0 -1rem;
        border-radius: 12px;
    }
    
    .services-table tbody tr {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .services-table tbody td:first-child {
        font-size: 1.2rem;
    }
    
    .services-table tbody td:last-child {
        font-size: 1rem;
    }
}


.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(201, 168, 118, 0.5);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== PREMIUM ABOUT SECTION ===== */
.about {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--section-background) 0%, var(--background-color) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(30, 77, 59, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
}

.about-description p {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

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

.feature-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--color-neutral);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(201, 168, 118, 0.4);
    border: 2px solid rgba(201, 168, 118, 0.3);
}

.feature-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.about-image {
    position: relative;
}

.team-photo {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
}

.team-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.team-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.team-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== PREMIUM GALLERY SECTION ===== */
.gallery {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--section-alt-background) 0%, var(--section-background) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(201, 168, 118, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-light);
    background: linear-gradient(135deg, var(--card-background) 0%, rgba(31, 31, 31, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9), 0 0 0 1px var(--accent-color);
    border-color: var(--accent-color);
}

.gallery-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--nebelgrau) 0%, var(--nebelgrau-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.gallery-placeholder.coming-soon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    position: relative;
}

.gallery-placeholder.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201, 168, 118, 0.2) 0%, transparent 70%);
    pointer-events: none;
}


.coming-soon-text {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--text-white) 0%, var(--accent-color) 50%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 1;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}


.gallery-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

.gallery-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* ===== SERVICE AREA SECTION ===== */
.service-area {
    padding: 8rem 0;
    background: var(--background-color);
}

.area-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.area-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--tannengruen-light) 0%, var(--tannengruen) 100%);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.map-icon svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.5);
}

.map-cities {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
}

.city-marker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.city-marker.primary {
    background: var(--accent-color);
    font-weight: 600;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

.coverage-list {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.coverage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.coverage-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.coverage-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.coverage-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.coverage-item p {
    color: var(--text-light);
    margin: 0;
}

.response-time {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    color: white;
}

.time-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.time-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.time-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.time-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.time-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===== PREMIUM CONTACT SECTION ===== */
.contact {
    background: radial-gradient(circle at 25% 10%, rgba(201, 168, 118, 0.08), transparent 60%),
                radial-gradient(circle at 90% 20%, rgba(30, 77, 59, 0.12), transparent 65%),
                var(--section-background);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
    pointer-events: none;
}

.contact .container {
    position: relative;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.contact-intro {
    max-width: var(--content-narrow-width);
    margin: 0 auto;
    text-align: center;
    color: rgba(232, 232, 232, 0.78);
    font-size: 1.05rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: rgba(14, 14, 14, 0.85);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 118, 0.35);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(201, 168, 118, 0.18);
    color: var(--accent-color);
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.05);
    background: rgba(201, 168, 118, 0.28);
    color: var(--text-white);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: currentColor;
}

.contact-item h4 {
    margin-bottom: 0.35rem;
    font-size: 1.2rem;
    color: var(--text-white);
}

.contact-item p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(232, 232, 232, 0.9);
    font-weight: 600;
}

.contact-item span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.95rem;
    color: rgba(232, 232, 232, 0.65);
}

.contact-item > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-container {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 77, 58, 0.1);
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== PRICING SECTION (PREMIUM REDESIGN) ===== */
.pricing {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f26 50%, #0f1419 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(201, 168, 118, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(30, 77, 59, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, transparent 0%, rgba(201, 168, 118, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing .section-header h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c9a876 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.pricing .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin: 5rem 0;
    align-items: start;
}

.pricing-card {
    background: linear-gradient(145deg, #1f252d 0%, #181e24 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(201, 168, 118, 0.1), transparent);
    opacity: 0;
    transition: all 0.6s ease;
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(201, 168, 118, 0.5);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(201, 168, 118, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.featured {
    border-color: rgba(201, 168, 118, 0.6);
    background: linear-gradient(145deg, #1f252d 0%, #2a3038 100%);
    transform: scale(1.05);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 168, 118, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(201, 168, 118, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.featured-badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b685 100%);
    color: #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 0 0 16px 16px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 4px 15px rgba(201, 168, 118, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.pricing-header h3 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.currency {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(201, 168, 118, 0.5);
}

.amount {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.period {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.price-description {
    color: var(--text-medium);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-features li:hover {
    color: var(--text-white);
    padding-left: 0.5rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b685 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 
        0 4px 12px rgba(201, 168, 118, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-footer {
    margin-top: 3rem;
    text-align: center;
}

.pricing-footer .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.pricing-footer .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b685 100%);
    color: #1a1a1a;
    box-shadow: 
        0 8px 25px rgba(201, 168, 118, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.pricing-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(201, 168, 118, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.pricing-footer .btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-footer .btn-outline:hover {
    border-color: var(--accent-color);
    background: rgba(201, 168, 118, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 168, 118, 0.2);
}

.individual-services {
    margin-top: 4rem;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, #1a2028 0%, #151a20 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.individual-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.individual-services h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-price-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-price-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #1f252d 0%, #181e24 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-price-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b685 100%);
    transform: scaleY(0);
    transition: all 0.3s ease;
}

.service-price-item:hover {
    border-color: rgba(201, 168, 118, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(201, 168, 118, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-price-item:hover::before {
    transform: scaleY(1);
}

.service-name {
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    width: 100%;
}

.service-price-item:hover .service-name {
    color: var(--accent-color);
}

.service-price {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.3rem;
    text-shadow: 0 0 8px rgba(201, 168, 118, 0.4);
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d4b685 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-note {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--primary-color) 25%,
        var(--accent-color) 50%,
        var(--primary-color) 75%,
        transparent 100%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.pricing-note p {
    color: var(--text-white);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ===== REVIEWS SECTION ===== */

/* ===== FAQ SECTION ===== */
.faq {
    background: var(--section-background);
    padding: 6rem 0;
    position: relative;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-background);
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--card-background);
}

.faq-question:hover {
    background: rgba(201, 168, 118, 0.05);
}

.faq-question h3 {
    color: var(--text-white);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== PREMIUM FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--background-color) 100%);
    color: var(--text-white);
    padding: 5rem 0 2.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(201, 168, 118, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: var(--text-white);
    font-size: 1.8rem;
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.footer-column li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column li:hover {
    color: var(--text-white);
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--text-white);
}

/* ===== 2024 LAYOUT REFINEMENT ===== */
:root {
    --section-spacing: clamp(4rem, 6vw, 7rem);
    --section-spacing-lg: clamp(5.5rem, 7vw, 9rem);
    --content-max-width: 1080px;
    --content-narrow-width: 780px;
}

body {
    line-height: 1.75;
    background-color: var(--background-color);
}

.container {
    max-width: var(--content-max-width);
    padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

section {
    padding: var(--section-spacing) 0;
    position: relative;
}

section .section-header,
.section-header {
    max-width: var(--content-narrow-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-header h2 {
    text-shadow: none;
}

.section-header p {
    margin-bottom: 0;
    color: rgba(232, 232, 232, 0.85);
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: none;
}

.hero {
    min-height: 85vh;
    padding: var(--section-spacing-lg) 0 var(--section-spacing);
}

.hero-content {
    padding: 0 clamp(1rem, 4vw, 3rem);
}

.hero-logo {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-logo h1 {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    filter: none;
}

.hero-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.hero-text p {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
    color: rgba(255, 255, 255, 0.88);
}

.hero-buttons {
    gap: clamp(1rem, 2vw, 1.75rem);
}

.services,
.about,
.pricing,
.reviews,
.gallery,
.faq,
.area,
.contact {
    padding: var(--section-spacing) 0;
}

.services-grid,
.pricing-grid,
.reviews-grid,
.gallery-grid {
    gap: clamp(1.75rem, 2.5vw, 2.75rem);
}

.service-card,
.pricing-card,
.review-card {
    background: rgba(20, 20, 20, 0.92);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: clamp(1.75rem, 3vw, 2.5rem);
}

.service-card::before,
.pricing-card::before {
    content: none;
}

.service-card:hover,
.pricing-card:hover,
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(201, 168, 118, 0.5);
}

.service-card p,
.pricing-card li,
.review-card p {
    color: rgba(232, 232, 232, 0.8);
}

.service-image,
.service-image-header {
    height: clamp(220px, 32vw, 260px);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.pricing-note {
    max-width: var(--content-narrow-width);
    margin: clamp(3rem, 5vw, 4rem) auto 0;
    padding: clamp(1.25rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
}

.about-content {
    max-width: var(--content-narrow-width);
    text-align: center;
}

.about-description p {
    font-size: 1.05rem;
    color: rgba(232, 232, 232, 0.82);
}

.feature-icon {
    box-shadow: none;
    border: none;
}

.overall-rating {
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.reviews-grid {
    align-items: stretch;
}

.faq-container {
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.faq-question {
    padding: clamp(1rem, 3vw, 1.5rem);
}

.faq-answer p {
    font-size: 1rem;
    color: rgba(232, 232, 232, 0.78);
}

.area-content {
    gap: clamp(2rem, 4vw, 3rem);
}

.contact .section-header {
    text-align: center;
}

.contact-content {
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.contact-info-grid {
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-item {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 14px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.footer {
    padding: var(--section-spacing) 0 2.5rem;
}

.footer-content {
    gap: clamp(2.5rem, 5vw, 4rem);
}

.footer-links {
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-column li {
    color: rgba(232, 232, 232, 0.72);
}

.footer-bottom {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.legal-links a {
    color: rgba(232, 232, 232, 0.7);
}

.legal-links a:hover {
    color: var(--text-white);
}

body.modal-open {
    padding-right: 0;
}

/* ===== MODAL STYLES ===== */
.modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-dialog {
    position: relative;
    background: linear-gradient(145deg, var(--section-background), var(--section-alt-background));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.85);
    max-width: 700px;
    width: 100%;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding: 2.75rem 3rem;
    z-index: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    cursor: pointer;
    z-index: 0;
}

.modal-content h3 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.modal-content p {
    font-size: 1rem;
    color: rgba(232, 232, 232, 0.85);
    margin-bottom: 1.1rem;
}

.modal-content p strong {
    color: var(--text-white);
    display: inline-block;
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: var(--text-white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    transition: var(--transition);
    z-index: 5;
}

.modal-close:hover,
.modal-close:focus {
    background: rgba(201, 168, 118, 0.2);
    color: var(--accent-color);
    outline: none;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal {
        padding: 1.5rem;
    }

    .modal-dialog {
        padding: 2rem;
        max-height: calc(100vh - 3rem);
    }

    .modal-content h3 {
        font-size: 1.6rem;
    }

    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        padding: 1.75rem 1.5rem;
    }
}

/* ===== MOBILE RESPONSIVE ENHANCEMENTS ===== */

/* Mobile responsive for pricing cards */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .services-price-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--background-color) 0%, var(--section-background) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.8);
        border-top: 2px solid var(--accent-color);
        backdrop-filter: blur(20px);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: var(--transition);
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero logo positioning fix */
    .hero {
        padding-top: 120px;
        min-height: calc(100vh - 80px);
    }
    
    .hero-logo {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }
    
    .logo-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .hero-logo h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .amount {
        font-size: 2.8rem;
    }
    
    .review-content p {
        padding-left: 1rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .area-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(17, 17, 17, 0.98) 100%);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
        border-top: 1px solid var(--accent-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        border-radius: 8px;
        transition: var(--transition);
    }
    
    .nav-menu a:hover {
        background: linear-gradient(135deg, rgba(201, 168, 118, 0.2) 0%, rgba(30, 77, 59, 0.1) 100%);
        color: var(--accent-color);
        text-shadow: 0 0 10px rgba(201, 168, 118, 0.5);
        transform: scale(1.02);
    }
    
    .nav-cta {
        margin: 1rem 2rem;
        width: auto !important;
        display: inline-block !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-logo h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    
    .google-maps-container iframe {
        height: 300px;
    }
    
    .area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .coverage-list {
        gap: 1rem;
    }
    
    /* Individual Services Tablet Optimization */
    .individual-services {
        margin-top: 3rem;
        padding: 2rem 1.25rem;
    }
    
    .individual-services h3 {
        font-size: 1.6rem;
        margin-bottom: 1.75rem;
    }
    
    .services-price-grid {
        gap: 0.65rem;
        max-width: 600px;
    }
    
    .service-price-item {
        padding: 1.1rem 1.25rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-logo h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.25rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gallery-placeholder {
        height: 200px;
        padding: 1rem;
    }
    
    .coming-soon-text {
        font-size: 1.25rem;
    }
    
    .google-maps-container iframe {
        height: 250px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-subtitle {
        font-size: 0.75rem;
    }
    
    /* Individual Services Mobile Optimization */
    .individual-services {
        margin-top: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .individual-services h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .services-price-grid {
        gap: 0.6rem;
    }
    
    .service-price-item {
        padding: 1rem;
    }
    
    .service-name {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .service-price {
        font-size: 1.1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .contact-form,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-bg {
        display: none;
    }
    
    .hero-content {
        color: var(--text-color);
    }
    
    .hero-logo h1,
    .hero-text h2 {
        color: var(--primary-color);
    }
    
    * {
        box-shadow: none !important;
    }
}
