* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

p {
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.top-banner {
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  padding: 10px 0;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-link {
  padding: 10px 16px;
  color: #4B5563;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #1d87d0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: #1d87d0;
  background: #e8f4fd;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.cta-button {
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(29, 135, 208, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 135, 208, 0.4);
  background: linear-gradient(135deg, #0c63d4 0%, #0a51ac 100%);
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  color: #4B5563;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.mobile-link:hover {
  color: #1d87d0;
  background: #e8f4fd;
}

.mobile-link-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  margin-top: 8px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 48px;
  font-size: 1rem;
}

.mobile-link-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 135, 208, 0.3);
}

@media (max-width: 1023px) {
  #mobile-toggle {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#mobile-menu {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 112px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 135, 208, 0.75) 0%, rgba(12, 99, 212, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.95);
  color: #0c63d4;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: white;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: white;
  color: #0c63d4;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  background: #f0f9ff;
}

.hero-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  border: 2px solid white;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.logo img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
}


.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.features-section {
  background: linear-gradient(to bottom, #f0f9ff 0%, #e0f2fe 100%);
}

.feature-box {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-box:hover {
  transform: translateY(-8px);
  border-color: #bae6fd;
  box-shadow: 0 12px 28px rgba(29, 135, 208, 0.15);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  border: 2px solid #bae6fd;
}

.feature-icon i {
  font-size: 32px;
  color: #1d87d0;
}

.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  transform: scale(1.1) rotate(5deg);
  border-color: #1d87d0;
}

.feature-box:hover .feature-icon i {
  color: white;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
}

.feature-text {
  color: #6B7280;
  font-size: 0.9375rem;
}

.about-section {
  background: white;
}

.about-image img {
  box-shadow: 0 20px 50px rgba(29, 135, 208, 0.15);
  transition: all 0.4s ease;
  width: 100%;
  height: auto;
}

.about-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(29, 135, 208, 0.2);
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0c63d4;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 2px solid #bae6fd;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-text {
  font-size: 1.0625rem;
  color: #4B5563;
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-subtext {
  font-size: 1.125rem;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
}

.services-section {
  background: linear-gradient(to bottom, #f9f7f3 0%, #fefdfb 100%);
}

.service-card {
  background: white;
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(29, 135, 208, 0.18);
  border-color: #bae6fd;
}

.service-card.featured {
  border-color: #1d87d0;
  box-shadow: 0 12px 32px rgba(29, 135, 208, 0.2);
}

.service-card.featured:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 48px rgba(29, 135, 208, 0.25);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(29, 135, 208, 0.4);
  z-index: 10;
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(0.85);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
  filter: brightness(0.75);
}

.service-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 16px;
}

.service-description {
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.service-list li {
  padding: 8px 0;
  color: #4B5563;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-list li i {
  color: #1d87d0;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d87d0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: #0c63d4;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

.extra-services-card {
  margin-top: 48px;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border: 2px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.extra-services-card:hover {
  box-shadow: 0 16px 40px rgba(29, 135, 208, 0.15);
  transform: translateY(-4px);
  border-color: #bae6fd;
}

.extra-services-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.extra-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.extra-services-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #1F2937;
  margin-bottom: 16px;
  line-height: 1.2;
}

.extra-services-intro {
  color: #6B7280;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.extra-services-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.extra-services-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4B5563;
  font-weight: 500;
  font-size: 1rem;
}

.extra-services-list li i {
  color: #1d87d0;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.extra-services-button {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  padding: 15px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.0625rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 18px rgba(29, 135, 208, 0.35);
  align-self: flex-start;
}

.extra-services-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(29, 135, 208, 0.45);
  background: linear-gradient(135deg, #0c63d4 0%, #0a51ac 100%);
}

.extra-services-image {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.extra-services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.extra-services-card:hover .extra-services-image img {
  transform: scale(1.08);
}

.cta-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 135, 208, 0.9) 0%, rgba(12, 99, 212, 0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 10;
  padding: 80px 20px;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: white;
  margin-bottom: 40px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

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

.cta-btn-primary {
  background: white;
  color: #0c63d4;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
}

.cta-btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: #f0f9ff;
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.125rem;
  border: 3px solid white;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f0f9ff 100%);
}

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

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid #e0f2fe;
}

.contact-info-item:hover {
  background: #f0f9ff;
  border-color: #bae6fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 135, 208, 0.1);
}

.contact-info-item i {
  font-size: 24px;
  color: #1d87d0;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 4px;
}

.contact-value {
  font-weight: 600;
  color: #1F2937;
  transition: color 0.3s ease;
}

.contact-value:hover {
  color: #1d87d0;
}

.benefits-box {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid #bae6fd;
}

.benefits-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4B5563;
  font-weight: 500;
}

.benefit-item i {
  color: #1d87d0;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(29, 135, 208, 0.12);
  border: 2px solid #e0f2fe;
}

.form-header {
  margin-bottom: 32px;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 8px;
}

.form-subtitle {
  color: #6B7280;
  font-size: 1rem;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: #1F2937;
}

.form-input:focus {
  outline: none;
  border-color: #1d87d0;
  box-shadow: 0 0 0 3px rgba(29, 135, 208, 0.1);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(29, 135, 208, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29, 135, 208, 0.4);
  background: linear-gradient(135deg, #0c63d4 0%, #0a51ac 100%);
}

.form-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid #F3F4F6;
  text-align: center;
}

.form-footer p {
  color: #6B7280;
  margin-bottom: 12px;
}

.form-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d87d0;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.form-phone:hover {
  color: #0c63d4;
  transform: scale(1.05);
}

.footer {
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
  color: #1F2937;
  padding: 80px 0 0;
  border-top: 3px solid #1d87d0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #dee2e6;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1d87d0 0%, #0c63d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-heading-small {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 16px;
}

.footer-text {
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  border: 2px solid #1d87d0;
  border-radius: 50px;
  font-size: 0.875rem;
  color: #0c63d4;
  font-weight: 600;
}

.footer-badge i {
  color: #1d87d0;
}

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

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

.footer-links a {
  color: #4B5563;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 500;
}

.footer-links a:hover {
  color: #1d87d0;
  transform: translateX(4px);
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #4B5563;
}

.footer-contact i {
  color: #1d87d0;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: #4B5563;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #1d87d0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  color: #6B7280;
  font-size: 0.875rem;
  background: transparent;
  margin-top: 24px;
}

.footer-bottom p:first-child {
  margin: 0 0 8px 0;
}

.footer-partner {
  margin: 0;
  font-size: 0.8125rem;
  color: #9CA3AF;
}

.footer-partner-link {
  color: #6B7280;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-partner-link:hover {
  color: #1d87d0;
  border-bottom-color: #1d87d0;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .top-banner {
    padding: 8px 0;
    font-size: 0.8125rem;
  }

  .navbar {
    top: 32px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .hero {
    margin-top: 96px;
    min-height: 65vh;
    padding: 0;
  }

  .hero-content {
    padding: 50px 16px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 1.875rem;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 1rem;
    margin-bottom: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 1.0625rem;
  }

  .features-section,
  .about-section,
  .services-section,
  .contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .features-section .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .feature-box {
    padding: 24px 18px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 14px;
  }

  .feature-icon i {
    font-size: 26px;
  }

  .feature-title {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }

  .feature-text {
    font-size: 0.8125rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .section-heading {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .section-text {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .section-subtext {
    font-size: 1rem;
  }

  .about-image {
    margin-top: 32px;
  }

  .service-card {
    padding: 0;
  }

  .service-image {
    height: 200px;
  }

  .service-content {
    padding: 28px 22px;
  }

  .service-title {
    font-size: 1.375rem;
  }

  .service-description {
    font-size: 0.9375rem;
  }

  .service-badge {
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .extra-services-card {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }

  .extra-services-content {
    padding: 36px 28px;
  }

  .extra-services-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .extra-services-text {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .extra-services-button {
    padding: 13px 28px;
    font-size: 1rem;
  }

  .extra-services-image {
    min-height: 250px;
    order: -1;
  }

  .cta-banner {
    min-height: 400px;
    background-attachment: scroll;
  }

  .cta-content {
    padding: 48px 16px;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .contact-info-item {
    padding: 16px;
  }

  .contact-info-item i {
    font-size: 20px;
  }

  .benefits-box {
    padding: 24px;
    margin-top: 32px;
  }

  .benefits-title {
    font-size: 1.125rem;
    margin-bottom: 16px;
  }

  .contact-form {
    padding: 28px 20px;
    margin-top: 32px;
  }

  .form-title {
    font-size: 1.5rem;
  }

  .form-subtitle {
    font-size: 0.9375rem;
  }

  .form-input {
    padding: 12px 16px;
    font-size: 0.9375rem;
    margin-bottom: 14px;
  }

  .form-submit {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .footer {
    padding: 48px 0 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-heading {
    font-size: 1.25rem;
  }

  .footer-heading-small {
    font-size: 1rem;
  }

  .footer-text {
    font-size: 0.875rem;
  }

  .footer-bottom {
    padding: 20px 0;
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .hero {
    margin-top: 88px;
    min-height: 70vh;
  }

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

  .hero-text {
    font-size: 0.9375rem;
  }

  .features-section .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-box {
    padding: 28px 22px;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }

  .feature-icon i {
    font-size: 30px;
  }

  .feature-title {
    font-size: 1.0625rem;
  }

  .feature-text {
    font-size: 0.875rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit-item {
    font-size: 0.875rem;
  }

  .service-list li {
    font-size: 0.875rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-text {
    font-size: 0.9375rem;
  }

  .extra-services-card {
    margin-top: 32px;
  }

  .extra-services-content {
    padding: 32px 24px;
  }

  .extra-services-title {
    font-size: 1.375rem;
  }

  .extra-services-text {
    font-size: 0.9375rem;
  }

  .extra-services-image {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .top-banner {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  .navbar {
    top: 28px;
  }

  .logo {
    font-size: 1.125rem;
  }

  .hero {
    margin-top: 80px;
    min-height: 65vh;
  }

  .hero-content {
    padding: 40px 16px;
  }

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

  .hero-text {
    font-size: 0.875rem;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

  .section-heading {
    font-size: 1.375rem;
  }

  .feature-box {
    padding: 24px 18px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-icon i {
    font-size: 26px;
  }

  .service-card {
    padding: 0;
  }

  .service-image {
    height: 180px;
  }

  .service-content {
    padding: 24px 18px;
  }

  .cta-title {
    font-size: 1.375rem;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }

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

  .form-title {
    font-size: 1.25rem;
  }

  .form-input {
    padding: 11px 14px;
  }

  .form-submit {
    padding: 13px 24px;
    font-size: 0.9375rem;
  }

  .footer-badges {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-badge {
    width: 100%;
    justify-content: center;
  }

  .extra-services-card {
    margin-top: 28px;
    border-radius: 20px;
  }

  .extra-services-content {
    padding: 28px 20px;
  }

  .extra-services-title {
    font-size: 1.25rem;
  }

  .extra-services-text {
    font-size: 0.875rem;
  }

  .extra-services-button {
    padding: 12px 24px;
    font-size: 0.9375rem;
  }

  .extra-services-image {
    min-height: 200px;
  }
}
