/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

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

/* Header */
.header {
  background: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #107850;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.phone-btn:hover {
  background: #0d5f3e;
  transform: translateY(-2px);
}

.order-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.order-btn:hover {
  background: #f57c00;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  color: white;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  /* background: url('static/background.png'); */
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #107850;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.2;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links span {
  font-weight: 500;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 24px;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Features Section */
.features {
  background: #f5f5f5;
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border: 3px solid #107850;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #107850;
  font-size: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  background: #107850;
  color: white;
}

.feature-icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff9800;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
  min-width: 24px;
}

.feature-item h3 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  line-height: 1.3;
}

/* Self Delivery Section */
.self-delivery {
  background: #e8e8e8;
  padding: 40px 0;
}

.self-delivery-content {
  text-align: center;
}

.highlight-text {
  font-size: 20px;
  color: #333;
  margin: 0;
}

.underline-link {
  color: #ff9800;
  text-decoration: none;
  border-bottom: 2px solid #ff9800;
  font-weight: 600;
}

.underline-link:hover {
  color: #f57c00;
  border-bottom-color: #f57c00;
}

/* Gallery Section */
.gallery {
  background: #f5f5f5;
  padding: 60px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-item:hover {
  transform: none;
}

.placeholder-image {
  height: 250px;
  background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #107850;
  font-size: 48px;
  gap: 10px;
}

.placeholder-image span {
  font-size: 16px;
  font-weight: 600;
}

/* Mobile App Section */
.mobile-app {
  background: linear-gradient(135deg, #107850 0%, #0d5f3e 100%);
  color: white;
  padding: 60px 0;
}

.mobile-app h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 15px;
}

.app-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;
  opacity: 0.9;
}

.app-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.app-feature i {
  font-size: 24px;
  color: #ffe0b2;
  min-width: 30px;
}

.app-feature span {
  font-size: 16px;
  font-weight: 500;
}

.app-download {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
}

.app-download h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  min-width: 180px;
  border: 2px solid transparent;
}

.download-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.download-btn.apk {
  background: #ff9800;
  border-color: #ff9800;
}

.download-btn.apk:hover {
  background: #f57c00;
  border-color: #f57c00;
}

.download-btn i {
  font-size: 32px;
}

.download-btn div {
  text-align: left;
}

.download-btn .small {
  font-size: 12px;
  opacity: 0.8;
  display: block;
}

.download-btn .large {
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.app-note {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
  font-style: italic;
}

/* Contact Section */
.contact {
  background: #f5f5f5;
  padding: 40px 0;
}

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

.contact-phone {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.phone-number {
  font-size: 28px;
  font-weight: bold;
  color: #107850;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-number:hover {
  color: #0d5f3e;
}

.copy-phone {
  background: #e8e8e8;
  border: 2px solid #107850;
  color: #107850;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.copy-phone:hover {
  background: #107850;
  color: white;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.privacy-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  display: block;
  text-align: center;
  width: 100%;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Fixed Action Buttons */
.fixed-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.fixed-call-btn {
  width: 60px;
  height: 60px;
  background: #107850;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(16, 120, 80, 0.4);
  transition: all 0.3s ease;
}

.fixed-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(16, 120, 80, 0.6);
}

.fixed-order-btn {
  background: #ff9800;
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.fixed-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 152, 0, 0.6);
}

/* Copy Success Message */
.copy-success {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #107850;
  color: white;
  padding: 20px 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  z-index: 10000;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.copy-success.show {
  transform: translate(-50%, -50%) scale(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 15px 0;
  }

  .hero h1 {
    margin: 10px 0 20px 0;
  }

  .social-links {
    gap: 15px;
  }

  .social-links span {
    font-size: 14px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .features {
    padding: 30px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mobile-app {
    padding: 40px 0;
  }

  .app-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .download-btn {
    min-width: auto;
    width: 80px;
    height: 80px;
    padding: 0;
    border-radius: 20px;
    justify-content: center;
  }

  .download-btn div {
    display: none;
  }

  .download-btn i {
    font-size: 28px;
  }

  .contact-phone {
    flex-direction: column;
  }

  .phone-number {
    font-size: 24px;
  }

  .fixed-actions {
    display: flex;
    bottom: 15px;
    right: 15px;
  }

  .fixed-order-btn span {
    display: none;
  }

  .fixed-order-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 450px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
    margin: 5px 0 15px 0;
  }

  .social-links {
    gap: 15px;
  }

  .social-links span {
    font-size: 12px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .features {
    padding: 20px 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .feature-item {
    padding: 15px 5px;
  }

  .feature-item h3 {
    font-size: 16px;
  }

  .highlight-text {
    font-size: 18px;
  }

  .mobile-app h2 {
    font-size: 26px;
  }

  .app-description {
    font-size: 16px;
  }

  .app-download {
    padding: 30px 20px;
  }

  .phone-number {
    font-size: 20px;
  }
}

/* Animation enhancements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print styles */
@media print {
  .fixed-actions,
  .copy-success {
    display: none;
  }

  * {
    background: white !important;
    color: black !important;
  }
}
