* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ===== BLUR BACKGROUND LAYERS ===== */
.blur-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e0f2fe 0%, #dbeafe 25%, #ede9fe 50%, #fce7f3 75%, #fef3c7 100%);
  z-index: -3;
}

.gradient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
  z-index: -2;
}

/* Floating blur orbs */
.blur-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  z-index: -1;
  animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: #8b5cf6;
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
  animation-duration: 25s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: 40%;
  left: 30%;
  animation-delay: 10s;
  animation-duration: 18s;
  opacity: 0.4;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  33% {
    transform: translateY(-40px) translateX(30px) scale(1.05);
  }
  66% {
    transform: translateY(20px) translateX(-20px) scale(0.98);
  }
}

/* Main Container */
.maintenance-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card */
.maintenance-card {
  max-width: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 24px 20px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.15), 0 1px 0 0 rgba(255, 255, 255, 0.5) inset;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Brand Header */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.logo-wrapper {
  flex-shrink: 0;
}

.company-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}

.fallback-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.fallback-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.brand-text {
  text-align: center;
}

.brand-text h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.brand-text .highlight {
  color: #2563eb;
}

.badge {
  font-weight: 500;
  font-size: 0.65rem;
  background: rgba(37, 99, 235, 0.15);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 60px;
  color: #1e40af;
  letter-spacing: 0.3px;
  display: inline-block;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(254, 243, 199, 0.8);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 60px;
  margin-bottom: 20px;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.status-badge i {
  font-size: 0.9rem;
  color: #d97706;
}

.status-badge p {
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #92400e;
}

/* Message Area */
.message-area h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.message-area p {
  font-size: 0.9rem;
  color: #475569;
  max-width: 100%;
  margin: 0 auto 16px;
  line-height: 1.5;
  padding: 0 4px;
}

/* Services Section - Glass */
.services-section {
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.services-section h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.service-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 40px;
  padding: 6px 14px;
  font-weight: 500;
  font-size: 0.7rem;
  color: #334155;
  transition: all 0.2s;
}

.service-item i {
  margin-right: 6px;
  color: #2563eb;
  font-size: 0.7rem;
}

.service-item:hover {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  transform: translateY(-2px);
}

/* Countdown Section */
.countdown-section {
  margin: 16px 0;
}

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 12px;
}

.timer-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.time-block {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 8px 12px;
  min-width: 65px;
  border-bottom: 2px solid #2563eb;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.time-block span {
  font-size: 1.6rem;
  font-weight: 700;
  font-feature-settings: "tnum";
  color: #0f172a;
}

.time-block label {
  display: block;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-top: 4px;
}

/* Contact Section - Glass */
.contact-section {
  background: rgba(239, 246, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 16px;
  margin: 16px 0;
  border: 1px solid rgba(219, 234, 254, 0.8);
}

.contact-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #1e293b;
}

.contact-section p {
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 14px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-btn {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 10px 16px;
  border-radius: 40px;
  text-decoration: none;
  color: #1e293b;
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  border: 1px solid rgba(203, 213, 225, 0.8);
  width: 100%;
}

.contact-btn i {
  color: #2563eb;
  font-size: 0.9rem;
}

.contact-btn:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.contact-btn:hover i {
  color: #ffffff;
}

/* Progress Section */
.progress-section {
  margin: 16px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  margin-bottom: 6px;
  color: #475569;
}

.progress-label i {
  margin-right: 4px;
  color: #2563eb;
}

.progress-bar {
  background: rgba(226, 232, 240, 0.7);
  border-radius: 30px;
  height: 6px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 30px;
  transition: width 0.5s ease;
}

/* Footer */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  font-size: 0.65rem;
  color: #64748b;
  text-align: center;
}

.hours i, .refresh i {
  margin-right: 4px;
  color: #2563eb;
}

/* ===== TABLET STYLES (601px - 900px) ===== */
@media (min-width: 601px) {
  .maintenance-container {
    padding: 24px;
  }
  
  .maintenance-card {
    max-width: 550px;
    padding: 32px 28px;
    border-radius: 36px;
  }
  
  .brand-text h1 {
    font-size: 1.6rem;
  }
  
  .company-logo, .fallback-icon {
    width: 65px;
    height: 65px;
  }
  
  .message-area h2 {
    font-size: 1.8rem;
  }
  
  .timer-grid {
    gap: 12px;
  }
  
  .time-block {
    padding: 10px 14px;
    min-width: 70px;
  }
  
  .time-block span {
    font-size: 1.8rem;
  }
  
  .contact-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-btn {
    width: auto;
    padding: 8px 16px;
  }
  
  .footer-info {
    flex-direction: row;
    justify-content: space-between;
  }
  
  /* Orbs larger on tablet */
  .orb-1 { width: 500px; height: 500px; }
  .orb-2 { width: 450px; height: 450px; }
  .orb-3 { width: 400px; height: 400px; }
}

/* ===== DESKTOP STYLES (901px+) ===== */
@media (min-width: 901px) {
  .maintenance-container {
    padding: 3rem 1.5rem;
  }
  
  .maintenance-card {
    max-width: 950px;
    padding: 2.8rem 2.5rem;
    border-radius: 40px;
  }
  
  .brand-header {
    gap: 20px;
  }
  
  .brand-text {
    text-align: left;
  }
  
  .brand-text h1 {
    font-size: 1.8rem;
  }
  
  .company-logo, .fallback-icon {
    width: 75px;
    height: 75px;
  }
  
  .message-area h2 {
    font-size: 2.2rem;
  }
  
  .message-area p {
    font-size: 1rem;
    max-width: 500px;
  }
  
  .timer-grid {
    gap: 1.5rem;
  }
  
  .time-block {
    padding: 0.8rem 1.4rem;
    min-width: 85px;
  }
  
  .time-block span {
    font-size: 2.2rem;
  }
  
  .time-block label {
    font-size: 0.65rem;
  }
  
  .contact-links {
    gap: 1rem;
  }
  
  .footer-info {
    gap: 1rem;
  }
  
  /* Orbs even larger on desktop */
  .orb-1 { width: 600px; height: 600px; filter: blur(100px); }
  .orb-2 { width: 550px; height: 550px; filter: blur(100px); }
  .orb-3 { width: 450px; height: 450px; filter: blur(90px); }
}

/* ===== SMALL PHONES (below 380px) ===== */
@media (max-width: 380px) {
  .maintenance-card {
    padding: 18px 14px;
  }
  
  .brand-text h1 {
    font-size: 1.2rem;
  }
  
  .message-area h2 {
    font-size: 1.3rem;
  }
  
  .message-area p {
    font-size: 0.8rem;
  }
  
  .time-block {
    min-width: 55px;
    padding: 6px 8px;
  }
  
  .time-block span {
    font-size: 1.3rem;
  }
  
  .service-item {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
  
  .contact-btn {
    font-size: 0.7rem;
    padding: 8px 12px;
  }
}