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

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
}

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

/* Header */
.header {
  background-color: #000000;
  padding: 1rem 0;
  border-bottom: 2px solid #f79121;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
}

.brand-title {
  color: #f79121;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.brand-subtitle {
  color: #ffffff;
  font-size: 0.875rem;
  opacity: 0.6;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: #f79121;
  border-bottom-color: #f79121;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 8rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f79121;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.25rem;
  color: #000000;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Added app features styling */
.app-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #000000;
  opacity: 0.8;
}

.feature-icon {
  color: #f79121;
  font-weight: bold;
  font-size: 1rem;
}

/* Added phone mockup styling */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #000000, #333333);
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.app-preview {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
}

.btn-primary {
  background-color: #f79121;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #e8821e;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  color: #f79121;
  border: 2px solid #f79121;
}

.btn-outline:hover {
  background-color: #f79121;
  color: #ffffff;
}

.btn-full {
  width: 100%;
}

/* Added button icon styling */
.btn-icon {
  font-size: 1.2rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #f79121;
  margin-bottom: 3rem;
}

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

.service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  border-color: #f79121;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(247, 145, 33, 0.15);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f79121;
  margin-bottom: 1rem;
}

.service-description {
  color: #000000;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}

/* Privacy Section */
.privacy {
  padding: 4rem 0;
  background-color: #ffffff;
}

.privacy-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.privacy-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.privacy-title {
  font-size: 2rem;
  font-weight: 600;
  color: #f79121;
  margin-bottom: 1.5rem;
}

.privacy-text {
  font-size: 1.125rem;
  color: #000000;
  opacity: 0.8;
  line-height: 1.7;
}

/* Added app download section styling */
.app-download {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f79121 0%, #ff6b35 100%);
  text-align: center;
}

.download-content {
  max-width: 600px;
  margin: 0 auto;
}

.download-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.download-description {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.download-btn {
  background-color: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
  background-color: #333333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-icon {
  font-size: 2rem;
}

.download-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.download-store {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Footer */
.footer {
  background-color: #000000;
  padding: 3rem 0 1rem;
  border-top: 2px solid #f79121;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 6px;
}

.footer-text {
  color: #ffffff;
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-title {
  color: #f79121;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  opacity: 1;
  color: #f79121;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333333;
  color: #ffffff;
  opacity: 0.6;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #ffffff;
  padding: 2rem;
  border: 2px solid #f79121;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 2rem;
}

.close {
  color: #000000;
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.close:hover {
  color: #f79121;
}

.modal-title {
  color: #f79121;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Added service modal specific styling */
.service-modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-modal-description {
  color: #000000;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.8;
}

.service-features {
  margin-bottom: 2rem;
}

.features-title {
  color: #f79121;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  color: #000000;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.8;
}

.features-list li::before {
  content: "✓";
  color: #f79121;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .brand-text {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #000000;
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid #f79121;
    gap: 0;
  }

  .nav.show {
    display: flex;
  }

  .nav-link {
    padding: 1rem;
    border-bottom: 1px solid #333333;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .phone-mockup {
    width: 150px;
    height: 300px;
    padding: 15px;
  }

  .app-preview {
    width: 60px;
    height: 60px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

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

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

  .download-btn {
    width: 100%;
    max-width: 280px;
  }

  .app-features {
    align-items: center;
  }

  .service-modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 0 2rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .download-title {
    font-size: 2rem;
  }

  .modal-content {
    margin: 10% auto;
    padding: 1.5rem;
  }

  .phone-mockup {
    width: 120px;
    height: 240px;
    padding: 12px;
  }

  .app-preview {
    width: 50px;
    height: 50px;
  }
}
