* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo {
  width: 70px;
  height: 70px;
  background-image:url("/images/logo.png");
  background-size: cover;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.brand-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  display: none;
}

/* Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: white;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours {
  font-size: 0.85rem;
  opacity: 0.9;
}

.cta-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin-top: 5px;
}

.cta-button:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hamburger {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-nav.active {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.mobile-nav-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 20px;
}

.mobile-nav-links li {
  margin-bottom: 15px;
}

.mobile-nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.mobile-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  text-align: center;
  color: white;
}

.mobile-phone {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.mobile-hours {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .brand-text {
    display: block;
  }

  .contact-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header-content {
    min-height: 70px;
  }

  .logo {
    width: 45px;
    height: 45px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .brand-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 15px;
  }

  .header-content {
    min-height: 65px;
  }

  .brand-text {
    display: none;
  }
}

/* Demo Content */
.demo-content {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.demo-content h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.demo-content p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Phone Icon */
.phone-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
