* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

section {
  width: 100%;
  height: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(25, 52, 102, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding-top: 10px;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(25, 55, 109, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  transition: transform 0.2s ease;
}

.logo {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  gap: 1rem;
}
.logo img {
  width: 300px;
}

.logo a {
  color: #ff6b35;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu :hover {
  color: #ff6b35;
  font-weight: bold;
}

.cta-button,
.form-button {
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.cta-button:hover,
.form-button:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(25, 55, 109, 1), rgba(0, 0, 0, 0.8)),
    url(../images/background.avif);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: left;
  color: white;
  position: relative;
  span {
    color: #ff6b35;
  }
}

.hero-content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 0;
  opacity: 0.95;
}
.hero #pb {
  display: none;
}

.hero-cta-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.hero-cta-container a {
  width: 100%;
  max-width: 300px;
}

.hero-cta {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 15px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.services,
.benefits,
.testimonials,
.contact {
  padding: 5rem 0;
  background: #f8f9fa;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 1rem;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #194770;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.wrapper-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.wrapper-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #ff6b35;
}

.service-icon {
  font-size: 2rem;
  color: #ff6b35;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.wrapper-card:hover .service-icon {
  font-size: 2.5rem;
}

.wrapper-card h3 {
  color: #194770;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}
.wrapper-card:hover .benefit-icon {
  transform: scale(1.1) rotate(8deg);
}

.wrapper-card p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #ff6b35;
  line-height: 1;
}

.stars {
  color: #ff6b35;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: bold;
  color: #194770;
  margin-top: 1rem;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #194770;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.contact-info {
  padding: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-item:hover {
  background: #ff6b35;
  color: white;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  width: 30px;
  text-align: center;
}

.contact-item:hover i {
  color: white;
}

/* Footer */
.footer {
  background: #194770;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: #ff6b35;
}

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ff6b35;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ff6b35;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1109px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(25, 55, 109, 0.95);
    flex-direction: column;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-cta {
    width: 250px;
    padding: 10px 10px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  .hero-cta-container {
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .hero {
    text-align: center;
    align-items: center;
  }
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 15px;
  left: auto;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: 3000;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .hero {
    p {
      display: none;
    }
    #pb {
      display: block;
      font-size: 20px;
    }
  }
  .hero-cta {
    width: 250px;
    padding: 10px 10px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
  .hero-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
  }
  .container {
    align-items: center;
    max-width: 400px;
    margin: 0;
    padding: 0rem;
  }
  .nav-container {
    padding: 0;
    justify-content: space-around;
  }

  .logo {
    display: flex;
    align-items: center;
    margin: 0;
    max-width: 100%;
    height: auto;

    a {
      font-size: 1.5rem;
    }
  }
  .contact-content {
    grid-template-columns: 1fr;
  }
  .contact-form {
    width: 370px;
    padding: 1rem;
  }
  .contact-item {
    width: 350px;
    gap: 10px;
    padding: 0 rem;
  }
  .form-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .contact-form,
  .contact-item {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .whatsapp-float {
    right: 5px;
    bottom: 10px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}
