/* ===== COLOR PALETTE =====
Primary: #0b57a4 (dark tech blue)
Accent: #00d1ff (cyan)
Background: #0f1724 (dark) / #ffffff (light theme alternative)
Text: #e6eef6 (light) / #0f172a (dark)
*/

/* ===== FONT USAGE =====
Primary: Inter (sans-serif, modern)
Secondary: Poppins (headings, bold)
*/

/* ===== UTILITY CLASSES =====
.btn-primary: CTA buttons with glow
.btn-secondary: Secondary actions
.container: Max-width wrapper
.grid: Flex/grid layouts
*/

/* ===== RESPONSIVE BREAKPOINTS =====
Mobile: < 768px
Tablet: 768px - 1024px
Desktop: > 1024px
*/

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f1724, #1e293b);
  color: #e6eef6;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

a {
  color: #00d1ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ===== HEADER ===== */
.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 209, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d1ff;
  text-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  border-radius: 50%;
  border: 2px solid #00d1ff;
  box-shadow: 0 0 15px rgba(0, 209, 255, 0.5);
  transition: box-shadow 0.3s ease;
}

.logo img:hover {
  box-shadow: 0 0 25px rgba(0, 209, 255, 0.8);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-list a:hover::before {
  left: 100%;
}

.nav-list a:hover {
  background: rgba(0, 209, 255, 0.1);
  color: #00d1ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.nav-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.nav-list a:hover .nav-icon {
  transform: scale(1.1);
}

.cart-btn {
  background: linear-gradient(135deg, #0b57a4, #00d1ff);
  border: none;
  color: #e6eef6;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.cart-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 209, 255, 0.5);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: #ffffff;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 1.25rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  color: #e6eef6;
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #00d1ff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f1724, #1e293b);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(0, 209, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(11, 87, 164, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: #00d1ff;
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: rgba(230, 238, 246, 0.9);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d1ff;
  text-shadow: 0 0 15px rgba(0, 209, 255, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(230, 238, 246, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

/* ===== REPAIR SERVICES ===== */
.repair-services {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #0f1724);
}

.repair-services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  color: #00d1ff;
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 209, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 209, 255, 0.4);
  border-color: rgba(0, 209, 255, 0.6);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: #e6eef6;
  font-size: 1.25rem;
}

.service-card p {
  color: rgba(230, 238, 246, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00d1ff;
  margin-bottom: 1.5rem;
}

/* ===== PROCESS ===== */
.process {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f1724, #1e293b);
}

.process h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  color: #00d1ff;
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  width: 200px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 209, 255, 0.3);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0b57a4, #00d1ff);
  color: #e6eef6;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.step h3 {
  margin-bottom: 1rem;
  color: #e6eef6;
}

.step p {
  color: rgba(230, 238, 246, 0.8);
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #0f1724);
  text-align: center;
}

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #00d1ff;
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.3);
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: rgba(230, 238, 246, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 1.2rem 2.5rem;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 209, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1.1rem;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 209, 255, 0.5);
}

.cta-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.cta-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.cta-btn:hover::after {
  transform: translateX(5px);
}

/* ===== MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 16px;
  z-index: 5000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 0;
  max-width: 800px;
  width: 92%;
  position: relative;
  border: 2px solid rgba(0, 209, 255, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 209, 255, 0.3);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow: hidden;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.modal.active .modal-content {
  transform: scale(1);
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  cursor: pointer;
  color: #00d1ff;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 209, 255, 0.1);
}

.close:hover {
  background: rgba(0, 209, 255, 0.3);
  transform: rotate(90deg);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #e6eef6;
  font-weight: 600;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(0, 209, 255, 0.3);
  border-radius: 10px;
  background: rgba(230, 238, 246, 0.15);
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d1ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #0f1724;
  color: #ffffff;
  padding: 0.5rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(230, 238, 246, 0.5);
  font-style: italic;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
  color: rgba(230, 238, 246, 0.5);
  font-style: italic;
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
  color: rgba(230, 238, 246, 0.5);
  font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d1ff;
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.2);
  transform: scale(1.02);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
/* Modal header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid rgba(0, 209, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.1), rgba(11, 87, 164, 0.1));
  flex-shrink: 0;
}

.modal-header h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #00d1ff;
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.5);
}

.modal-close {
  background: rgba(255, 71, 87, 0.2);
  border: 2px solid rgba(255, 71, 87, 0.5);
  color: #ffffff;
  font-size: 1.75rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255, 71, 87, 0.4);
  border-color: #ff4757;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.modal-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Contact form container */
.contact-form {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

/* ===== CHAT FAB ===== */
.chat-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #0b57a4, #00d1ff);
  color: #e6eef6;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 209, 255, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.chat-fab:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(0, 209, 255, 0.7);
}

.chat-fab:active {
  transform: scale(0.95);
}

/* ===== CHAT MODAL ===== */
.chat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-modal.active {
  opacity: 1;
  visibility: visible;
}

.chat-modal-content {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  padding: 0;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  border: 1px solid rgba(0, 209, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-modal.active .chat-modal-content {
  transform: scale(1) translateY(0);
}

.chat-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 209, 255, 0.3);
  background: rgba(0, 209, 255, 0.05);
}

.chat-modal-header h3 {
  color: #00d1ff;
  margin: 0;
  font-size: 1.5rem;
}

.chat-close {
  background: none;
  border: none;
  color: #00d1ff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-close:hover {
  background: rgba(0, 209, 255, 0.2);
  transform: rotate(90deg);
}

.chat-modal-body {
  padding: 2rem;
  max-height: calc(80vh - 80px);
  overflow-y: auto;
}

.chat-modal-body input,
.chat-modal-body textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(0, 209, 255, 0.3);
  border-radius: 12px;
  background: rgba(230, 238, 246, 0.1);
  color: #e6eef6;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.chat-modal-body input:focus,
.chat-modal-body textarea:focus {
  outline: none;
  border-color: #00d1ff;
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.2);
  transform: scale(1.02);
}

.chat-thread {
  height: 300px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(0, 209, 255, 0.2);
}

.chat-input {
  display: flex;
  gap: 1rem;
}

.chat-input textarea {
  flex: 1;
  resize: vertical;
  min-height: 60px;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #0f1724, #1e293b);
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(0, 209, 255, 0.3);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 70%, rgba(0, 209, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(11, 87, 164, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer h3,
.footer h4 {
  color: #00d1ff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer p {
  margin-bottom: 1rem;
  color: rgba(230, 238, 246, 0.8);
  line-height: 1.6;
}

.footer p i {
  margin-right: 0.5rem;
  color: #00d1ff;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(0, 209, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: rgba(0, 209, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer ul li a {
  color: rgba(230, 238, 246, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
  display: inline-block;
}

.footer ul li a:hover {
  color: #e6eef6;
  background: rgba(0, 209, 255, 0.1);
  transform: translateX(5px);
}

.payment-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.payment-icons img {
  height: 50px;
  background: rgba(230, 238, 246, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  border: 1px solid rgba(0, 209, 255, 0.2);
  transition: all 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

.newsletter {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.newsletter input {
  flex: 1;
  padding: 1rem;
  border: 2px solid rgba(0, 209, 255, 0.3);
  border-radius: 12px;
  background: rgba(230, 238, 246, 0.1);
  color: #e6eef6;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter input:focus {
  outline: none;
  border-color: #00d1ff;
  box-shadow: 0 0 0 3px rgba(0, 209, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(0, 209, 255, 0.2);
  padding-top: 2rem;
  color: rgba(230, 238, 246, 0.7);
  position: relative;
  z-index: 2;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: linear-gradient(135deg, #0b57a4, #00d1ff);
  color: #e6eef6;
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
}

/* Boutons Hero - Super Attractifs avec effets visuels */
.btn-hero {
  padding: 1.3rem 2.5rem !important;
  font-size: 1.15rem !important;
  border-radius: 60px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-hero:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero.btn-primary {
  background: linear-gradient(135deg, #00d1ff 0%, #0b57a4 50%, #00d1ff 100%) !important;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite, glow 2s ease-in-out infinite;
  box-shadow: 0 10px 40px rgba(0, 209, 255, 0.5), 
              0 0 20px rgba(0, 209, 255, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-hero.btn-secondary {
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.15), rgba(11, 87, 164, 0.15)) !important;
  border: 3px solid #00d1ff !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 40px rgba(0, 209, 255, 0.4), 
              0 0 30px rgba(0, 209, 255, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  animation: borderGlow 2s ease-in-out infinite;
}

.btn-hero:hover {
  transform: translateY(-8px) scale(1.08) !important;
  box-shadow: 0 20px 60px rgba(0, 209, 255, 0.7), 
              0 0 40px rgba(0, 209, 255, 0.5) !important;
}

.btn-hero.btn-primary:hover {
  box-shadow: 0 20px 70px rgba(0, 209, 255, 0.9), 
              0 0 50px rgba(0, 209, 255, 0.7),
              inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  animation: gradientShift 2s ease infinite, glow 1s ease-in-out infinite;
}

.btn-hero.btn-secondary:hover {
  border-color: #00ffff !important;
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.3), rgba(11, 87, 164, 0.3)) !important;
}

.btn-hero:active {
  transform: translateY(-3px) scale(1.03) !important;
}

.btn-hero svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(0, 209, 255, 0.5));
  }
  50% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(0, 209, 255, 0.8));
  }
}

@keyframes borderGlow {
  0%, 100% {
    border-color: #00d1ff;
    box-shadow: 0 10px 40px rgba(0, 209, 255, 0.4), 
                0 0 30px rgba(0, 209, 255, 0.2);
  }
  50% {
    border-color: #00ffff;
    box-shadow: 0 10px 50px rgba(0, 209, 255, 0.6), 
                0 0 40px rgba(0, 209, 255, 0.4);
  }
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 209, 255, 0.6);
}

.btn-secondary {
  background: rgba(230, 238, 246, 0.08);
  color: #e6eef6;
  border: 2px solid rgba(0, 209, 255, 0.3);
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 0.9rem;
}

.btn-secondary:hover {
  background: rgba(0, 209, 255, 0.2);
  border-color: #00d1ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 209, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .modal-content { max-width: 95%; padding: 0.9rem; max-height: 88vh; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(0, 209, 255, 0.3);
    border-top: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-list.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .step h3 {
    font-size: 1.1rem;
  }

  .step p {
    font-size: 0.9rem;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-price {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

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

  .footer-content {
    flex-direction: column;
  }

  .chat-input {
    flex-direction: column;
  }

  .chat-fab {
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }

  .newsletter {
    flex-direction: column;
  }

  /* Modals responsive */
  .modal-content {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
  }

  .modal-header {
    padding: 1rem 1.25rem;
  }

  .modal-header h3 {
    font-size: 1.2rem;
  }

  .modal-close {
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.75rem;
  }

  /* Boutons responsive */
  .btn-primary,
  .btn-secondary {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-content .btn-primary,
  .hero-content .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  /* Container padding */
  .container {
    padding: 0 1rem;
  }

  /* Hero image */
  .hero-image {
    display: none;
  }

  .hero-content {
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== HOME REPAIR SECTION ===== */
.home-repair {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b, #0f1724);
  position: relative;
}

.home-repair::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0, 209, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(11, 87, 164, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.home-repair .container {
  position: relative;
  z-index: 2;
}

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

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

.info-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 209, 255, 0.3);
  border-color: rgba(0, 209, 255, 0.6);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  color: #00d1ff;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.info-card p {
  color: rgba(230, 238, 246, 0.8);
  line-height: 1.6;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(0, 209, 255, 0.4);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
  color: #00d1ff;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.5);
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 209, 255, 0.2);
  transition: all 0.3s ease;
}

.pricing-item:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(0, 209, 255, 0.4);
  transform: translateX(5px);
}

.pricing-item.highlight {
  background: linear-gradient(135deg, rgba(0, 209, 255, 0.2), rgba(11, 87, 164, 0.2));
  border: 2px solid rgba(0, 209, 255, 0.5);
}

.pricing-item .location {
  color: #e6eef6;
  font-weight: 500;
}

.pricing-item .price {
  color: #00d1ff;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(0, 209, 255, 0.5);
}

.pricing-note {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.pricing-note p {
  color: #ff6b6b;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.pricing-note li {
  color: rgba(230, 238, 246, 0.9);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-note li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: bold;
}

.home-repair-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 209, 255, 0.2);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 209, 255, 0.3);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 209, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 209, 255, 0.3);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-item span:last-child {
  color: #e6eef6;
  font-weight: 500;
}

/* Responsive pour la section réparation à domicile */
@media (max-width: 768px) {
  .home-repair {
    padding: 3rem 0;
  }

  .home-repair .section-header h2 {
    font-size: 1.75rem;
  }

  .home-repair .section-header p {
    font-size: 0.95rem;
  }

  .home-repair-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .info-card {
    padding: 1.5rem;
  }

  .info-icon {
    font-size: 2.5rem;
  }

  .info-card h3 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .pricing-details {
    gap: 0.75rem;
  }

  .pricing-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .pricing-item .location {
    font-size: 0.9rem;
  }

  .pricing-item .price {
    font-size: 1rem;
  }

  .pricing-note {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .pricing-note p {
    font-size: 0.9rem;
  }

  .pricing-note li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }

  .home-repair-features {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .feature-item {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .feature-icon {
    font-size: 1.25rem;
  }
}

/* Très petits écrans (moins de 400px) */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .section-header h2,
  .home-repair .section-header h2 {
    font-size: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
  }

  .pricing-item {
    padding: 0.6rem 0.75rem;
  }

  .pricing-item .location,
  .pricing-item .price {
    font-size: 0.85rem;
  }

  .info-icon {
    font-size: 2rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.85rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.25rem;
    font-size: 0.9rem;
  }
}
