/* ===================================
   TMW CONSULTING - MODERN DESIGN
   Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #c19a6b;
    --primary-dark: #a67c52;
    --primary-light: #e8d5b7;
    --bg-light: #f7f9fb;
    --bg-white: #ffffff;
    --text-dark: #222222;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(30, 40, 90, 0.07);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 10px;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Navigation */
.navigation {
    display: flex;
    gap: 0;
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, #f5e9da 0%, #f9f6f2 100%);
    padding: 100px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: slideInDown 0.6s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: slideInUp 0.6s ease;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f5e9da 0%, #f9f6f2 100%);
    padding: 60px 2rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ===================================
   BUTTONS
   =================================== */

.cta-button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.cta-button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(193, 154, 107, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.cta-button.full-width {
    width: 100%;
}

/* ===================================
   SECTIONS
   =================================== */

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: #3b3b3b;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.5rem;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 60px 2rem;
    text-align: center;
    border-radius: var(--radius);
    margin: 60px 0;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.page-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 60px 2rem;
    text-align: center;
    border-radius: var(--radius);
    margin: 80px 0;
}

.page-cta h2 {
    color: var(--bg-white);
}

.page-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ===================================
   DETAILED SERVICE SECTIONS
   =================================== */

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-of-type {
    border-bottom: none;
}

.service-detail h2 {
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Qualifications */
.qualifications-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.qualifications-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.qualification-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.qual-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.qualification-card h3 {
    margin-bottom: 1rem;
}

/* Experience Highlights */
.experience-section {
    padding: 80px 0;
}

.experience-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: scale(1.05);
}

.highlight-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--text-gray);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* References */
.references-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* References - UPDATED */
.reference-card {
    background: #1f1f1f;  /* Dunkler Hintergrund statt weiß */
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reference-card.featured {
    border-left-color: #c19a6b;  /* Gold statt blau */
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);  /* Dunkler Gradient */
}

.reference-card.success {
    border-left-color: #c19a6b;  /* Gold statt grün */
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);  /* Dunkler Gradient */
}

.reference-header {
    padding: 1.5rem;
    border-bottom: 1px solid #333;  /* Dunkler Border */
}

.reference-header h3 {
    margin: 0 0 1rem 0;
    color: #e0e0e0;  /* Hell statt dunkel */
    font-size: 1.1rem;
}

.reference-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.reference-meta span,
.meta-item {
    background: #2a2a2a;  /* Dunkler Hintergrund */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #b0b0b0;  /* Heller Text */
    font-weight: 500;
    border: 1px solid #444;  /* Subtiler Border */
}

.reference-meta .highlight {
    background: #c19a6b;  /* Gold */
    color: #1f1f1f;  /* Dunkler Text auf Gold */
    font-weight: 600;
    border: none;
}

.reference-content {
    padding: 1.5rem;
    color: #b0b0b0;  /* Hell */
}

.reference-content h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #c19a6b;  /* Gold-Überschriften */
}

.reference-content p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.reference-content ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 1rem 0;
}

.reference-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.reference-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c19a6b;  /* Gold Checkmark */
    font-weight: bold;
}

.reference-stats {
    padding: 80px 0;
    background: var(--bg-light);
}

.reference-stats h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===================================
   METHODOLOGIES
   =================================== */

.methodologies-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.methodologies-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.methodologies-section > p {
    text-align: center;
    margin-bottom: 3rem;
}

.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
}

/* ===================================
   NEWS SECTION
   =================================== */

.news-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.news-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.news-excerpt {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.news-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.news-link:hover {
    gap: 0.5rem;
}

/* Newsletter */
.newsletter-section {
    background: var(--bg-light);
    padding: 60px 2rem;
    border-radius: var(--radius);
    text-align: center;
    margin: 60px 0;
}

.newsletter-section h2 {
    margin-bottom: 0.5rem;
}

.newsletter-section > p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.newsletter-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-wrapper h2,
.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group.consent label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: 400;
}

.form-group.consent input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
    cursor: pointer;
}

/* Contact FAQ */
.contact-faq {
    padding: 60px 0;
    background: var(--bg-light);
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    margin-bottom: 1rem;
}

/* ===================================
   LEGAL PAGES STYLING
   =================================== */

.legal-content {
    padding: 60px 0;
}

.legal-section {
    background: #1f1f1f;
    padding: 3rem 2rem;
    border-radius: var(--radius);
    color: #b0b0b0;
}

.legal-section h2 {
    color: #c19a6b;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: #c19a6b;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-section p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section a {
    color: #c19a6b;
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-box {
    background: #2a2a2a;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 1.5rem 0;
    border-left: 4px solid #c19a6b;
}

.legal-box h3 {
    color: #c19a6b;
    margin-top: 0;
}

.legal-list {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.legal-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #b0b0b0;
}

.legal-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c19a6b;
    font-weight: bold;
}

.legal-updated {
    background: #333;
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 3rem;
    border-top: 2px solid #c19a6b;
}

.legal-updated p {
    margin: 0;
    color: #b0b0b0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 0;
    }

    .legal-section {
        padding: 1.5rem 1rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .legal-box {
        padding: 1rem;
        margin: 1rem 0;
    }
}

/* ===================================
   ABOUT LAYOUT
   =================================== */

.about-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 25px;
}

.about-image-wrapper {
    text-align: center;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image-wrapper img:hover {
    transform: scale(1.03);
}

.about-text-wrapper h2 {
    margin-bottom: 1.5rem;
}

/* ===================================
   FOOTER - UPDATED
   =================================== */

.footer {
    background: #2a2a2a;  /* Dunkles Grau statt Creme */
    color: #e0e0e0;
    padding: 60px 2rem 2rem;
    margin-top: 80px;
    border-top: 1px solid #c19a6b;  /* Gold-Akzent oben */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #c19a6b;  /* Gold-Farbe für Überschriften */
    font-weight: 600;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b0b0b0;
    transition: var(--transition);
    font-weight: 500;
}

.footer-section a:hover {
    color: #c19a6b;
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* ===================================
   COOKIE BANNER
   =================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34, 34, 34, 0.95);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    line-height: 1.4;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-accept {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: slideIn 0.3s ease;
}

.popup-content button {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 1rem;
}

.popup-content button:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}