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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* FontAwesome Icon Styling */
.about-icon i,
.feature-icon i,
.benefit-icon i,
.pricing-icon i {
  font-size: 3rem;
  color: #007a7a;
}

.feature-module h3 i {
  margin-right: 10px;
  color: #007a7a;
}

.social-links a i {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-links a:hover i {
  color: #007a7a;
}

/* .fa-solid {
  color: #007a7a;
} */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 122, 122, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 122, 0.4);
}

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

.btn-secondary:hover {
  background: #007a7a;
  color: white;
}

.btn-full {
  width: 100%;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 122, 122, 0.1);
}

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

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

.logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #007a7a;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #007a7a;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #007a7a;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8fdfd 0%, #e6f7f7 100%);
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23007a7a' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #007a7a;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.hero-image {
  place-self: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  /* border-radius: 20px; */
  /* box-shadow: 0 20px 40px rgba(0, 122, 122, 0.2); */
}

/* Section Styles */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: white;
}

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

.about-card {
  background: linear-gradient(135deg, #f8fdfd, #e6f7f7);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 122, 122, 0.1);
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-card h3 {
  color: #007a7a;
  margin-bottom: 15px;
}

/* Features Preview */
.features-preview {
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  color: white;
}

.features-preview .section-title,
.features-preview .section-subtitle {
  color: white;
}

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

.feature-preview {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

/* Steps Section */
.steps {
  background: #f8fdfd;
}

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

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: #007a7a;
  margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
  background: white;
}

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

.benefit-card {
  background: linear-gradient(135deg, #f8fdfd, #e6f7f7);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 122, 122, 0.1);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 122, 122, 0.1);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.benefit-card h3 {
  color: #007a7a;
  margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
  background: #f8fdfd;
}

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

.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 122, 122, 0.15);
}

.pricing-card.featured {
  border-color: #007a7a;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 10;
}

.pricing-header {
  padding: 40px 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8fdfd, #e6f7f7);
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: #007a7a;
  margin-bottom: 10px;
}

.pricing-range {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #007a7a;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #007a7a;
}

.price-period {
  font-size: 0.9rem;
  color: #666;
}

.pricing-body {
  padding: 30px;
}

.pricing-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 122, 122, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #007a7a;
  font-weight: 500;
}

.pricing-highlight i {
  color: #007a7a;
}

.pricing-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.custom-pricing {
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
}

.custom-pricing-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.custom-info {
  color: white;
  flex: 1;
}

.custom-info h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-info p {
  opacity: 0.9;
  line-height: 1.6;
}

.pricing-features-included {
  text-align: center;
}

.pricing-features-included h3 {
  color: #007a7a;
  margin-bottom: 30px;
  font-size: 1.5rem;
}

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

.included-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.included-feature i {
  color: #007a7a;
  font-size: 1.2rem;
}

.pricing-note {
  color: #666;
  font-style: italic;
  margin-top: 20px;
}

.feature-note {
  font-size: 0.85rem;
  color: #007a7a;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 0;
}

/* Features Section */
.features {
  background: #f8fdfd;
}

.features-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 24px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.tab-button.active,
.tab-button:hover {
  background: #007a7a;
  color: white;
  border-color: #007a7a;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

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

.feature-module {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #007a7a;
}

.feature-module h3 {
  color: #007a7a;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.feature-module ul {
  list-style: none;
}

.feature-module li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  color: #555;
}

.feature-module li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007a7a;
  font-weight: bold;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #007a7a, #00a5a5);
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-check {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
}

.form-message {
  margin-top: 15px;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background: rgba(221, 250, 222, 0.644);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #5b975d;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #f44336;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-brand h3 {
  color: #007a7a;
  margin: 0;
}

.footer-brand p {
  color: #ccc;
  line-height: 1.6;
}

.footer-column h4 {
  color: #007a7a;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #007a7a;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-5px);
  }

  .custom-pricing-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 122, 122, 0.1);
    width: 80%;
    text-align: center;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hamburger {
    display: flex;
  }

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

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

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

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

  .features-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .tab-button {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .features-grid,
  .benefits-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form {
    padding: 30px 20px;
  }

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

  .pricing-header {
    padding: 30px 20px 20px;
  }

  .pricing-body {
    padding: 20px;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .custom-pricing {
    padding: 30px 20px;
  }

  .included-features {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    padding: 80px 0 40px;
  }

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

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

  section {
    padding: 60px 0;
  }

  .about-card,
  .benefit-card,
  .feature-module {
    padding: 25px 20px;
  }

  .contact-info h2 {
    font-size: 2rem;
  }
}

/* Loading States */
.btn-loading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
