/* Base Resets & Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background-color: #f8fafc; color: #334155; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }

/* Spacing & Typography */
.section-padding { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 3rem; color: #0f172a; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; }
.section-header p { color: #64748b; font-size: 1.2rem; max-width: 760px; margin: 0 auto; line-height: 1.7; }

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }

/* Header */
.site-header { position: absolute; top: 0; width: 100%; z-index: 100; padding: 25px 0; background: linear-gradient(to bottom, rgba(15,23,42,0.8), transparent); color: white; }
.header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.logo-text { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.logo-text span { color: #95C11F; }

/* Navigation Polish */
.nav { display: flex; gap: 30px; font-weight: 500; align-items: center; }
.nav a { 
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #95C11F;
  transition: width 0.3s ease;
}
.nav a:hover { color: #95C11F; }
.nav a:hover::after { width: 100%; }
.mobile-menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; padding: 5px; }
.mobile-menu-toggle svg { width: 28px; height: 28px; }

.cta-btn { background: #95C11F; padding: 8px 20px; border-radius: 99px; color: white !important; font-weight: 600; text-align: center; }
.cta-btn:hover { background: #7a9e18; }
.cta-btn::after { display: none; } /* Remove underline effect for CTA */

/* Hero Section */
.hero { position: relative; height: 85vh; min-height: 650px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #1e293b; }
.hero-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-gradient { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.85) 100%); z-index: 2; }
.hero-slideshow { width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); transition: transform 7s linear; }
.slide.active img { transform: scale(1); }
.slideshow-progress-container { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; background: rgba(255,255,255,0.15); z-index: 10; overflow: hidden; }
.slideshow-progress-bar { height: 100%; width: 0%; background: #95C11F; }
/* Slideshow Navigation */
.slideshow-nav { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slideshow-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.4); border: none; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.slideshow-dot.active { width: 28px; background: #95C11F; box-shadow: 0 0 12px rgba(149, 193, 31, 0.4); }
.slideshow-arrows { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; padding: 0 30px; transform: translateY(-50%); z-index: 10; pointer-events: none; }
.slideshow-arrow { pointer-events: auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, 0.2); color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.slideshow-arrow svg { width: 22px; height: 22px; }
.slideshow-arrow:hover { background: #95C11F; border-color: #95C11F; transform: scale(1.05); }

/* Hero Content Polish */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero-content { position: relative; z-index: 5; text-align: center; color: white; width: 100%; padding: 0 20px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 8px 20px; border-radius: 99px; font-weight: 600; font-size: 0.95rem; margin-bottom: 24px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); animation: fadeUp 1s ease-out forwards; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.hero-content h1 { font-size: 4.5rem; margin-bottom: 24px; font-weight: 800; line-height: 1.1; text-shadow: 0 4px 20px rgba(0,0,0,0.4); animation: fadeUp 1s ease-out forwards; animation-delay: 0.1s; opacity: 0; }
.hero-content p { font-size: 1.35rem; margin-bottom: 40px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); max-width: 800px; margin-left: auto; margin-right: auto; color: #e2e8f0; animation: fadeUp 1s ease-out forwards; animation-delay: 0.2s; opacity: 0; font-weight: 300; }
.hero-content .btn-primary { animation: fadeUp 1s ease-out forwards; animation-delay: 0.3s; opacity: 0; }

/* Cards Base Polish */
.content-card { 
  background: #ffffff; 
  border-radius: 20px; 
  padding: 36px; 
  border: 1px solid rgba(15, 23, 42, 0.06); 
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05); 
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease; 
  height: 100%; 
}
.content-card:hover { 
  transform: translateY(-8px) scale(1.01); 
  box-shadow: 0 24px 48px -12px rgba(149, 193, 31, 0.25); 
  border-color: rgba(149, 193, 31, 0.3);
}
.content-card h3 { font-size: 1.6rem; color: #0f172a; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; }
.content-card p { color: #475569; line-height: 1.7; margin-bottom: 0; font-size: 1.05rem; }

.service-card { border-bottom: 4px solid transparent; }
.service-card:hover { border-bottom-color: #95C11F; }

.project-card { position: relative; overflow: hidden; display: flex; flex-direction: column; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); }
.project-card::before { content: ''; position: absolute; top: 0; left: 0; width: 6px; height: 100%; background: linear-gradient(to bottom, #95C11F, #7a9e18); border-radius: 20px 0 0 20px; }
.project-card .meta { margin-top: auto; padding-top: 24px; font-size: 0.95rem; color: #64748b; border-top: 1px solid #e2e8f0; }
.project-card .meta strong { color: #0f172a; display: block; margin-bottom: 6px; font-weight: 700; }

.feature-card { background: #fdfdfd; border-top: 4px solid #95C11F; }
.feature-card ul { margin-top: 20px; padding-left: 20px; color: #475569; }
.feature-card li { margin-bottom: 10px; line-height: 1.5; }
.feature-card li::marker { color: #95C11F; font-weight: bold; }

/* Tag Pills */
.tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.tag { font-size: 0.8rem; font-weight: 700; padding: 6px 14px; border-radius: 99px; background: #f1f5f9; color: #475569; text-transform: uppercase; letter-spacing: 1px; }
.tag.highlight { background: rgba(149, 193, 31, 0.15); color: #7a9e18; box-shadow: inset 0 0 0 1px rgba(149, 193, 31, 0.3); }

/* CTA & Contact Polish */
.final-cta { background: linear-gradient(135deg, #0f172a 0%, #0b111e 100%); color: #fff; text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(149,193,31,0.03) 0%, transparent 60%); pointer-events: none; }
.final-cta h2 { color: #fff; margin-bottom: 20px; font-size: 2.8rem; font-weight: 800; letter-spacing: -0.5px; position: relative; z-index: 2; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; text-align: left; margin-top: 40px; position: relative; z-index: 2; max-width: 1000px; margin-left: auto; margin-right: auto; }
.contact-info { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 40px; border-radius: 20px; backdrop-filter: blur(10px); }
.contact-form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 20px; backdrop-filter: blur(10px); }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label { display: block; margin-bottom: 8px; color: #cbd5e1; font-size: 0.95rem; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 16px; background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: #fff; font-family: inherit; font-size: 1rem; transition: all 0.3s ease; }
.contact-form option { background-color: #0f172a; color: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: #95C11F; background: rgba(0,0,0,0.4); box-shadow: 0 0 0 4px rgba(149,193,31,0.1); }

/* Standard Forms (Light background) */
.app-form .form-group { margin-bottom: 20px; text-align: left; }
.app-form label { display: block; margin-bottom: 8px; color: #1e293b; font-size: 0.95rem; font-weight: 600; }
.app-form input, .app-form select, .app-form textarea { width: 100%; padding: 14px 16px; background: #f8fafc; border: 1px solid #cbd5e1; border-radius: 12px; color: #0f172a; font-family: inherit; font-size: 1rem; transition: all 0.3s ease; }
.app-form input:focus, .app-form select:focus, .app-form textarea:focus { outline: none; border-color: #95C11F; background: #fff; box-shadow: 0 0 0 4px rgba(149,193,31,0.1); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-primary { 
  background: #95C11F; 
  color: white; 
  padding: 16px 32px; 
  border-radius: 9999px; 
  font-weight: 600; 
  text-decoration: none; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
  display: inline-flex; 
  align-items: center; 
  gap: 8px; 
  border: none; 
  font-size: 1.1rem; 
  justify-content: center; 
  box-shadow: 0 8px 24px rgba(149, 193, 31, 0.3);
}
.btn-primary:hover { 
  background: #a8d924; 
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(149, 193, 31, 0.5);
  color: white;
}

footer { background: #0b111e; color: #94a3b8; padding: 60px 0 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
footer a { transition: color 0.3s; }
footer a:hover { color: #95C11F; }
.footer-links { margin-top: 30px; display: flex; justify-content: center; gap: 30px; font-size: 0.95rem; font-weight: 500; }

/* --- Interactive Animations & UI --- */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #95C11F;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); animation: scrollPulse 2s infinite; }
.back-to-top:hover { background: #0f172a; transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0,0,0,0.2); animation: none; }

@keyframes scrollPulse {
  0% { box-shadow: 0 0 0 0 rgba(149, 193, 31, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(149, 193, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(149, 193, 31, 0); }
}

/* --- Dark Mode Theme --- */
body { transition: background-color 0.5s ease, color 0.5s ease; }
section { transition: background-color 0.5s ease, border-color 0.5s ease; }
.card, .content-card, .compliance-card, .testimonial-card, .location-card, .modal-content { 
  transition: background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease; 
}
body.dark-mode { background-color: #0f172a !important; color: #e2e8f0; }
body.dark-mode section { background-color: #0f172a !important; border-color: rgba(255,255,255,0.05) !important; }
body.dark-mode .section-header h2, body.dark-mode h3 { color: #f8fafc; }
body.dark-mode .card, body.dark-mode .content-card, body.dark-mode .compliance-card, body.dark-mode .testimonial-card, body.dark-mode .location-card { background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(255,255,255,0.1); color: #cbd5e1; box-shadow: none; }
body.dark-mode .card p, body.dark-mode .content-card p, body.dark-mode .testimonial-card p, body.dark-mode .location-card p { color: #94a3b8; }
body.dark-mode .card h3, body.dark-mode .content-card h3, body.dark-mode .testimonial-card h4, body.dark-mode .location-card h3 { color: #f8fafc; }
body.dark-mode .modal-content { background: #1e293b; color: #f8fafc; border: 1px solid rgba(255,255,255,0.1); }
body.dark-mode .menu-item:hover { background: rgba(255,255,255,0.05); }
body.dark-mode .menu-item-icon { background: rgba(255,255,255,0.1); }
body.dark-mode .menu-item-info h4 { color: #f8fafc; }
body.dark-mode .close-btn { background: rgba(255,255,255,0.1); color: #cbd5e1; }
body.dark-mode input, body.dark-mode select, body.dark-mode textarea { background: rgba(255,255,255,0.05) !important; color: white !important; border-color: rgba(255,255,255,0.1) !important; }
body.dark-mode option { background-color: #1e293b; color: #fff; }

/* Dark Mode Toggle Button */
.theme-toggle {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.theme-toggle:hover { background: #95C11F; border-color: #95C11F; }
@keyframes themeSpin {
  0% { transform: scale(0.5) rotate(-90deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.theme-toggle svg { width: 20px; height: 20px; animation: themeSpin 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  /* Typography & Spacing */
  .section-padding { padding: 50px 0; }
  .section-header { margin-bottom: 30px; }
  .section-header h2 { font-size: 2rem; }
  .section-header p { font-size: 1rem; }
  
  /* Grids */
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 20px; }
  
  /* Header/Nav */
  .header-inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .mobile-menu-toggle { display: block; z-index: 1001; }
  .nav { display: flex; flex-direction: column; width: 100%; text-align: center; background: rgba(15,23,42,0.98); padding: 20px 0; position: absolute; top: 100%; left: 0; backdrop-filter: blur(15px); border-top: 1px solid rgba(255,255,255,0.1); box-shadow: 0 10px 30px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); z-index: -1; }
  .nav.active { opacity: 1; visibility: visible; transform: translateY(0); z-index: 1000; }
  .nav a { font-size: 1.1rem; padding: 10px 0; }
  .site-header { padding: 15px 0; background: rgba(15,23,42,0.95); position: relative; }
  
  /* Hero Section */
  .hero { min-height: 500px; height: auto; padding: 200px 0 60px; }
  .hero-content h1 { font-size: 2.25rem; margin-bottom: 15px; }
  .hero-content p { font-size: 1rem; margin-bottom: 30px; }
  .slideshow-arrows { padding: 0 10px; }
  .slideshow-arrow { width: 36px; height: 36px; }
  .slideshow-arrow svg { width: 18px; height: 18px; }
  .slideshow-nav { bottom: 20px; }
  
  /* Cards */
  .content-card { padding: 24px; }
  
  /* CTA Section */
  .final-cta { padding: 60px 0; }
  .final-cta h2 { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-info, .contact-form { padding: 30px 20px; }
  .btn-primary { width: 100%; font-size: 1rem; }
}

/* Modal UI */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.modal-overlay.visible { opacity: 1; }
.modal-content {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3), 0 0 40px rgba(149, 193, 31, 0.1);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255,255,255,0.4);
}
.modal-overlay.visible .modal-content { transform: translateY(0) scale(1); }
.modal-header { padding: 30px; border-bottom: 1px solid #f1f5f9; display: flex; justify-content: space-between; align-items: center; background: #f8fafc; border-radius: 24px 24px 0 0; }
.modal-header h3 { margin: 0; font-size: 1.75rem; color: #0f172a; font-weight: 800; letter-spacing: -0.5px; }
.compliance-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.compliance-icon { background: rgba(149, 193, 31, 0.1); color: #95C11F; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: all 0.3s ease; }
.compliance-card:hover .compliance-icon { background: #95C11F; color: #fff; transform: scale(1.1); }
.compliance-card h3 { font-size: 1.25rem; color: #0f172a; margin-bottom: 12px; }
.compliance-card p { color: #64748b; font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* --- Gallery Section --- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 40px; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; height: 300px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 700; font-size: 1.2rem; transform: translateY(10px); transition: transform 0.3s ease; }
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* --- Testimonials Section --- */
.testimonial-carousel { display: flex; gap: 30px; overflow-x: auto; padding: 20px 0 40px; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-card { min-width: 300px; max-width: 350px; background: white; padding: 30px; border-radius: 16px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); scroll-snap-align: start; flex-shrink: 0; display: flex; flex-direction: column; gap: 15px; }
.testimonial-card .stars { color: #f59e0b; font-size: 1.2rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: #475569; line-height: 1.6; flex-grow: 1; }
.testimonial-card h4 { color: #0f172a; font-weight: 700; margin: 0; font-size: 1rem; }

/* --- Locations Section --- */
.location-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px; transition: all 0.3s ease; }
.location-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-color: #95C11F; }
.location-card h3 { color: #0f172a; margin-bottom: 15px; font-size: 1.25rem; }
.location-card p { color: #64748b; line-height: 1.6; margin-bottom: 20px; }

/* --- FAQ Accordion --- */
.faq-accordion { margin-top: 30px; }
.faq-item { margin-bottom: 15px; border-radius: 12px; overflow: hidden; background: white; border: 1px solid #e2e8f0; }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 20px 25px; font-size: 1.1rem; font-weight: 600; color: #0f172a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; }
.faq-question:hover { background: #f8fafc; }
.faq-question svg { transition: transform 0.3s ease; color: #95C11F; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: #fff; }
.faq-answer p { padding: 0 25px 25px; margin: 0; color: #475569; line-height: 1.6; font-size: 1.05rem; }
.faq-item.active { border-color: #95C11F; }
body.dark-mode .faq-item { background: rgba(30, 41, 59, 0.5); border-color: rgba(255,255,255,0.1); }
body.dark-mode .faq-question { color: #f8fafc; }
body.dark-mode .faq-question:hover { background: rgba(255,255,255,0.02); }
body.dark-mode .faq-answer { background: transparent; }
body.dark-mode .faq-answer p { color: #94a3b8; }

/* --- Team Section Removed --- */

/* --- Button Loader --- */
@keyframes spinLoader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.btn-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinLoader 0.8s linear infinite;
}

/* --- Toast Notifications --- */
.toast-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 10000; pointer-events: none; }
.toast { background: white; color: #0f172a; padding: 16px 24px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); font-weight: 500; display: flex; align-items: center; gap: 12px; transform: translateX(120%); opacity: 0; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease; border-left: 4px solid #95C11F; pointer-events: auto; }
.toast.show { transform: translateX(0); opacity: 1; }
.toast.error { border-left-color: #ef4444; }
.toast-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.toast.success .toast-icon { color: #95C11F; }
.toast.error .toast-icon { color: #ef4444; }
body.dark-mode .toast { background: #1e293b; color: #f8fafc; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.1); border-left-color: #95C11F; }
body.dark-mode .toast.error { border-left-color: #ef4444; }

/* --- Modals & Buttons --- */
.scroll-progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 4px; background: transparent; z-index: 10001; pointer-events: none; }
.scroll-progress-bar { height: 100%; background: #95C11F; width: 0%; transition: width 0.1s ease-out; box-shadow: 0 0 8px rgba(149,193,31,0.5); }

.menu-filter { display: inline-flex; background: rgba(0,0,0,0.05); border-radius: 8px; padding: 4px; margin-top: 5px; }
.filter-btn { background: transparent; border: none; padding: 6px 12px; font-size: 0.9rem; font-weight: 500; color: #64748b; border-radius: 6px; cursor: pointer; transition: all 0.3s ease; }
.filter-btn:hover { color: #0f172a; }
.filter-btn.active { background: white; color: #0f172a; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }

body.dark-mode .menu-filter { background: rgba(255,255,255,0.05); }
body.dark-mode .filter-btn { color: #94a3b8; }
body.dark-mode .filter-btn:hover { color: #f8fafc; }
body.dark-mode .filter-btn.active { background: #334155; color: #f8fafc; box-shadow: 0 2px 4px rgba(0,0,0,0.2); }

/* --- Cookie Consent Banner --- */
.cookie-banner { position: fixed; bottom: -150px; left: 0; width: 100%; background: #ffffff; box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 10000; padding: 20px 0; transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: flex; justify-content: center; border-top: 1px solid #e2e8f0; }
.cookie-banner.show { bottom: 0; }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; max-width: 1200px; width: 90%; margin: 0 auto; }
.cookie-content p { margin: 0; font-size: 0.95rem; color: #475569; line-height: 1.5; flex: 1; }
@media (max-width: 768px) {
  .cookie-content { flex-direction: column; text-align: center; gap: 15px; }
  .cookie-banner { padding: 25px 0; }
}

body.dark-mode .cookie-banner { background: #1e293b; border-top-color: #334155; box-shadow: 0 -4px 20px rgba(0,0,0,0.5); }
body.dark-mode .cookie-content p { color: #cbd5e1; }

.close-btn { background: #f1f5f9; border: none; font-size: 1.5rem; color: #64748b; cursor: pointer; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.close-btn:hover { background: #fee2e2; color: #ef4444; transform: rotate(90deg); }
.modal-body { padding: 30px; overflow-y: auto; }
.menu-item { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-bottom: 1px dashed #e2e8f0; transition: background 0.3s ease; border-radius: 12px; margin: 0 -10px; padding-left: 10px; padding-right: 10px; gap: 15px; }
.menu-item:hover { background: #f8fafc; }
.menu-item:last-child { border-bottom: none; }
.menu-item-icon { font-size: 2.5rem; background: #f1f5f9; width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); flex-shrink: 0; }
.menu-item-info { flex: 1; padding-right: 10px; }
.menu-item-info h4 { margin: 0 0 6px 0; color: #0f172a; font-size: 1.15rem; font-weight: 700; }
.menu-item-info p { margin: 0; color: #64748b; font-size: 0.95rem; line-height: 1.5; }
.menu-item-price { font-weight: 800; color: #fff; background: #95C11F; padding: 6px 14px; border-radius: 99px; font-size: 1.1rem; white-space: nowrap; box-shadow: 0 4px 10px rgba(149, 193, 31, 0.3); }
