/* 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;
}

.hide-mobile {
  display: block;
}

.hide-desktop {
  display: none;
}

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

/* Header */
.header {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  height: 64px;
}

.contact-info {
  display: flex;
  align-items: center;
  /* Center items vertically */
  justify-content: center;
  /* Center items horizontally */
  gap: 16px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-item {
  display: flex;
  align-items: center;
  /* Center icon and text vertically */
  gap: 8px;
}

.contact-item i {
  color: #0c7a82;
}

.logo h1 {
  font-size: 24px;
  font-weight: bold;
  color: #0c7a82;
  margin: 0;
}

.logo p {
  font-size: 12px;
  color: #6b7280;
  margin: -4px 0 0 0;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
}

.whatsapp-link:hover {
  color: #ea580c;
}

.mail-link {
  color: #0c7a82;
  font-size: 16px;
  text-decoration: none;
}

/* Buttons */
.btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

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

.btn-primary:hover {
  background: #09656b;
}

.btn-secondary {
  background: #ea580c;
  color: #ffffff;
  padding: 12px 32px;
  font-size: 18px;
}

.btn-secondary:hover {
  background: #dc2626;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0c7a82 0%, #0ca2a4 50%, #0c7a82 100%);
  color: #ffffff;
  padding: 80px 0;
}

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

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 24px;
}

.highlight {
  color: #93c5fd;
}

.hero p {
  font-size: 20px;
  color: #e0ffff;
  margin-bottom: 32px;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-contact .contact-item {
  color: #ffffff;
  font-size: 18px;
}

.hero-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 24px;
}

.hero-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-form input {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 16px;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 64px 0;
  background: #f9fafb;
}

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

.feature {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon.blue {
  background: #dbeafe;
}

.feature-icon.orange {
  background: #fed7aa;
}

.feature-icon.green {
  background: #dcfce7;
}

.feature-icon i {
  width: 32px;
  height: 32px;
}

.feature-icon.blue i {
  color: #0c7a82;
}

.feature-icon.orange i {
  color: #ea580c;
}

.feature-icon.green i {
  color: #16a34a;
}

.feature h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.feature p {
  color: #6b7280;
}

/* Services Section */
.services {
  padding: 64px 0;
  background: #ffffff;
}

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

.service-card {
  background: #f9fafb;
  padding: 24px;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background: #dbeafe;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon i {
  width: 24px;
  height: 24px;
  color: #0c7a82;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}

.service-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #0c7a82;
  border-radius: 50%;
}

/* Industries Section */
.industries {
  padding: 64px 0;
  background: #dbeafe;
}

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

.industry-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.industry-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  background: #dbeafe;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.industry-icon i {
  width: 24px;
  height: 24px;
  color: #0c7a82;
}

.industry-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 14px;
  color: #6b7280;
}

/* Numbers Section */
.numbers {
  padding: 64px 0;
  background: #111827;
  color: #ffffff;
}

.numbers .section-header h2 {
  color: #ffffff;
}

.numbers .section-header p {
  color: #9ca3af;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 36px;
  font-weight: bold;
  color: #fb923c;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.4;
}

/* How We Work Section */
.how-we-work {
  padding: 64px 0;
  background: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-icon {
  background: #0c7a82;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 10;
}

.step-icon i {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: #6b7280;
}

/* Projects Section */
.projects {
  padding: 64px 0;
  background: #f9fafb;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.project-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.project-icon {
  background: #dbeafe;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.project-icon i {
  width: 20px;
  height: 20px;
  color: #0c7a82;
}

.project-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.project-header p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.project-card > p {
  color: #374151;
  margin-bottom: 16px;
}

.project-metrics {
  background: #0ca2a4;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

/* Why Choose Section */
.why-choose {
  padding: 64px 0;
  background: #0c7a82;
  color: #ffffff;
}

.why-choose .section-header h2 {
  color: #ffffff;
}

.why-choose .section-header p {
  color: #e0f2f1;
}

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

.reason {
  text-align: center;
}

.reason-icon {
  background: #0ca2a4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.reason-icon i {
  width: 32px;
  height: 32px;
  color: #e0f2f1;
}

.reason h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.reason p {
  font-size: 14px;
  color: #e0f2f1;
}

/* FAQ Section */
.faq {
  padding: 64px 0;
  background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 16px;
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question i {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.2s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
  padding: 0 24px 24px;
}

.faq-answer p {
  color: #6b7280;
  margin: 0;
}

/* Contact Section */
.contact {
  padding: 64px 0;
  background: #f9fafb;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.contact .contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.contact .contact-icon {
  background: #dbeafe;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .contact-icon i {
  width: 24px;
  height: 24px;
  color: #0c7a82;
}

.contact .contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.contact .contact-item p,
.contact .contact-item a {
  color: #6b7280 !important;
  margin: 0;
}

.contact-form {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0c7a82;
  box-shadow: 0 0 0 3px rgba(12, 122, 130, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Footer */
.footer {
  background: #111827;
  color: #ffffff;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 16px;
}

.footer-contact .contact-item {
  margin-bottom: 8px;
}

.footer-contact .contact-item i {
  width: 16px;
  height: 16px;
  color: #0ca2a4;
}

.footer-contact .contact-item span {
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  color: #9ca3af;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal,
.footer-credit {
  font-size: 14px;
  color: #9ca3af;
}

.map-container {
  height: 256px;
  background: #374151;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

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

@media (max-width: 768px) {
  .header-content {
    padding: 4px 0;
    height: auto;
    gap: 4px;
  }

  .hide-mobile {
    display: none;
  }

  .hide-desktop {
    display: block;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 16px; /* Adjust spacing as needed */
  }

  .contact .contact-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-content .contact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    flex-direction: row-reverse;
  }

  .header-content .contact-item-label {
    display: none;
  }

  .hero {
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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

  .hero h1 {
    font-size: 28px;
  }

  .hero-form {
    padding: 16px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .stat-number {
    font-size: 28px;
  }

  .contact-form {
    padding: 24px;
  }
}
