@charset "UTF-8";

/* ===================================================================
   MINIMALISTISCHE GLOBALE STYLES FÜR SACHVERSTÄNDIGENBÜRO JÜRGEN ABEND
   Design: Minimalistisch & Edel für Privatpersonen, Rechtsanwälte, Gerichte
   Grundfarbe: #0f2a4a (Dunkelblau)
   Akzentfarbe: #c9a961 (Gold)
   Schriftart: Inter (lokal gehostet)
   =================================================================== */

/* === SCHRIFTART INTER EINBINDEN === */
@import url('assets/fonts/inter/inter.css');

/* === CSS VARIABLEN === */
:root {
    /* Primärfarben */
    --primary-blue: #0f2a4a;
    --primary-blue-hover: #1a3a5f;
    
    /* Akzentfarbe */
    --accent-gold: #c9a961;
    --accent-hover: #b59451;
    
    /* Textfarben */
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    /* Hintergrundfarben */
    --bg-white: #ffffff;
    --bg-light: #fafbfc;
    --bg-lighter: #f8fafc;
    
    /* Borders */
    --border-light: rgba(0, 0, 0, 0.05);
    --border-medium: rgba(0, 0, 0, 0.1);
    
    /* Schatten */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.4s ease;
}

/* === GLOBALE RESET & BASIS === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: auto;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-style: normal;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark);
    background: var(--bg-light);
    position: relative;
    overflow-x: hidden;
}

/* === GLOBALE TYPOGRAFIE === */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.3px;
    color: var(--primary-blue);
    margin: 0;
}

h1 {
    font-size: 52px;
    font-weight: 300;
}

h2 {
    font-size: 36px;
    font-weight: 300;
}

h3 {
    font-size: 24px;
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 500;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

a {
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-normal);
}

/* === CONTAINER SYSTEM === */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === NAVIGATION - MINIMALISTISCH === */
.navbar-minimal {
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.navbar-minimal.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 5rem;
    width: auto;
    transition: var(--transition-normal);
}

.navbar-minimal.scrolled .logo-container img {
    height: 4rem;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
    margin: 0;
}

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

.nav-menu > li > a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-normal);
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu > li > a:hover {
    color: var(--accent-gold);
}

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

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    padding: 0.5rem 0;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    list-style: none;
    margin-top: 0.5rem;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--bg-lighter);
    color: var(--accent-gold);
    padding-left: 1.8rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--primary-blue);
    font-size: 24px;
}

/* === HERO SECTION - ULTRA CLEAN === */
.hero-minimal {
    background: linear-gradient(to bottom, var(--bg-lighter) 0%, var(--white) 100%);
    padding: 180px 2rem 120px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-blue);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--accent-gold);
    margin: 30px auto;
}

.services-line {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* === BUTTONS - MINIMAL === */
.btn-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    color: var(--primary-blue);
    transition: var(--transition-normal);
    font-size: 15px;
    background: transparent;
    cursor: pointer;
}

.btn-minimal:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-minimal i {
    width: 16px;
    height: 16px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--accent-gold);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    color: var(--accent-gold);
    transition: var(--transition-normal);
    font-size: 15px;
    background: transparent;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* === SECTIONS - MINIMAL === */
.section-minimal {
    padding: 100px 2rem;
    background: var(--white);
}

.section-minimal-alt {
    padding: 100px 2rem;
    background: var(--bg-lighter);
}

.section-title-minimal {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 60px;
    font-weight: 300;
    text-align: center;
    letter-spacing: -0.3px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* === SERVICE CARDS - MINIMAL === */
.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-minimal {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition-normal);
    text-decoration: none;
    color: inherit;
    border-left: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card-minimal:hover {
    border-left-color: var(--accent-gold);
    transform: translateX(3px);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.service-icon-minimal {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.service-icon-minimal i {
    width: 26px;
    height: 26px;
}

.service-card-minimal h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-card-minimal p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-link-minimal {
    color: var(--accent-gold);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-top: auto;
}

.service-link-minimal i {
    width: 14px;
    height: 14px;
    transition: var(--transition-fast);
}

.service-card-minimal:hover .service-link-minimal i {
    transform: translateX(3px);
}

/* === CONTENT SECTIONS === */
.content-section-minimal {
    max-width: 800px;
    margin: 0 auto;
}

.content-section-minimal h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

.content-section-minimal h3 {
    font-size: 24px;
    margin: 40px 0 16px;
    font-weight: 500;
}

.content-section-minimal p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.content-section-minimal ul,
.content-section-minimal ol {
    margin: 20px 0 20px 20px;
}

.content-section-minimal li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
}

/* === FEATURE LIST - MINIMAL === */
.feature-list-minimal {
    list-style: none;
    margin: 40px 0;
    padding: 0;
}

.feature-list-minimal li {
    padding: 16px 0 16px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    font-size: 16px;
    color: var(--text-medium);
}

.feature-list-minimal li:last-child {
    border-bottom: none;
}

.feature-list-minimal li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === INFO BOX - MINIMAL === */
.info-box-minimal {
    background: var(--bg-lighter);
    border-left: 4px solid var(--accent-gold);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.info-box-minimal h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.info-box-minimal p {
    margin-bottom: 12px;
}

.info-box-minimal p:last-child {
    margin-bottom: 0;
}

/* === DIVIDER === */
.divider-minimal {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-medium) 50%, transparent 100%);
    margin: 60px 0;
    opacity: 0.5;
}

/* === FOOTER - MINIMAL === */
.footer-minimal {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid-minimal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column-minimal h4 {
    color: var(--accent-gold);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
}

.footer-column-minimal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-minimal li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
}

.footer-column-minimal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 14px;
}

.footer-column-minimal a:hover {
    color: var(--accent-gold);
    padding-left: 3px;
}

.footer-bottom-minimal {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-minimal p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .footer-grid-minimal {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .container-custom,
    .container-narrow {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        align-items: flex-start;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
        padding: 1rem 0;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0.5rem 0 0 1rem;
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero Mobile */
    .hero-minimal {
        padding: 140px 1.5rem 80px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .services-line {
        font-size: 14px;
    }
    
    /* Sections Mobile */
    .section-minimal,
    .section-minimal-alt {
        padding: 60px 1.5rem;
    }
    
    .section-title-minimal {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    /* Service Cards Mobile */
    .services-grid-minimal {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card-minimal {
        padding: 30px 24px;
    }
    
    /* Content Mobile */
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    /* Footer Mobile */
    .footer-minimal {
        padding: 50px 0 30px;
    }
    
    .footer-grid-minimal {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container-custom,
    .container-narrow {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .btn-minimal,
    .btn-gold {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* === LEGAL CONTENT - MINIMAL === */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 60px;
    margin-bottom: 20px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-content p strong {
    color: var(--text-dark);
}

.legal-content a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 20px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.divider {
    height: 1px;
    background: var(--border-light);
    margin: 40px 0;
}

/* Legal Content Responsive */
@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }
    
    .legal-content h3 {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .divider {
        margin: 30px 0;
    }
}

/* === LEGAL CONTENT STYLES - MINIMAL === */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 60px;
    margin-bottom: 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.divider {
    height: 1px;
    background: var(--border-light);
    margin: 40px 0;
}

/* Legal Content Responsive */
@media (max-width: 768px) {
    .legal-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }
    
    .legal-content h3 {
        font-size: 18px;
        margin-top: 30px;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}

/* === COOKIE BANNER - MINIMAL === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px 0;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    font-size: 14px;
    color: var(--text-medium);
    margin: 0 0 8px 0;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-gold);
    color: var(--primary-blue);
}

.cookie-btn-accept:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-medium);
    border: 2px solid var(--border-medium);
}

.cookie-btn-decline:hover {
    background: var(--light-bg);
    border-color: var(--text-medium);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 1.5rem;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* === CONTACT SECTION - MINIMAL === */
.contact-grid-minimal {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-minimal {
    padding: 40px 0;
}

.contact-info-minimal h2 {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.info-item-minimal {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.info-icon-minimal {
    width: 50px;
    height: 50px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.info-icon-minimal i {
    width: 24px;
    height: 24px;
}

.info-content-minimal h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.info-content-minimal p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.info-content-minimal a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-content-minimal a:hover {
    color: var(--primary-blue);
}

/* Contact Form Minimal */
.contact-form-minimal {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 2px solid var(--border-light);
}

.contact-form-minimal h2 {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.contact-form-minimal > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.form-row-minimal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-minimal {
    margin-bottom: 20px;
}

.form-group-minimal label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-required {
    color: var(--accent-gold);
    margin-left: 3px;
}

.form-group-minimal input,
.form-group-minimal textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group-minimal input:focus,
.form-group-minimal textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.form-group-minimal textarea {
    min-height: 150px;
    resize: vertical;
}

.gdpr-check-minimal {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    align-items: flex-start;
}

.gdpr-check-minimal input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.gdpr-check-minimal label {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-medium);
    cursor: pointer;
}

.gdpr-check-minimal a {
    color: var(--accent-gold);
    text-decoration: none;
}

.gdpr-check-minimal a:hover {
    text-decoration: underline;
}

/* === CAPTCHA GRUPPE === */
.captcha-group {
    background: var(--bg-lighter);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 20px;
    margin: 25px 0;
}

.captcha-group label {
    font-weight: 600;
    color: var(--primary-blue);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}


.submit-btn-minimal {
    width: 100%;
    padding: 14px 28px;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.submit-btn-minimal:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-blue);
}

/* Map Container */
.map-container-minimal {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container-minimal iframe {
    display: block;
    width: 100%;
}

/* Contact Responsive */
@media (max-width: 968px) {
    .contact-grid-minimal {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .form-row-minimal {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-minimal {
        padding: 30px 20px;
    }
    
    .info-item-minimal {
        margin-bottom: 30px;
    }
}

/* === GTÜ LOGO BOX - MINIMAL === */
.gtue-logo-box {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    margin: 60px auto 0;
    transition: var(--transition-normal);
}

.gtue-logo-box:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
}

.gtue-logo-box img {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

.gtue-logo-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* GTÜ Logo Responsive */
@media (max-width: 768px) {
    .gtue-logo-box {
        padding: 30px 20px;
        margin: 40px auto 0;
    }
    
    .gtue-logo-box img {
        max-width: 150px;
    }
}

/* === TIMELINE / PROCESS STEPS - MINIMAL === */
.timeline-minimal {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-step {
    position: relative;
    padding: 0 0 60px 80px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -10px;
    width: 2px;
    background: var(--border-medium);
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
    z-index: 1;
}

.timeline-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.timeline-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .timeline-minimal {
        padding: 20px 0;
    }
    
    .timeline-step {
        padding: 0 0 40px 60px;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-step::before {
        left: 19px;
        top: 40px;
    }
    
    .timeline-step h4 {
        font-size: 18px;
    }
    
    .timeline-step p {
        font-size: 14px;
    }
}

/* === UTILITY CLASSES === */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-small {
    margin-top: 20px;
}

.mt-medium {
    margin-top: 40px;
}

.mt-large {
    margin-top: 60px;
}

.mb-small {
    margin-bottom: 20px;
}

.mb-medium {
    margin-bottom: 40px;
}

.mb-large {
    margin-bottom: 60px;
}

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

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