@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Base theme */
:root {
  --primary: #0a0e27;
  --secondary: #1a1f3a;
  --accent: #c41230;
  --text: #2b2d42;
  --text-light: #6c7293;
  --border: #e4e6ef;
  --bg-light: #f5f7fa;
  --bg-lighter: #fafbfc;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; box-shadow: 0 1px 0 rgba(0,0,0,0.1); }
.header-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
/* Logo styling - matching index.html */
.logo { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; 
}

.logo-icon { 
    width: 36px; 
    height: 36px; 
    border-radius: 8px; 
    background: var(--bg-light); 
    color: var(--accent); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
}

.logo-icon svg { 
    width: 22px; 
    height: 22px; 
}

.logo-text { 
    display: flex; 
    flex-direction: column; 
    line-height: 1.1; 
}

.logo-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 2px;
}
.desktop-nav { display: flex; align-items: center; gap: 48px; }
.nav-menu { display: flex; list-style: none; gap: 36px; align-items: center; }
.nav-link { text-decoration: none; color: var(--text); font-weight: 500; font-size: 15px; transition: color 0.2s ease; position: relative; }
.nav-link:hover { color: var(--primary); }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { display: flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; }
.header-phone:hover { color: var(--primary); }
.btn-header { background: var(--accent); color: var(--white); padding: 12px 24px; text-decoration: none; font-weight: 600; font-size: 14px; border-radius: 4px; transition: all 0.2s ease; }
.btn-header:hover { background: #a00d26; transform: translateY(-1px); }

/* Buttons */
.btn { padding: 16px 36px; text-decoration: none; font-weight: 600; font-size: 16px; border-radius: 4px; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: var(--white); }

/* Mobile navigation */
.mobile-menu-btn { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; cursor: pointer; border: none; background: transparent; padding: 12px; position: relative; z-index: 1001; }
.hamburger { width: 24px; height: 20px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span { display: block; height: 2px; width: 100%; background: var(--primary); transition: all 0.3s ease; transform-origin: center; }
.mobile-menu-btn.active .hamburger span:first-child { transform: translateY(9px) rotate(45deg); }
.mobile-menu-btn.active .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active .hamburger span:last-child { transform: translateY(-9px) rotate(-45deg); }
.mobile-nav { display: none; position: fixed; top: 0; right: -100%; width: 320px; height: 100vh; background: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.1); overflow-y: auto; transition: right 0.3s ease; z-index: 999; }
.mobile-nav.active { right: 0; }
.mobile-nav-content { padding: 20px; }
.mobile-nav-menu { list-style: none; margin-bottom: 30px; }
.mobile-nav-menu li { margin-bottom: 5px; }
.mobile-nav-menu a { display: flex; align-items: center; padding: 15px 20px; color: var(--text); text-decoration: none; font-weight: 500; font-size: 16px; border-radius: 8px; transition: all 0.2s ease; position: relative; overflow: hidden; }
.mobile-nav-menu a::before { content: ''; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--accent); transform: translateX(-100%); transition: transform 0.2s ease; }
.mobile-nav-menu a:hover { background: var(--bg-light); color: var(--primary); padding-left: 30px; }
.mobile-nav-menu a:hover::before { transform: translateX(0); }
.mobile-nav-cta { padding: 20px; background: var(--bg-light); border-radius: 12px; margin-bottom: 20px; }

/* Footer */
footer { background: var(--primary); color: var(--white); padding: 80px 0 32px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-company h3 { font-size: 28px; margin-bottom: 20px; }
.footer-company p { line-height: 1.8; opacity: 0.8; margin-bottom: 32px; }
.footer-certifications { display: flex; gap: 16px; }
.cert-badge { width: 100px; height: 60px; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; border: 1px solid rgba(255,255,255,0.2); }
.footer-column h4 { font-size: 18px; margin-bottom: 24px; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 16px; }
.footer-column a { color: var(--white); text-decoration: none; opacity: 0.8; transition: opacity 0.2s ease; }
.footer-column a:hover { opacity: 1; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-legal { display: flex; gap: 32px; }
.footer-legal a { color: var(--white); text-decoration: none; opacity: 0.8; font-size: 14px; }
.footer-legal a:hover { opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
  .desktop-nav { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .mobile-nav { display: block !important; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .logo-title { font-size: 18px; }
  .logo-subtitle { display: none; }
  .footer-content { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .logo-icon { width: 32px; height: 32px; }
  .logo-title { font-size: 16px; }
}

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--white); }
.faq-section .section-header { text-align: center; margin-bottom: 28px; }
.faq-section .eyebrow { text-transform: uppercase; font-weight: 800; font-size: 12px; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
.faq-section .section-header h2 { font-size: clamp(24px, 3.6vw, 30px); font-weight: 900; color: var(--primary); letter-spacing: -0.5px; margin: 0 0 10px; }
.faq-section .section-header p { color: var(--text-light); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; box-shadow: 0 4px 14px rgba(0,0,0,.04); transition: box-shadow .2s ease, border-color .2s ease; }
.faq-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); border-color: #dfe3ee; }
.faq-item h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin: 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.faq-item h3::after { content: '+'; font-weight: 900; color: var(--primary); transition: transform .2s ease, opacity .2s ease; margin-left: 12px; }
.faq-item.open h3::after { content: '–'; transform: rotate(180deg); }
.faq-item p { margin: 0; color: var(--text); max-height: 0; overflow: hidden; opacity: 0; transition: max-height .3s ease, opacity .2s ease, margin-top .2s ease; }
.faq-item.open p { margin-top: 10px; max-height: 400px; opacity: 1; }

@media (max-width: 1024px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Legacy/Unified FAQ (Räumungen page style) */
.faq { max-width: 900px; margin: 0 auto; }
.faq .faq-item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,.04); }
.faq .faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 800; color: var(--primary); }
.faq .faq-q span { font-weight: 900; margin-left: 8px; color: var(--primary); }
.faq .faq-a { display: none; padding: 0 20px 16px 20px; color: var(--text); }
.faq .faq-item.open .faq-a { display: block; }
.faq .faq-item.open .faq-q { background: var(--bg-light); }

/* Page Sections - Hero, Services, Trust, Process */
.hero { padding: 160px 0 100px; background: linear-gradient(rgba(10, 14, 39, 0.85), rgba(26, 31, 58, 0.85)); color: var(--white); position: relative; overflow: hidden; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { font-size: 48px; font-weight: 800; margin-bottom: 20px; line-height: 1.1; letter-spacing: -1px; }
.hero-description { font-size: 20px; margin-bottom: 32px; opacity: 0.9; line-height: 1.6; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-buttons .btn { padding: 14px 24px; font-weight: 600; text-decoration: none; border-radius: 8px; transition: all 0.3s ease; display: inline-flex; align-items: center; gap: 8px; font-size: 16px; }
.hero-buttons .btn-primary { background: var(--accent); color: var(--white); border: 2px solid var(--accent); }
.hero-buttons .btn-primary:hover { background: transparent; color: var(--accent); border-color: var(--accent); }
.hero-buttons .btn-whatsapp { background: #25d366; color: var(--white); border: 2px solid #25d366; }
.hero-buttons .btn-whatsapp:hover { background: transparent; color: #25d366; border-color: #25d366; }

.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-tag { display: inline-block; background: linear-gradient(135deg, var(--accent), #e91e63); color: var(--white)!important; padding: 8px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; box-shadow: 0 4px 12px rgba(196, 18, 48, 0.2); }
.section-header h2 { font-size: 42px; font-weight: 800; color: var(--primary); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.5px; }
.section-header p { font-size: 18px; color: var(--text-light); line-height: 1.6; margin-top: 24px; }

.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 64px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.service-card { background: var(--white); border: 1px solid var(--border); padding: 48px 36px; border-radius: 16px; position: relative; transition: all 0.3s ease; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); transform: translateY(-4px); transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.service-card:hover::before { transform: translateY(0); }
.service-icon { width: 48px; height: 48px; background: rgba(196, 18, 48, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 24px; }
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.service-card p { color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.service-link { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 14px; transition: opacity 0.3s ease; }
.service-link:hover { opacity: 0.8; }

.trust { padding: 100px 0; background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-lighter) 50%, #f8fafc 100%); position: relative; overflow: hidden; }
.trust-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; margin-top: 64px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.trust-item { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; padding: 40px 32px; text-align: left; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06); }
.trust-item:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); background: rgba(255, 255, 255, 0.95); }
.trust-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--accent), #e91e63)!important; border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--white); margin-bottom: 24px; box-shadow: 0 8px 24px rgba(196, 18, 48, 0.25); }
.trust-icon svg { width: 36px; height: 36px; }
.trust-item h3 { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 16px; line-height: 1.3; }
.trust-item p { color: var(--text-light); line-height: 1.7; font-size: 16px; }

.process { padding: 100px 0; }
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 64px; max-width: 1000px; margin-left: auto; margin-right: auto; }

@media (max-width: 768px) {
  .hero h1 { font-size: 32px; }
  .hero-description { font-size: 16px; }
  .services-grid, .trust-items, .process-grid { grid-template-columns: 1fr; }
}

/* WhatsApp Button Contrast Fix */
.btn-whatsapp {
    background: #128C7E;
    color: #ffffff;
    border: 2px solid #128C7E;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #075E54;
    color: #ffffff;
    border-color: #075E54;
}

/* Testimonial Contrast Fix */
.testimonial-card p {
    color: #2b2d42 !important;
}

.testimonial-card {
    background: #ffffff;
}

/* CTA Section Contrast */
.cta p {
    color: #f0f0f0 !important;
}

/* Products Section Contrast */
.products p {
    color: #2b2d42 !important;
}


.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* color: var(--accent); */
    margin-bottom: 16px;
    color: white!important;
}
