/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

h1, h2, h3 {
  color: #1e62d5;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header with Train Background */
.header {
  background-image: url('/images/header-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  padding: 100px 0;
  position: relative;
  color: white;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.header .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.admin-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Hero Text */
.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: white;
  opacity: 0.95;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: white;
  color: #1e62d5;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Phone Mockup */
.phone-icon {
  position: absolute;
  top: 100px;
  right: 20px;
  width: 220px;
  height: 400px;
  background: #1e62d5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(-10deg);
  z-index: 3;
}

.phone-icon::before {
  content: '';
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.cart-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-icon i {
  font-size: 2.5rem;
  color: #1e62d5;
}

.phone-footer {
  width: 80%;
  height: 10px;
  background: white;
  border-radius: 10px;
}

/* Services Section */
.services {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1e62d5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background: #1e62d5;
  color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 2.5rem;
  color: #00c9ff;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Products Section */
.service-image-section {
  padding: 80px 0;
  background-color: #f0f8ff;
  text-align: center;
}

.service-image-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-image-card {
  width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background: white;
  transition: transform 0.3s ease;
}

.service-image-card:hover {
  transform: scale(1.03);
}

.service-image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.card-body h3 {
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #1e62d5;
  margin: 10px 0;
}

.buy-now-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1e62d5;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  background-color: #0a4baf;
  transform: translateY(-2px);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.pricing-card {
  width: 300px;
  border: 1px solid #ddd;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
  border: 2px solid #1e62d5;
  transform: scale(1.02);
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1e62d5;
  margin-bottom: 15px;
}

.features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
  color: #555;
}

.features li:last-child {
  border-bottom: none;
}

.pricing-card .btn {
  background-color: #1e62d5;
  color: white;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.pricing-card .btn:hover {
  background-color: #0a4baf;
  transform: translateY(-3px);
}

/* Quote Section */
.quote-section {
  background: linear-gradient(135deg, #00c9ff, #1e62d5);
  color: white;
  padding: 80px 0;
  text-align: center;
  margin: 40px 0;
}

.quote-text {
  font-size: 1.6rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Download CTA */
.download-cta {
  padding: 80px 0;
  background-color: #f0f8ff;
  text-align: center;
}

.download-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1e62d5;
}

.download-cta p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

/* Floating WhatsApp & Telegram Buttons */
.floating-buttons {
  position: fixed;
  right: 30px;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.whatsapp {
  background-color: #25D366;
}

.floating-btn.telegram {
  background-color: #0088cc;
}

/* Footer */
.footer {
  background: #1e293b;
  color: #cbd5e1;
  padding: 80px 0 40px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  text-align: left;
}

.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #60a5fa;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #60a5fa;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #334155;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #60a5fa;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #334155;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 60px 0;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .phone-icon {
    width: 180px;
    height: 300px;
    top: 60px;
    right: 10px;
  }

  .cart-icon {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
  }

  .quote-text {
    font-size: 1.4rem;
  }
}
