
:root {
    --primary-color: #0088CC;
    --primary-hover: #006ba1;
    --secondary-color: #f8f9fa;
    --text-primary: #3076B6;
    --text-secondary: #516372;
    --text-secondary-hover: #0f1216;
    --background: #ffffff;
    --surface: #f8f9fa;
    --border: #d7dbdd;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
}


html {
    font-size: 90%; /* statt 100% */
}

/* ===============================
   HERO
   =============================== */

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}


/* Notice Card */
.notice-card {
  display: flex;
  gap: 1.5rem;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background: var(--background);
  cursor: pointer;
  border: 1px solid var(--border);
}

.notice-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-hover);
  transform: scaleX(0);
  transition: var(--transition);
  z-index: 1;
}

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

.notice-card:hover::before {
  transform: scaleX(1);
}

.notice-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 0.25rem;
}

.notice-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.notice-content {
  flex: 1;
}

.notice-content h3 {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.notice-content p {
  color: var(--text-secondary);
  margin: 0 0 1.25rem 0;
  line-height: 1.6;
  font-size: 1.05rem;
}



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--background);
    transition: var(--transition);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Space for fixed header */
}

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

/* Navigation */
.navbar {
    position: sticky; /* Fixiert die Navbar oben am Bildschirm */
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px); 
border-bottom: 1px solid rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    justify-content: center; /* Inhalte zentrieren */
    align-items: center;
    height: 80px; /* Feste Höhe für die Navbar */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Begrenzung der Breite */
    padding: 0 1rem; /* Abstand links/rechts */
    height: 100%; /* Stellt sicher, dass Inhalte zentriert bleiben */
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Abstand zwischen Links */
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    padding: 0.5rem 0;
}

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

.hamburger {
    display: none; /* Nur für mobile Ansicht sichtbar */
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 1700;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 6px;
    border-radius: 6px;
    background: transparent;
    border: none;
}

.hamburger i {
    font-size: 26px !important; /* vorher 20px */
    line-height: 1;
}

.hamburger .menu-icon,
.hamburger .close-icon {
    font-size: 26px !important;
}

/* Standard: zeige das Menu-Icon, verstecke das Close-Icon */
.menu-icon { display: block; }
.close-icon { display: none; }

/* Wenn aktiv: zeige Close, verstecke Menu */
.hamburger.active .menu-icon { display: none; }
.hamburger.active .close-icon { display: block; color: var(--primary-hover); }

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--background);
    color: var(--primary-color);
    border: 1px solid var(--border);
    transform: translateY(0);
}

.btn-primary:hover {
    transform: translateY(-3px);
}



.logo-placeholder {
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.logo-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logo-placeholder p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: #f0f8ff;
}

/* Alternating section colors */
section:nth-child(odd) {
    background-color: #ffffff;
}

section:nth-child(even) {
    background-color: #f0f8ff;
}

section:first-child {
    background-color: #ffffff !important;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    background: var(--background);
    overflow: hidden;
    border: 1px solid var(--border);
}

.service-card::before, .notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-hover);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--surface);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

a.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--border) !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-hover);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

a.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-color);
}

a.contact-item:hover .contact-text {
    color: #0f1216;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.contact-item p,
.contact-item .contact-text {
    color: var(--text-secondary);
    margin: 0;
    transition: var(--transition);
}



.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--text-secondary-hover);
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    background: var(--background);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
    background: var(--background);
    color: var(--text-primary);
}

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

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

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-icon {
    font-size: 1.2rem;
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background: var(--background);
}

.map-container {
    margin: 3rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
}

.location-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-hover);
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--primary-color);
}

.location-item:hover::before {
    transform: scaleX(1);
}

.location-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.location-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.location-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--background);
    color: white;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-label {
    font-weight: 600;
    min-width: 70px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: white;
    transform: translateX(3px);
}

.whatsapp-footer-link {
    color: #25D366 !important;
}

.whatsapp-footer-link:hover {
    color: white !important;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.logo-svg {
    height: 36px;
    width: auto;
    display: block;
}

.logo-svg2 {
    height: 200px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

/* Fernwartung section styling */
.footer-remote {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.footer-links:last-child ul {
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links:last-child li {
    margin: 0;
}

.footer-links:last-child a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.footer-links h4,
.footer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-links ul,
.footer-info ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-info li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary) !important;
    font-size: 0.95rem;
    gap: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.blur-sensitive {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

/* Entferne diese Styles */
.nav-overlay {
  display: none !important;
}

body.menu-open { 
  overflow: visible !important; 
}

/* Hamburger -> X */
.hamburger { z-index: 1700; }
.hamburger span {
  width: 26px; height: 3px; background: var(--text-primary);
  margin: 4px 0; transition: transform .25s ease, opacity .25s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
/* --- Fix: Hamburger Icon Visibility (Override legacy/dupe rules) --- */
/* Verstecke alte span-Striche komplett (falls noch vorhanden) */
.hamburger span {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
}

/* Icons: standardmäßig nur Menü-Icon zeigen */
.hamburger .menu-icon {
    display: inline-block !important;
    font-size: 20px;
    color: var(--primary-color);
    line-height: 1;
}

/* Close-Icon standardmäßig verstecken */
.hamburger .close-icon {
    display: none !important;
    font-size: 20px;
}

/* Wenn aktiv: Menü-Icon ausblenden, Close-Icon zeigen */
.hamburger.active .menu-icon {
    display: none !important;
    transform: none !important;
}
.hamburger.active .close-icon {
    display: inline-block !important;
    color: var(--primary-hover) !important;
}

/* Sicherheit: keine andere Regel darf Icons sichtbar machen */
.menu-icon, .close-icon { visibility: visible !important; }

/* Kleiner visueller Tweak: Platz und Klickfläche */
.hamburger {
    width: 48px !important;
    height: 48px !important;
    padding: 6px !important;
    background: transparent !important;
    border-radius: 6px !important;
}

.faq-card::after {
  content: none !important;
}

/* nachher */
/* Footer row for download and remote support links */
.footer-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 0;       /* optional */
    border-top: 0;        /* Linie weg */
}

.footer-row .footer-links {
    min-width: 180px;
    margin-bottom: 1rem;
}

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

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Footer grid adjustments */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.highlights {
    color: var(--text-primary);
}

/* Kontaktbereich ohne Formular: einspaltig zentriert */
#kontakt .contact-content {
    display: grid;
    grid-template-columns: minmax(0, 720px); /* eine Spalte */
    justify-content: center;                  /* mittig ausrichten */
    gap: 1.25rem;
  }
  
  /* Karten/Buttons volle Breite der Spalte */
  #kontakt .contact-info {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  
  /* Optional: etwas mehr Abstand zwischen den Kontakt-Karten */
  #kontakt .contact-item {
    display: block;
    width: 100%;
  }
  

/* ===============================
   MEDIA QUERIES
   =============================== */


/* Mobile styles */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .footer-row .footer-links {
        width: 100%;
        min-width: 100%;
    }

    .footer-links h4 {
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1rem;
    }
}

   @media (max-width: 768px) {
    .notice-card {
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
    }
    
    .notice-icon {
      align-self: flex-start;
    }
  }

  @media (max-width: 768px) {
    .hamburger { display: flex; }

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

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

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

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        width: 75%;
        height: 100vh;
        background: white;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 1rem;
        z-index: 1600;
    }

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

    .nav-menu li {
        width: 100%;
        opacity: 1;
        transform: none;
    }

    .nav-link {
        padding: 1rem;
        text-align: center;
        display: block;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        color: var(--primary-color);
    }

    .nav-link:hover {
        color: var(--primary-hover);
        background: var(--surface);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
        background: var(--primary-hover);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
        background: var(--primary-hover);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        width: 75%;
        height: 100vh;
        background: white;
        padding: 80px 40px;
        transition: 0.4s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        gap: 2rem;
        z-index: 1600;
    }

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

    .nav-menu li {
        opacity: 0;
        transform: translateX(100px);
        transition: all 0.4s ease-in-out;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.3s;
    }

    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo-placeholder {
        width: 250px;
        height: 250px;
    }

    .logo-placeholder h3 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .contact-item,
    .location-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .logo-placeholder {
        width: 200px;
        height: 200px;
    }
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        padding-left: 1.2rem;
    }
    
}

/* ===============================
   KEYFRAMES
   =============================== */

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


  