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

:root {
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --blue-800: #1e40af;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-200: #bfdbfe;
  --blue-50: #eff6ff;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --black: #000000;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

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

.header-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--blue-900);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.lang-btn:hover {
  background: var(--gray-100);
}

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-width: 192px;
  padding: 0.5rem 0;
  z-index: 1001;
}

.lang-dropdown.active {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: background 0.3s;
}

.lang-option:hover {
  background: var(--gray-100);
}

.lang-option.active {
  background: var(--blue-50);
  color: var(--blue-900);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.mobile-menu-btn:hover {
  background: var(--gray-100);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--gray-700);
  transition: all 0.3s;
}

.mobile-menu-link:hover {
  background: var(--gray-50);
  color: var(--blue-900);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(30, 58, 138, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.1rem 0.1rem;
  backdrop-filter: blur(3px);
  border-radius: 6999px;
  font-size: 10rem;
  font-weight: 100;
  letter-spacing: 0.5em;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--blue-200);
  margin-bottom: 2rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--gray-300);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--blue-900);
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.hero-cta:hover {
  background: var(--blue-50);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.page-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-title-w {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 96px;
  height: 4px;
  background: linear-gradient(to right, var(--blue-600), var(--blue-400));
  margin: 0 auto;
  border-radius: 9999px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}

.service-card-img {
  position: relative;
  height: 256px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
}

.service-card-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.service-card-subtitle {
  font-size: 0.875rem;
  color: var(--blue-600);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-card-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-900);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.service-card:hover .service-card-link {
  color: var(--blue-700);
}

/* Coverage Section */
.coverage-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-950), var(--gray-900));
  color: var(--white);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coverage-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.coverage-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.coverage-icon {
  width: 48px;
  height: 48px;
  color: var(--blue-400);
  margin-bottom: 1rem;
}

.coverage-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.coverage-description {
  color: var(--blue-200);
}

/* Service Detail Page */
.service-detail-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, var(--white), var(--gray-50));
}

.service-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .service-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-type-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-type-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-type-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  color: white;
}

.service-type-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
}

.service-type-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-type-description {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 1rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-950));
  color: var(--white);
}

.features-section-white {
  padding: 6rem 0;
  background: #e9e8e8;
  color: var(--black);
}

.features-description-white {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.features-section-white p{
  color: #4c4b4b;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.features-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.features-description {
  font-size: 1.125rem;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--blue-400);
}

.features-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.features-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--blue-900);
  color: var(--white);
  border-radius: 0.5rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.cta-btn:hover {
  background: var(--blue-800);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--gray-900), var(--blue-950), var(--gray-900));
  color: var(--white);
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-section-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--blue-300);
}

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

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--white);
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-item-icon {
  width: 16px;
  height: 16px;
  color: var(--blue-400);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Icons */
.icon, .icon-lg, .icon-sm, .coverage-icon, .feature-icon {
  display: inline-block;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon {
  width: 24px;
  height: 24px;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

.service-card-icon svg {
  color: white;
  width: 32px;
  height: 32px;
}

.coverage-icon {
  width: 48px;
  height: 48px;
  color: #60a5fa; /* blue-400 */
  margin-bottom: 1rem;
}

.footer-item-icon {
  width: 16px;
  height: 16px;
  color: #60a5fa; /* blue-400 */
  margin-top: 4px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: #60a5fa; /* blue-400 */
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .lg-hidden {
    display: none;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background:
    linear-gradient(
      135deg,
      #08142f,
      #0b1f54
    );

  color: white;

  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 3rem;

  margin-bottom: 3rem;
}

@media (max-width: 1024px) {

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  width: 160px;

  margin-bottom: 1rem;

  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255,255,255,0.6);

  line-height: 1.8;

  font-size: .95rem;
}

.footer-section-title {
  color: white;

  margin-bottom: 1.2rem;

  font-weight: 700;
}

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

.footer-list li {
  margin-bottom: .9rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);

  transition: all .3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-item,
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;

  color: rgba(255,255,255,0.7);
}

.footer-item-icon {
  width: 16px;
  height: 16px;

  margin-top: 4px;

  color: var(--blue-400);

  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

  padding-top: 2rem;

  text-align: center;

  color: rgba(255,255,255,0.5);

  font-size: .9rem;
}

/* =========================================================
   ICONS
========================================================= */

.icon,
.icon-lg,
.feature-icon,
.footer-item-icon {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon {
  width: 22px;
  height: 22px;
}

.icon-lg {
  width: 32px;
  height: 32px;
}

/* =========================================================
   HEADER RESPONSIVE FIX - FINAL
========================================================= */

.header {
  height: auto;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 86px;

  max-width: 1280px;
  margin: 0 auto;

  padding: 0 1.2rem;

  gap: 1rem;
}

/* =========================================================
   LOGO
========================================================= */

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  display: block;

  height: 72px;
  width: auto;

  max-width: none;

  object-fit: contain;

  transition: all .3s ease;

  image-rendering: -webkit-optimize-contrast;
}

/* =========================================================
   NAVIGATION
========================================================= */

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;

  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1025px) {

  .nav-links {
    display: flex;
  }
}

.nav-link {
  color: var(--gray-700);

  font-weight: 500;

  transition: color .3s ease;
}

.nav-link:hover {
  color: var(--blue-900);
}

/* =========================================================
   ACTIONS
========================================================= */

.header-actions {
  display: flex;
  align-items: center;
  gap: .8rem;

  flex-shrink: 0;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: .5rem;

  padding: .45rem .7rem;

  border: none;
  border-radius: .6rem;

  background: transparent;

  cursor: pointer;

  transition: background .3s ease;
}

.lang-btn:hover {
  background: var(--gray-100);
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: .45rem;

  border: none;
  border-radius: .6rem;

  background: transparent;

  cursor: pointer;

  transition: background .3s ease;
}

.mobile-menu-btn:hover {
  background: var(--gray-100);
}

@media (min-width: 1025px) {

  .mobile-menu-btn {
    display: none;
  }
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  display: none;

  background: rgba(255,255,255,0.98);

  backdrop-filter: blur(18px);

  border-top: 1px solid rgba(0,0,0,0.06);

  padding: .5rem 0;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-link {
  display: block;

  padding: 1rem 1.3rem;

  font-size: 1rem;

  color: var(--gray-700);

  border-bottom: 1px solid rgba(0,0,0,0.04);

  transition: all .3s ease;
}

.mobile-menu-link:hover {
  background: var(--gray-50);

  color: var(--blue-900);
}

/* =========================================================
   FOOTER RESPONSIVE FIX
========================================================= */

.footer {
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #08142f,
      #0b1f54
    );

  color: white;

  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 3rem;

  margin-bottom: 3rem;
}

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

/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-brand img {
  display: block;

  height: 80px;
  width: auto;

  max-width: none;

  object-fit: contain;

  margin-bottom: 1rem;

  filter: brightness(0) invert(1);

  image-rendering: -webkit-optimize-contrast;
}

.footer-tagline {
  color: rgba(255,255,255,0.65);

  line-height: 1.8;

  font-size: .95rem;
}

.footer-section-title {
  color: white;

  margin-bottom: 1.2rem;

  font-weight: 700;
}

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

.footer-list li {
  margin-bottom: .9rem;
}

.footer-link {
  color: rgba(255,255,255,0.7);

  transition: color .3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-item,
.footer-contact-item {
  display: flex;
  align-items: flex-start;

  gap: .7rem;

  color: rgba(255,255,255,0.7);
}

.footer-item-icon {
  width: 16px;
  height: 16px;

  margin-top: 4px;

  color: var(--blue-400);

  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

  padding-top: 2rem;

  text-align: center;

  color: rgba(255,255,255,0.5);

  font-size: .9rem;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

  .header-nav {
    min-height: 78px;

    padding: 0 1rem;
  }

  .header-logo img {
    height: 64px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 2.5rem;
  }

  .footer-brand img {
    height: 72px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .header-nav {
    min-height: 72px;

    padding: 0 .8rem;
  }

  .header-logo img {
    height: 56px;
  }

  .header-actions {
    gap: .4rem;
  }

  .lang-btn {
    padding: .35rem .5rem;
  }

  .lang-btn .icon {
    width: 18px;
    height: 18px;
  }

  .mobile-menu-btn .icon {
    width: 22px;
    height: 22px;
  }

  .footer {
    padding: 3.5rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;

    gap: 2.2rem;

    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand img {
    height: 64px;
  }

  .footer-item,
  .footer-contact-item {
    justify-content: center;
  }

  .footer-list {
    padding: 0;
  }

  .footer-tagline {
    max-width: 280px;
  }
}

/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 480px) {

  .header-nav {
    min-height: 68px;
  }

  .header-logo img {
    height: 50px;
  }

  .lang-btn span:last-child {
    display: none;
  }

  .footer-brand img {
    height: 56px;
  }

  .footer-bottom {
    font-size: .8rem;
  }
}

/* =========================================================
   GLOBAL SVG ICON FIX
========================================================= */

svg {
  display: block;
}

/* ICONOS GENERALES */
.icon,
.icon-sm,
.icon-lg,
.feature-icon,
.footer-item-icon,
.coverage-icon,
.service-card-icon svg,
.service-type-icon svg {
  stroke: currentColor;

  stroke-width: 2;

  stroke-linecap: round;
  stroke-linejoin: round;

  fill: none;

  flex-shrink: 0;
}

/* =========================================================
   HEADER ICONS
========================================================= */

.icon {
  width: 22px;
  height: 22px;
}

.mobile-menu-btn .icon {
  width: 24px;
  height: 24px;
}

.lang-btn .icon {
  width: 18px;
  height: 18px;
}

/* =========================================================
   SERVICE TYPE ICONS
========================================================= */

.service-type-icon {
  width: 74px;
  height: 74px;

  border-radius: 20px;

  background: linear-gradient(
    135deg,
    var(--blue-600),
    var(--blue-900)
  );

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  flex-shrink: 0;

  box-shadow:
    0 10px 30px rgba(37,99,235,.25);
}

.service-type-icon svg {
  width: 34px;
  height: 34px;

  color: white;

  stroke-width: 1.8;
}

/* =========================================================
   FEATURE LIST ICONS
========================================================= */

.feature-item {
  display: flex;
  align-items: center;

  gap: .75rem;
}

.feature-icon {
  width: 20px;
  height: 20px;

  color: var(--blue-500);

  stroke-width: 3;

  flex-shrink: 0;
}

/* =========================================================
   COVERAGE ICONS
========================================================= */

.coverage-icon {
  width: 48px;
  height: 48px;

  color: var(--blue-400);

  margin-bottom: 1rem;

  stroke-width: 2;
}

/* =========================================================
   FOOTER ICONS
========================================================= */

.footer-item-icon {
  width: 18px;
  height: 18px;

  color: var(--blue-400);

  margin-top: 2px;

  stroke-width: 2;
}

/* =========================================================
   SERVICE CARD ICONS
========================================================= */

.service-card-icon {
  width: 56px;
  height: 56px;

  border-radius: 14px;

  background: rgba(255,255,255,.18);

  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-icon svg {
  width: 28px;
  height: 28px;

  color: white;

  stroke-width: 2;
}

/* =========================================================
   MOBILE OPTIMIZATION
========================================================= */

@media (max-width: 768px) {

  .service-type-icon {
    width: 66px;
    height: 66px;
  }

  .service-type-icon svg {
    width: 30px;
    height: 30px;
  }

  .coverage-icon {
    width: 40px;
    height: 40px;
  }

  .service-card-icon {
    width: 50px;
    height: 50px;
  }

  .service-card-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================================
   WHATSAPP FLOAT BUTTON
========================================================= */

.whatsapp-float {
  position: fixed;

  right: 24px;
  bottom: 24px;

  width: 64px;
  height: 64px;

  border-radius: 50%;

  background: linear-gradient(
135deg,
#123da1,
#051131
);


  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 30px rgba(76, 71, 101, 0.35);

  z-index: 9999;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);

  box-shadow:
    0 16px 40px rgba(37,211,102,.45);

  background: #20ba5a;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;

  fill: currentColor;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .whatsapp-float {
    width: 58px;
    height: 58px;

    right: 18px;
    bottom: 18px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 480px) {

  .whatsapp-float {
    width: 54px;
    height: 54px;

    right: 14px;
    bottom: 14px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}