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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  /* width: 100%; */
}

/* Scrollbar */
/* ::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #2563eb, #7c3aed);
} */

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: block;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
  color: #3346e6;
}

.navbar.scrolled .nav-link:hover {
  color: #fbbf24;
}

.navbar.scrolled .logo {
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-container .logo img {
  width: 80px;
  height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
}

.nav-link {
  cursor: pointer;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, #fbbf24, #f97316);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #fbbf24;
}
.nav-link.active {
  color: #fbbf24;
}
.navbar.scrolled .nav-link.active {
  color: #fbbf24;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.navbar.scrolled .menu-toggle span {
  background: #1f2937;
}

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

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

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 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="%23ffffff" fill-opacity="0.1"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("../image/dich-vu-giat-ui-tai-nha-03.jpg");
  mix-blend-mode: overlay;
  opacity: 0.2;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  /* z-index: 1; */
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 80px 0;
  align-items: center;
}

.hero-text {
  color: white;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(to right, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: #dbeafe;
  margin-bottom: 30px;
  max-width: 600px;
}

.quick-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, #fbbf24, #f97316);
  color: white;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
}

.btn-info {
  background: linear-gradient(to right, #2f80ed, #56ccf2);
  color: white;
}

.btn-info:hover {
  transform: scale(1.05);
  color: white;
  box-shadow: 0 20px 40px rgba(36, 204, 251, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

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

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #dbeafe;
  color: #2563eb;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-badge span {
  font-size: 1rem;
}

.section-header h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 16px;
}

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

/* Services */
#services {
  background: linear-gradient(to bottom, white, #eff6ff);
  /* background: url("../image/left.png") center / cover; */
}

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

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s ease;
}
.service-icon .icon-white {
  filter: brightness(0) invert(1);
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(6deg);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #1f2937;
}

.service-card p {
  color: #6b7280;
  line-height: 1.8;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Process */
#process {
  background: linear-gradient(to bottom, #eff6ff, white);
  position: relative;
}

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

.process-step {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #f97316, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
  transition: all 0.5s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1) rotate(12deg);
}

.process-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.process-icon svg {
  color: white;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #1f2937;
}

.process-step p {
  color: #6b7280;
  line-height: 1.8;
}

/* Pricing */
#pricing {
  background: linear-gradient(to bottom, white, #faf5ff);
}

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

.pricing-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(to right, #16a34a, #14b8a6);
  color: white;
  padding: 10px 24px;
  border-radius: 0 30px 0 20px;
  font-weight: 700;
  font-size: 14px;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pricing-icon svg {
  color: #fff100;
}
.pricing-card .pricing-price .price-amount {
  background: linear-gradient(to right, #f97316, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 8px;
  color: #1f2937;
}

.pricing-card .description {
  color: #6b7280;
  font-size: 16px;
}
.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}
.pricing-price {
  margin-bottom: 30px;
}

.price-amount {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(to right, #8b5cf6, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-unit {
  color: #6b7280;
  font-size: 1.125rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  min-height: 320px;
  padding: 0px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #4b5563;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-detail-flex {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: center;
}

.pricing-detail-flex .pricing-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.pricing-detail-table .pricing-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.pricing-detail-table .pricing-item-detail {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f3f4f6;
}
.pricing-detail-table h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 20px;
}
#pricing .modal-content {
  background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
}
#pricing .modal-body .contact-form {
  background: none;
  border-radius: 0;
  box-shadow: none;
}
#pricing .modal-header h4 {
  color: white;
}
#pricing .modal-header a {
  color: white;
  text-decoration: none;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
}
/* Testimonials */

/* Contact */
#contact {
  background: linear-gradient(to bottom, white, #eff6ff);
}

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

.contact-info {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 30px;
  padding: 40px;
  color: white;
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  color: #dbeafe;
  font-size: 14px;
  margin: 0;
}

.contact-form {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 14px;
  background: linear-gradient(to right, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
}

/* Keep checkbox/radio native sizing (used in booking modal option lists) */
.form-group input[type="checkbox"],
.form-group input[type="radio"],
.form-check-input {
  width: 1em;
  height: 1em;
  padding: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
}

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

/* Footer */
footer {
  background: linear-gradient(135deg, #1f2937, #1e3a8a, #581c87);
  color: white;
  padding: 60px 0 30px;
}

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

/* .footer-about {
  grid-column: span 2;
} */

.footer-about h3 {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(to right, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-about p {
  color: #dbeafe;
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.social-icon:hover {
  background: #3b82f6;
  transform: translateY(-3px);
}

.footer-section h4 {
  font-weight: 900;
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #dbeafe;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: #dbeafe;
  font-size: 14px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

/* .back-to-home {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
.back-to-home.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-home:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
} */
/* Icons using Unicode */
.icon {
  font-size: 24px;
}
/* About Section */
.intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.intro .intro-content {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
}
.intro .intro-content div {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
}
.intro .intro-content h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #1f2937;
}
.intro .intro-content p {
  color: #6b7280;
  line-height: 1.8;
}
.intro .intro-content svg {
  color: #fff100;
}
.about-content {
  margin-top: 60px;
  margin-bottom: 60px;
}
.about-content .about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: nowrap;
}
.about-content .about-flex .text-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content .about-flex .text-content p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-content .about-flex .text-content,
.about-content .about-flex .text-image {
  width: 50%;
}
.about-flex .text-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.table th,
.table td {
  white-space: nowrap;
}
#searchTable button.btn.btn-danger.btn-sm {
  display: block;
  padding: 5px;
  border-radius: unset;
}
.commitment {
  margin-top: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  color: white;
}
.commitment h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.commitment p {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #dbeafe;
}

.footer-about {
  grid-column: span 2;
}
.info {
  margin-left: 10px;
  padding: 10px;
}
/* Responsive */
@media (max-width: 768px) {
  .btn.info {
    width: auto;
  }
  .menu-toggle {
    display: flex;
    color: white;
  }
  .navbar.scrolled .menu-toggle {
    color: #3346e6;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);

    transition:
      max-height 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .nav-menu.active {
    max-height: 450px;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

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

  .nav-link {
    color: #3346e6;
  }

  .nav-link:hover {
    color: #fbbf24;
  }

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

  .hero p {
    font-size: 1rem;
  }
  .hero-wave {
    left: 21px;
    width: 90%;
    bottom: -38px;
  }
  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header p {
    font-size: 1rem;
  }

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

  .footer-about {
    grid-column: span 1;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-image {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
  }
  .hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .about-content .about-flex {
    flex-wrap: wrap;
  }
  .about-content .about-flex .text-content,
  .about-content .about-flex .text-image {
    width: 100%;
  }
  .about-flex .text-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .pricing-detail-flex {
    flex-wrap: wrap-reverse;
    gap: 50px;
    align-items: center;
  }
  .pricing-detail-flex .pricing-detail-image,
  .pricing-detail-flex .pricing-detail-table {
    width: 100%;
  }
  .pricing-detail-flex .pricing-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .modal-body .contact-form {
    padding: 0px;
  }
  #contact .contact-form {
    padding: 40px 20px;
  }
  #pricing .modal-header h4 {
    font-size: 1rem;
    font-weight: 700;
  }
  .contact-info h3 {
    font-size: 1.2rem;
  }
  .contact-item h4 {
    font-size: 1rem;
  }
  .contact-form h3 {
    font-size: 1.2rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 16px;
  }
  .about-content .about-flex .text-content h3 {
    font-size: 1.5rem;
  }
  .about-content .about-flex .text-content p {
    font-size: 1rem;
  }
  .commitment h3 {
    font-size: 1.5rem;
  }
  .commitment p {
    font-size: 1rem;
  }
  .pricing-detail-table h3 {
    text-align: center;
  }
  .pricing-card h3 {
    font-size: 1.5rem;
  }
  .price-amount {
    font-size: 1.3rem;
  }
  .nav-container .logo img {
    width: 60px;
    height: 40px;
  }
  .nav-container .logo span {
    font-size: 1.3rem;
  }
  .footer-about h3 {
    font-size: 1.5rem;
  }
  .hero {
    min-height: 210px;
    padding: 84px 0 36px;
  }

  .hero .hero-text h1 {
    font-size: 1.45rem;
    line-height: 1.35;
  }

  .hero .hero-text h1 span {
    font-size: 0.82rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-image {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
  }

  .hero-image:hover {
    transform: scale(1.05);
  }

  .hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
  .pricing-detail-flex .pricing-detail-image {
    width: 70%;
  }

  .pricing-detail-flex .pricing-detail-table {
    width: 30%;
  }
}
