/* ===================================
   CSS für Thanatopraxie Zentrum München
   Farbe: #22a6a4 (Türkis)
   =================================== */

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

:root {
    /* Brand Colors */
    --primary-color: #22a6a4;
    --primary-dark: #1a8280;
    --primary-light: #e6f7f7;
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #757575;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    
    /* Accent Colors */
    --accent-gold: #d4af37;
    --accent-gray: #6c757d;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background-color: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

/* === HEADER === */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
}

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

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

.phone-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

.phone-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* === HERO SECTION === */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 166, 164, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-medium);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 0.5;
    }
}

/* Fade-in Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === INTRO SECTION === */
.intro-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    color: white;
}

.intro-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.intro-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.intro-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.intro-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* === CERTIFICATION SECTION === */
.certification-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.certification-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 166, 164, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.certification-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.certification-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 8px 24px rgba(34, 166, 164, 0.3);
}

.certification-badge svg {
    color: white;
}

.certification-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 48px;
    line-height: 1.4;
    font-weight: 600;
}

.certification-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.certification-feature {
    background-color: white;
    padding: 24px 24px 24px 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.certification-feature:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.certification-feature svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: white;
    background-color: var(--primary-color);
    padding: 6px;
    border-radius: 50%;
}

.certification-feature span {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .certification-features {
        grid-template-columns: 1fr;
    }
}

/* === STATS SECTION (Trust Builder nach Hero) === */
.stats-section-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
    border-bottom: 1px solid var(--bg-gray);
}

.stats-intro {
    text-align: center;
    margin-bottom: 48px;
}

.stats-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.stats-intro p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.stats-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--bg-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 48px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 240px;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-item-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 12px 32px rgba(34, 166, 164, 0.25);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.stat-icon svg {
    color: white;
}

.stat-item-highlight .stat-number {
    color: white;
    font-size: 4.5rem;
}

.stat-item-highlight .stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1.25rem;
}

.stat-item-highlight:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 16px 48px rgba(34, 166, 164, 0.35);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-item-highlight .stat-number {
        font-size: 3rem;
    }
}

/* === PRICING SECTION === */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 48px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-card-featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-color: var(--primary-color);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-currency {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.pricing-description {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
}

.pricing-note {
    max-width: 700px;
    margin: 60px auto 0;
    background: white;
    padding: 32px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.pricing-note h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

.pricing-note li {
    padding: 12px 0;
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--bg-gray);
}

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

.pricing-note strong {
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* === B2B SERVICES SECTION === */
.b2b-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.b2b-services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.b2b-content {
    position: relative;
    z-index: 1;
}

.b2b-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.b2b-header .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.b2b-header .section-title {
    color: white;
    font-size: 3rem;
    margin-top: 16px;
}

.b2b-header .section-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-top: 20px;
}

.b2b-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.b2b-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    text-align: center;
}

.b2b-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.4);
}

.b2b-feature svg {
    color: white;
    margin-bottom: 16px;
}

.b2b-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.b2b-feature p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.b2b-cta {
    text-align: center;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.125rem;
}

.b2b-cta .btn-primary {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
}

.b2b-cta .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 768px) {
    .b2b-header .section-title {
        font-size: 2rem;
    }
    
    .b2b-features {
        grid-template-columns: 1fr;
    }
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-description {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--text-medium);
    font-size: 1.125rem;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-text h4 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Honor Code */
.honor-code {
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 16px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
}

.honor-code h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.honor-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.honor-code blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin: 0 0 40px 0;
}

/* Certificates */
.certificates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.certificate-item {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.certificate-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.service-card {
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--bg-gray);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-icon svg {
    stroke: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.service-card-wide {
    grid-column: span 3;
}

@media (max-width: 992px) {
    .service-card-wide {
        grid-column: span 1;
    }
}

/* === ADDITIONAL SERVICES SECTION === */
.additional-services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.additional-service-card {
    background-color: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.additional-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.additional-service-card h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.additional-service-card p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
}

/* === MISSION SECTION === */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

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

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.mission-content h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.mission-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.mission-content .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.mission-content .btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* === FAQ SECTION === */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.faq-item {
    background-color: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--text-medium);
    line-height: 1.8;
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--bg-gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-note {
    font-size: 13px;
    color: var(--text-light);
}

.btn-submit {
    width: fit-content;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon svg {
    stroke: var(--primary-color);
}

.contact-info-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 450px;
    background-color: var(--bg-light);
}

/* Google Maps Consent Overlay */
.map-consent-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 166, 164, 0.95) 0%, rgba(26, 130, 128, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 40px 20px;
}

.map-consent-content {
    text-align: center;
    max-width: 500px;
    color: white;
}

.map-consent-content svg {
    margin: 0 auto 20px;
    opacity: 0.9;
}

.map-consent-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.map-consent-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 0.95;
}

.map-consent-info {
    font-size: 14px !important;
    opacity: 0.85 !important;
    margin-bottom: 24px !important;
}

.map-consent-content .btn {
    margin: 20px 0;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 16px 40px;
    font-size: 16px;
}

.map-consent-content .btn:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.map-consent-links {
    margin-top: 16px;
}

.map-consent-links a {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    opacity: 0.9;
}

.map-consent-links a:hover {
    opacity: 1;
}

#map-iframe-container {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

#map-iframe-container iframe {
    display: block;
}


/* === FOOTER === */
#footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.footer-column p,
.footer-column li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 16px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
    font-size: 14px;
}

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

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.designed-by {
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.webelona-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.webelona-link:hover {
    color: var(--primary-color);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 320px;
        max-width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        padding: 40px 32px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        gap: 24px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .phone-cta {
        display: none;
    }
    
    .about-content,
    .mission-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        position: relative;
        top: 0;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .intro-section,
    .about-section,
    .services-section,
    .mission-section,
    .faq-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .honor-code {
        padding: 32px 24px;
    }
    
    .service-card,
    .faq-question,
    .faq-answer p {
        padding: 24px;
    }
}
