@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #00E5FF; /* Electric Cyan */
  --primary-hover: #00B8D4; 
  --primary-glow: rgba(0, 229, 255, 0.4);
  --secondary: #050505; /* Deep Black */
  --secondary-light: #111111; /* Dark Gray */
  --surface: #1A1A1A; /* Surface Gray */
  --accent: #7C4DFF; /* Deep Purple */
  --bg: #0A0A0A; /* Main Background */
  --white: #FFFFFF; 
  --text: #F3F4F6; 
  --text-muted: #9CA3AF;
  --border: #27272A; 
  --radius: 12px; 
  --radius-lg: 20px;
  --shadow: 0 10px 30px -5px rgba(0,0,0,0.5); 
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.8);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* Grid Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4 { color: var(--white); font-weight: 800; line-height: 1.2; letter-spacing: -0.03em; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 120px 0; position: relative; }
.bg-white { background-color: var(--secondary-light); }

/* Header */
header { background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.05); position: sticky; top: 0; z-index: 1000; }
.top-bar { background: var(--secondary); border-bottom: 1px solid var(--border); padding: 8px 0; font-size: 0.8rem; color: var(--text-muted); font-weight: 500; display: block; text-transform: uppercase; letter-spacing: 1px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.tb-trust { display: flex; gap: 30px; }
.tb-trust span { display: flex; align-items: center; gap: 8px; }
.tb-trust i { color: var(--primary); width: 14px; }

.h-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--white); display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 2px; }
.logo i { color: var(--primary); font-size: 2rem; filter: drop-shadow(0 0 10px var(--primary-glow)); }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-weight: 500; color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--white); text-shadow: 0 0 8px rgba(255,255,255,0.5); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: var(--transition); }
.btn:hover::after { left: 150%; transition: 0.7s; }

.btn-primary { background: var(--primary); color: var(--secondary); font-weight: 800; box-shadow: 0 0 20px var(--primary-glow); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 0 30px var(--primary-glow); }
.btn-phone { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-phone:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-whatsapp { background: #00E676; color: var(--secondary); font-weight: 800; box-shadow: 0 0 20px rgba(0, 230, 118, 0.4); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(0, 230, 118, 0.6); }
.mob-btn { display: none; background: none; border: none; font-size: 28px; color: var(--white); cursor: pointer; }

/* Hero Section */
.hero { position: relative; padding: 160px 0; text-align: center; color: var(--white); }
.hero::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60vw; height: 60vw; background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  z-index: -1; filter: blur(60px);
}
.hero-centered { max-width: 900px; margin: 0 auto; position: relative; z-index: 10; }
.hero h1 { font-size: clamp(3.5rem, 7vw, 5rem); margin-bottom: 20px; text-transform: uppercase; line-height: 1.1; }
.hero h1 span { color: var(--primary); text-shadow: 0 0 20px var(--primary-glow); }
.hero-p { font-size: 1.25rem; margin-bottom: 40px; color: var(--text-muted); font-weight: 300; max-width: 650px; margin-inline: auto; }
.hero-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-bottom: 50px; }
.hero-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 1.05rem; color: var(--text); }
.hero-list i { color: var(--primary); font-size: 1.2rem; }

.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Draggable Premium Dark Form Window */
.draggable-window { display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 650px; z-index: 5000; background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(30px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 0 100vmax rgba(0,0,0,0.8); overflow: hidden; animation: zoomIn 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.draggable-window.active { display: block; }
@keyframes zoomIn { from { opacity: 0; transform: translate(-50%, -45%) scale(0.9); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }

.window-header { background: rgba(0,0,0,0.5); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; cursor: grab; color: var(--white); }
.window-header:active { cursor: grabbing; }
.window-title { font-weight: 700; display: flex; align-items: center; gap: 10px; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
.window-title i { color: var(--primary); font-size: 1.4rem; }
.window-close { background: transparent; border: none; font-size: 24px; cursor: pointer; color: var(--text-muted); transition: var(--transition); }
.window-close:hover { color: var(--primary); transform: rotate(90deg); }

.window-content { max-height: 75vh; overflow-y: auto; padding: 35px 30px; background: transparent; }
.window-content::-webkit-scrollbar { width: 4px; }
.window-content::-webkit-scrollbar-track { background: transparent; }
.window-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }

/* Inside Form */
.hero-form { background: transparent; border-radius: 0; padding: 0; box-shadow: none; }
.hero-form h3 { font-size: 1.8rem; margin-bottom: 10px; text-align: center; color: var(--white); text-transform: uppercase; }
.hero-form > p { color: var(--text-muted); margin-bottom: 30px; text-align: center; font-size: 0.95rem; }

.form-section-title { font-size: 1rem; color: var(--primary); margin-bottom: 25px; display: flex; align-items: center; gap: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
.fg label { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.fc { width: 100%; padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); color: var(--white); font-family: inherit; font-size: 1rem; transition: var(--transition); }
.fc:focus { outline: none; border-color: var(--primary); background: rgba(0, 229, 255, 0.05); box-shadow: 0 0 15px rgba(0, 229, 255, 0.1); }
select.fc { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'%3E%3C/path%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select.fc option { background: var(--secondary); color: white; }
select.fc optgroup { background: var(--secondary); color: var(--primary); font-weight: bold; font-style: normal; }
select#model-select option { background: var(--secondary); color: var(--white); }
select#model-select { background-color: rgba(255,255,255,0.03); }

.form-step { display: none; animation: slideIn 0.3s ease; }
.form-step.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.progress-container { margin-bottom: 35px; }
.progress-bar { height: 4px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; margin-bottom: 15px; }
.progress-fill { height: 100%; background: var(--primary); width: 25%; transition: width 0.5s ease; box-shadow: 0 0 10px var(--primary-glow); }
.progress-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.progress-labels span.active { color: var(--primary); text-shadow: 0 0 8px var(--primary-glow); }

.step-navigation { display: flex; gap: 15px; margin-top: 30px; }
.btn-next, .btn-submit { flex: 1; padding: 16px; border-radius: 8px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; background: var(--primary); color: var(--secondary); box-shadow: 0 0 15px var(--primary-glow); }
.btn-prev { flex: 1; padding: 16px; border-radius: 8px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); background: transparent; cursor: pointer; color: var(--white); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; transition: var(--transition); }
.btn-next:hover, .btn-submit:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 0 25px var(--primary-glow); }
.btn-prev:hover { background: rgba(255,255,255,0.05); border-color: var(--white); }

.upload-zone { border: 1px dashed rgba(255,255,255,0.2); border-radius: var(--radius); padding: 40px; text-align: center; cursor: pointer; transition: var(--transition); background: rgba(255,255,255,0.02); position: relative; }
.upload-zone:hover { border-color: var(--primary); background: rgba(0, 229, 255, 0.05); }
.upload-zone i { font-size: 3rem; color: var(--text-muted); margin-bottom: 15px; display: block; transition: var(--transition); }
.upload-zone:hover i { color: var(--primary); }
.upload-zone p { color: var(--text-muted); font-size: 0.9rem; }
.upload-input { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

/* Stats Bar */
.stats-bar { border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 40px 0; background: var(--secondary-light); position: relative; z-index: 10;}
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.stat-item { display: flex; align-items: center; gap: 20px; }
.stat-icon { font-size: 2.5rem; color: var(--primary); }
.stat-text h4 { font-size: 1.5rem; margin-bottom: 2px; color: var(--white); }
.stat-text p { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }

/* Services */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head h2 { font-size: 2.5rem; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.sec-head p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.svc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; display: flex; gap: 25px; transition: var(--transition); box-shadow: var(--shadow); }
.svc-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1); }
.svc-icon { width: 60px; height: 60px; flex-shrink: 0; background: rgba(255,255,255,0.05); color: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 28px; border: 1px solid rgba(255,255,255,0.05); transition: var(--transition); }
.svc-card:hover .svc-icon { background: var(--primary); color: var(--secondary); box-shadow: 0 0 15px var(--primary-glow); }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.svc-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 50px 30px; text-align: center; position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1); }
.step-num { position: absolute; top: 20px; right: 20px; font-size: 4rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; transition: var(--transition); }
.step-card:hover .step-num { color: rgba(0, 229, 255, 0.1); }
.step-icon { font-size: 3rem; color: var(--primary); margin-bottom: 25px; display: block; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 15px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Local SEO Content */
.local-content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 50px; margin-bottom: 50px; }
.local-content h2 { font-size: 2rem; margin-bottom: 20px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.local-content h3 { font-size: 1.4rem; margin-top: 30px; margin-bottom: 15px; color: var(--white); text-transform: uppercase; }
.local-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 1rem; }
.local-content ul { padding-left: 20px; color: var(--text-muted); list-style-type: square; margin-bottom: 20px; }
.local-content ul li { margin-bottom: 8px; }

/* FAQ */
.faq-accordion { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1.1rem; color: var(--white); }
.faq-question i { color: var(--primary); transition: var(--transition); }
.faq-answer { padding-bottom: 20px; display: none; color: var(--text-muted); font-size: 0.95rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-answer { display: block; }

/* Footer */
footer { background: var(--secondary); border-top: 1px solid var(--border); padding: 80px 0 30px; margin-top: 80px; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 50px; }
.f-logo { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: 2px; }
.f-logo i { color: var(--primary); filter: drop-shadow(0 0 5px var(--primary-glow)); }
.f-desc { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; }
.f-col h4 { font-size: 1rem; margin-bottom: 25px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.f-col ul { display: flex; flex-direction: column; gap: 12px; }
.f-col a { color: var(--text-muted); transition: var(--transition); font-size: 0.95rem; }
.f-col a:hover { color: var(--primary); }
.f-contact { background: rgba(255,255,255,0.02); padding: 25px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.05); }
.f-contact p { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: var(--text-muted); font-size: 0.95rem; }
.f-contact i { color: var(--primary); font-size: 1.2rem; }
.f-contact strong { color: var(--white); }
.f-bot { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 30px; text-align: center; color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }



/* Floats */
.floats {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
  align-items: flex-end;
}
.float-btn {
  height: 52px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  animation: float-wiggle 6s infinite ease-in-out;
}
.float-btn i, .float-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.float-btn:hover {
  transform: translateY(-5px) scale(1.03);
}
.float-btn.wa {
  background: #00E676;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 230, 118, 0.3);
  animation-delay: 1.5s;
}
.float-btn.wa:hover {
  box-shadow: 0 8px 25px rgba(0, 230, 118, 0.6);
}
.float-btn.ph {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 5px 15px var(--primary-glow);
  animation-delay: 0.75s;
}
.float-btn.ph:hover {
  box-shadow: 0 8px 25px var(--primary-glow);
}
.float-btn.fm {
  background: #FF3D00;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
  animation-delay: 0s;
}
.float-btn.fm:hover {
  box-shadow: 0 8px 25px rgba(255, 61, 0, 0.6);
}

/* Wiggle Keyframes - sequential animation to catch eye */
@keyframes float-wiggle {
  0%, 85%, 100% {
    transform: rotate(0deg) scale(1);
  }
  88% {
    transform: rotate(-6deg) scale(1.04);
  }
  91% {
    transform: rotate(5deg) scale(1.04);
  }
  94% {
    transform: rotate(-4deg) scale(1.04);
  }
  97% {
    transform: rotate(3deg) scale(1.04);
  }
}

/* Mobile Sticky Bar (Hidden on desktop) */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 1200px) { .f-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 992px) { .svc-grid { grid-template-columns: 1fr; } .steps-grid { grid-template-columns: 1fr; } }
@media (max-width: 991px) { 
  .hero h1 { font-size: 2.5rem; } 
  .nav-links { display: none; } 
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    gap: 20px;
    align-items: center;
    z-index: 9998;
  }
  .mob-btn { display: block; } 
  .form-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  .step-navigation { flex-direction: column; }
  .nav-btn { display: none !important; }
  body { padding-bottom: 0 !important; }
  
  .mobile-sticky-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Hide desktop float contact on mobile */
  .floating-contact-wrapper {
    display: none !important;
  }

  .mobile-sticky-bar {
    display: block;
    position: fixed;
    bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    z-index: 9999;
  }

  .mobile-sticky-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    width: 100%;
  }

  .mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 54px;
    border-radius: 12px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
  }

  /* Cyan Phone Button */
  .mobile-sticky-btn.offer-btn {
    background: #00E5FF;
    color: #0b0f19;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.45);
    border: none;
    animation: pulse-cyan-glow 3s infinite ease-in-out;
  }
  .mobile-sticky-btn.offer-btn span {
    line-height: 1.15;
    text-align: center;
  }
  .mobile-sticky-btn.offer-btn:active {
    transform: scale(0.96);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
  }

  /* Glassmorphic Call Button (Unused but kept for safety) */
  .mobile-sticky-btn.call-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .mobile-sticky-btn.call-btn:active {
    transform: scale(0.96);
    background: rgba(255, 255, 255, 0.15);
  }

  /* WhatsApp Button */
  .mobile-sticky-btn.whatsapp-btn {
    background: #00E676;
    color: #0b0f19;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.45);
    border: none;
    animation: pulse-green-glow 3s infinite ease-in-out;
    animation-delay: 1.5s;
  }
  .mobile-sticky-btn.whatsapp-btn:active {
    transform: scale(0.96);
    box-shadow: 0 0 8px rgba(0, 230, 118, 0.6);
  }

  

  /* Icons inside buttons */
  .mobile-sticky-btn i, .mobile-sticky-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
  }
}

@keyframes pulse-cyan-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.7);
  }
}

@keyframes pulse-green-glow {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 230, 118, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.7);
  }
}

/* Map States Hover Effect */
.state-path {
  cursor: pointer;
  transition: all 0.3s ease;
}
.state-path:hover {
  fill: rgba(0, 229, 255, 0.4) !important;
  stroke: #ffffff !important;
  stroke-width: 2 !important;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.8));
}

/* Remove Arrows/Spinners from Number Inputs */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

/* ===== LEGAL MODAL (Impressum / Datenschutz / AGB) ===== */
.legal-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.legal-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.legal-modal {
  background: #111827;
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  width: 100%;
  max-width: 780px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.9), 0 0 0 1px rgba(0,229,255,0.05);
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.legal-modal-overlay.active .legal-modal {
  transform: translateY(0) scale(1);
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.legal-modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-modal-title .modal-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,229,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00E5FF;
}
.legal-modal-title h3 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
}
.legal-modal-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9CA3AF;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}
.legal-modal-close:hover {
  background: rgba(255,80,80,0.15);
  border-color: rgba(255,80,80,0.3);
  color: #ff5050;
}
.legal-modal-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 30px 0;
  flex-shrink: 0;
}
.legal-modal-tab {
  padding: 8px 18px;
  border-radius: 8px 8px 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: #9CA3AF;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.legal-modal-tab:hover { color: #fff; }
.legal-modal-tab.active {
  color: #00E5FF;
  border-bottom-color: #00E5FF;
  background: rgba(0,229,255,0.05);
}
.legal-modal-body {
  overflow-y: auto;
  padding: 30px 30px 30px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,229,255,0.3) transparent;
}
.legal-modal-body::-webkit-scrollbar { width: 5px; }
.legal-modal-body::-webkit-scrollbar-track { background: transparent; }
.legal-modal-body::-webkit-scrollbar-thumb { background: rgba(0,229,255,0.3); border-radius: 10px; }
.legal-modal-content { display: none; }
.legal-modal-content.active { display: block; }
.legal-modal-content h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,229,255,0.15);
}
.legal-modal-content h3 {
  font-size: 1.05rem;
  color: #00E5FF;
  margin: 22px 0 8px;
}
.legal-modal-content h4 {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin: 16px 0 6px;
}
.legal-modal-content p {
  color: #94a3b8;
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.92rem;
}
.legal-modal-content ul {
  margin: 8px 0 12px 20px;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.75;
}
.legal-modal-content a {
  color: #00E5FF;
  text-decoration: none;
}
.legal-modal-content a:hover { text-decoration: underline; }
.legal-modal-footer {
  padding: 16px 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}
.legal-modal-footer button {
  background: var(--primary);
  color: #000;
  border: none;
  padding: 10px 28px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.legal-modal-footer button:hover { background: var(--primary-hover); transform: translateY(-1px); }
@media (max-width: 600px) {
  .legal-modal { max-height: 92vh; border-radius: 16px 16px 0 0; }
  .legal-modal-header, .legal-modal-body, .legal-modal-footer { padding-left: 20px; padding-right: 20px; }
  .legal-modal-tabs { padding-left: 20px; }
}

/* ===== Form Image Preview Styles ===== */
.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  width: 100%;
}
.preview-item {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview-item .remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  z-index: 10;
}
.preview-item .remove-btn:hover {
  background: rgb(220, 38, 38);
  transform: scale(1.1);
}

/* ===== Submit Loading Overlay ===== */
.submit-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  text-align: center;
}
.submit-loading-overlay.active {
  opacity: 1;
  visibility: visible;
}
.submit-loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(0, 229, 255, 0.15);
  border-left-color: #00E5FF;
  border-radius: 50%;
  animation: spin-loader 1s linear infinite;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}
.submit-loading-overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.submit-loading-overlay p {
  color: #94a3b8;
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.6;
}
@keyframes spin-loader {
  to { transform: rotate(360deg); }
}


/* Enable premium floating contact dock */

/* ===== ADDITIONAL COMPREHENSIVE RESPONSIVE LAYOUT OVERRIDES ===== */

/* 1. Intermediate Tablet/Desktop Breakpoint (992px to 1150px) */
@media (min-width: 992px) and (max-width: 1150px) {
  .nav-links {
    gap: 20px;
  }
  .nav-links a {
    font-size: 0.8rem;
  }
  .btn-phone, .btn-primary {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* 2. Hero & Container Padding Adjustments (<= 991px) */
@media (max-width: 991px) {
  .hero {
    padding: 80px 0 40px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }
  .hero-p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  .hero-list {
    gap: 15px 25px;
    margin-bottom: 35px;
  }
  .hero-list li {
    font-size: 0.95rem;
  }
}

/* 3. Section & Trust Bar Adjustments (<= 768px) */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .tb-trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    font-size: 0.75rem;
    text-align: center;
  }
  .top-bar .container {
    justify-content: center;
  }
  .local-content {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  .local-content h2 {
    font-size: 1.6rem;
  }
  .local-content h3 {
    font-size: 1.25rem;
  }
  .local-content p {
    font-size: 0.95rem;
  }
  footer {
    padding: 50px 0 20px;
    margin-top: 40px;
  }
  .f-grid {
    gap: 30px;
    margin-bottom: 35px;
  }
}

/* 4. Services & Step Card Layout Enhancements (<= 580px) */
@media (max-width: 580px) {
  .svc-card {
    flex-direction: column;
    gap: 15px;
    padding: 25px 20px;
    align-items: flex-start;
  }
  .svc-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .svc-card h3 {
    font-size: 1.15rem;
  }
  .step-card {
    padding: 35px 20px;
  }
  .step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}

/* 5. Mobile Form Width & Padding Reset (<= 480px) */
@media (max-width: 480px) {
  .logo {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }
  .container {
    padding: 0 15px;
  }
  
  /* Override inline header & content padding for index.html hero form wrapper */
  .hero-form-wrapper .window-header {
    padding: 15px 20px !important;
  }
  .hero-form-wrapper .window-content {
    padding: 25px 20px !important;
  }
  
  /* Draggable and regular popup form responsiveness */
  .draggable-window .window-header {
    padding: 15px 20px;
  }
  .draggable-window .window-content {
    padding: 25px 20px;
  }
  .draggable-window .hero-form h3 {
    font-size: 1.4rem;
  }
  .draggable-window .hero-form > p {
    margin-bottom: 20px;
  }
  .form-section-title {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .fc {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .fg label {
    font-size: 0.78rem;
    margin-bottom: 5px;
  }
  .progress-container {
    margin-bottom: 25px;
  }
  .progress-labels {
    font-size: 0.68rem;
  }
  .btn-next, .btn-submit, .btn-prev {
    padding: 12px;
    font-size: 0.85rem;
  }
  
  /* Legal modals tab wrapping & text scaling */
  .legal-modal-tabs {
    flex-wrap: wrap;
    padding: 12px 15px 0;
  }
  .legal-modal-tab {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
  .legal-modal-title h3 {
    font-size: 0.95rem;
  }
  .legal-modal-title .modal-icon {
    width: 32px;
    height: 32px;
  }
  
  /* FAQ accordion fine-tuning */
  .faq-question {
    font-size: 0.92rem;
    padding: 12px 0;
  }
  .faq-answer {
    font-size: 0.85rem;
  }
  
  /* Stats alignment */
  .stats-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 5px;
  }
  .stat-item {
    gap: 15px;
  }
  .stat-icon {
    font-size: 2rem;
  }
  .stat-text h4 {
    font-size: 1.25rem;
  }
}

/* ===== PREMIUM FLOATING CONTACT DOCK (v=2.5) ===== */
.floating-contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Inter', sans-serif;
  animation: slideInFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Contact Menu List */
.contact-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item-btn {
  height: 52px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.contact-item-btn i, .contact-item-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.contact-item-btn:hover {
  transform: translateY(-4px) scale(1.03);
}

/* Color Classes */
.contact-item-btn.wa {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}
.contact-item-btn.wa:hover {
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.contact-item-btn.ph {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 20px var(--primary-glow);
}
.contact-item-btn.ph:hover {
  box-shadow: 0 8px 30px var(--primary-glow);
}

.contact-item-btn.tg {
  background: #0088cc;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.3);
}
.contact-item-btn.tg:hover {
  box-shadow: 0 8px 30px rgba(0, 136, 204, 0.5);
}

/* Hide toggle button on desktop */
.contact-toggle-btn {
  display: none;
}

/* ===== MOBILE ADAPTIVITY (<= 768px) ===== */
@media (max-width: 768px) {
  .floating-contact-wrapper {
    bottom: 20px;
    right: 20px;
  }
  
  /* Show toggle button on mobile */
  .contact-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6), 0 0 15px rgba(0, 229, 255, 0.1);
    cursor: pointer;
    position: relative;
    z-index: 10002;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .contact-toggle-btn i {
    position: absolute;
    width: 26px;
    height: 26px;
    transition: all 0.3s ease;
  }
  
  .contact-toggle-btn .toggle-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
  }
  
  .contact-toggle-btn .toggle-badge {
    position: absolute;
    right: 70px;
    background: var(--primary);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    pointer-events: none;
    animation: bounceBadge 2s infinite;
  }
  
  @keyframes bounceBadge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-4px); }
  }

  /* Collapsed Menu State on Mobile */
  .contact-menu-list {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transform-origin: bottom right;
    z-index: 10001;
    padding-bottom: 75px; /* Leave space above the FAB */
  }
  
  /* Expanded Menu State on Mobile */
  .contact-menu-list.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
  
  /* Toggle Button Active State */
  .contact-toggle-btn.active {
    background: var(--primary);
    color: var(--secondary);
    transform: rotate(360deg);
    box-shadow: 0 8px 30px var(--primary-glow);
  }
  
  .contact-toggle-btn.active .toggle-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
  }
  
  .contact-toggle-btn.active .toggle-icon-close {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
  
  .contact-toggle-btn.active .toggle-badge {
    display: none;
  }
  
  /* Micro-pulsing effect for Toggle Button */
  .contact-toggle-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    z-index: -1;
    animation: pulseBorder 2.5s infinite;
  }
  
  @keyframes pulseBorder {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.4); opacity: 0; }
  }
}
