* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles improvements for mobile */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.6rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  width: 120px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #f16322;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #04293a 0%, #134876 100%);
  color: white;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 8px 8px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #f16322;
  color: white;
}

.btn-primary:hover {
  background: #c44206;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #2563eb;
}

.btn-outline {
  background: transparent;
  color: #04293a;
  border: 2px solid #04293a;
}

.btn-outline:hover {
  background: #04293a;
  color: white;
}
#btn-started {
  margin-top: 8.2rem;
}
#btn-sales {
  margin-top: 4.2rem;
}
.hero-image iframe {
  width: 100%;
  height: 325px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #04293a 0%, #134876 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Solutions Section */
.solutions {
  padding: 80px 0;
}

.solutions-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #04293a;
  color: white;
  border-color: #04293a;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.solution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.solution-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.solution-text ul {
  list-style: none;
}

.solution-text li {
  padding: 0.5rem 0;
  color: #64748b;
  position: relative;
  padding-left: 1.5rem;
}

.solution-text li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.solution-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid #04293a;
  transform: scale(1.05);
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #04293a;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-intro {
  font-size: 1rem;
  color: #40454e;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.pricing-card li {
  padding: 0.5rem 0;
  color: #40454e;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-card li:last-child {
  border-bottom: none;
}
#custom-price {
  margin-bottom: 5.8rem;
}
#old-price {
  text-decoration: line-through;
  color: #04293a;
  font-size: 1.6rem;
  text-decoration-color: red;
}
/* Contact Section */
.contact {
  padding: 50px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-title h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
}

.contact-title p {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  color: #04293a;
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2563eb;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #2563eb;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid #334155;
  color: #94a3b8;
}

/* Responsive Design */

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 140px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 0;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 0;
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    font-size: 1.2rem;
    display: block;
    padding: 1rem;
    width: 100%;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-menu a:hover {
    background-color: rgba(4, 41, 58, 0.1);
    border-radius: 8px;
    color: #04293a;
  }

  .nav-menu a:active,
  .nav-menu a.active {
    background-color: rgba(4, 41, 58, 0.2);
    color: #04293a;
    border-radius: 8px;
  }

  /* Add padding at the bottom for better scrolling experience */
  .nav-menu::after {
    content: "";
    height: 2rem;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo img {
    width: 100px;
  }
}

/* Tablet and Mobile Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

  .hero-container {
    gap: 2rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Typography adjustments */
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  /* Layout adjustments */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  /* Hero section mobile improvements */
  .hero-image iframe {
    max-height: 250px;
    border-radius: 8px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 24px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  /* Features section */
  .features {
    padding: 60px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  /* Solutions section */
  .solutions {
    padding: 60px 0;
  }

  .solutions-tabs {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    max-width: 280px;
  }

  .solution-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-text h3 {
    font-size: 1.5rem;
  }

  .solution-text p {
    font-size: 1rem;
  }

  /* Pricing section */
  .pricing {
    padding: 60px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .price {
    font-size: 2.5rem;
  }

  #old-price {
    font-size: 1.4rem;
  }

  /* Contact section */
  .contact {
    padding: 40px 0;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-title h2 {
    font-size: 1.8rem;
  }

  /* Footer adjustments */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero-title {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .hero {
    padding: 80px 0 40px;
  }

  .features,
  .solutions,
  .pricing {
    padding: 40px 0;
  }

  .feature-card,
  .pricing-card {
    padding: 1.2rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .price {
    font-size: 2rem;
  }

  #old-price {
    font-size: 1.2rem;
  }

  .solution-text h3 {
    font-size: 1.3rem;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.pricing-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  .feature-card:hover,
  .pricing-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-outline:hover {
    transform: none;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  .btn-primary,
  .btn-secondary,
  .btn-outline,
  .tab-btn {
    min-height: 44px; /* Minimum touch target size */
  }

  .nav-menu a {
    padding: 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-item {
    min-height: 44px;
    align-items: center;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}
