* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: block;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f8fbfd;
  color: #1f2d3d;
  font-weight: 400;
}

h1,
h2,
h3,
.brand-title,
.hero-content h1,
.section-heading h2,
.about-content h2,
.contact-card h3,
.contact-form h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-subtitle,
.main-nav a,
.hero-badge,
.section-badge,
p,
label,
input,
textarea,
button,
a,
span {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* NAVEGADOR WEB */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e6eef2;
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eef7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 7px;
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #244a5a;
}

.brand-subtitle {
  font-size: 0.92rem;
  font-weight: 500;
  color: #6e8591;
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
 
  font-size: 0.98rem;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.main-nav ul a:hover {
  color: #5ea3b7;
}

.main-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: #5ea3b7;
  border-radius: 20px;
  transition: width 0.25s ease;
}

.main-nav ul a:hover::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  background: #69aabd;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(105, 170, 189, 0.18);
}

.header-cta:hover {
  background: #5a9aae;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid #d9e7ec;
  border-radius: 12px;
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #244a5a;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.mobile-cta {
  display: none;
}

.desktop-cta {
  display: inline-flex;
}

/* TABLET / MOBILE */
@media (max-width: 980px) {
  .header-inner {
    min-height: 82px;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e4edf1;
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 20px 40px rgba(20, 50, 70, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.28s ease;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .main-nav ul a {
    font-size: 1rem;
  }

  .main-nav ul a::after {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 22px;
    text-align: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100%, 92%);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 60px);
  }

  .brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .brand-subtitle {
    font-size: 0.82rem;
  }

  .main-nav {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .header-cta {
    padding: 12px 18px;
    font-size: 0.94rem;
  }
}

/* ENCABEZADO PRIMERA SECCION */

.hero {
  position: relative;
  padding: 90px 0 70px;
  background:
    linear-gradient(135deg, #f8fbfd 0%, #eef6f9 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: rgba(105, 170, 189, 0.10);
  border-radius: 50%;
  filter: blur(10px);
}

.hero::after {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  background: rgba(36, 74, 90, 0.05);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #eaf5f8;
  border: 1px solid #d7eaef;
  border-radius: 999px;
  color: #5f99ab;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1.08;
  font-weight: 700;
  color: #244a5a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: #5f7280;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #69aabd;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(105, 170, 189, 0.20);
}

.btn-primary:hover {
  background: #5b9caf;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1.5px solid #cfe1e7;
  color: #244a5a;
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: #ffffff;
  border-color: #b8d3dc;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 20px 10px -20px 10px;
  background: linear-gradient(180deg, rgba(105, 170, 189, 0.12), rgba(105, 170, 189, 0.04));
  border-radius: 40px;
  z-index: 1;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 15px;
}

/* TABLET */
@media (max-width: 980px) {
  .hero {
    padding: 70px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero-visual img {
    max-width: 380px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .hero {
    padding: 56px 0 48px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 26px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-width: unset;
  }

  .hero-visual img {
    max-width: 300px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
}







/* SERVICIOS */


.services-section {
  padding: 90px 0;
  background: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #eaf5f8;
  border: 1px solid #d7eaef;
  border-radius: 999px;
  color: #5f99ab;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(1.2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  color: #244a5a;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-heading p {
  font-size: 1.03rem;
  line-height: 1.7;
  color: #5f7280;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: #f8fbfd;
  border: 1px solid #e3edf1;
  border-radius: 24px;
  padding: 30px 24px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  will-change: transform, opacity;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(36, 74, 90, 0.08);
  border-color: #d2e5eb;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #eef7fa;
  border: 1px solid #dbeaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(105, 170, 189, 0.08);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #244a5a;
  margin-bottom: 14px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #5f7280;
}

/* ANIMACIÓN SUAVE PROFESIONAL */
.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

/* TABLET */
@media (max-width: 980px) {
  .services-section {
    padding: 70px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .services-section {
    padding: 56px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading p {
    font-size: 0.98rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .service-card h3 {
    font-size: 1.08rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }
}


/* sobre ella */

.about-section {
  padding: 90px 0;
  background: #f8fbfd;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 56px;
}

.about-image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #eaf4f7;
  border: 1px solid #ddecef;
  box-shadow: 0 20px 45px rgba(36, 74, 90, 0.08);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.about-content h2 {
  font-size: clamp(1.5rem, 4vw, 3.1rem);
  line-height: 1.1;
  font-weight: 700;
  color: #244a5a;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-license {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #6c8b97;
  margin-bottom: 24px;
}

.about-lead {
  font-size: 1.16rem;
  line-height: 1.7;
  color: #35515d;
  font-weight: 500;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5f7280;
  margin-bottom: 16px;
  max-width: 620px;
}

/* ANIMACIONES SUAVES */
.reveal-left,
.reveal-right {
  opacity: 1;
  transform: translateX(0);
}

.js-reveal .reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal .reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-reveal .reveal-left.is-visible,
.js-reveal .reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* TABLET */
@media (max-width: 980px) {
  .about-section {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-image-wrap img {
    min-height: 420px;
  }

  .about-content {
    text-align: center;
  }

  .about-content p,
  .about-lead {
    max-width: 100%;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .about-section {
    padding: 56px 0;
  }

  .about-grid {
    gap: 26px;
  }

  .about-image-wrap {
    border-radius: 22px;
  }

  .about-image-wrap img {
    min-height: 320px;
  }

  .about-license {
    margin-bottom: 18px;
  }

  .about-lead {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .about-content p {
    font-size: 0.96rem;
    line-height: 1.8;
  }
}


/* TESTIMONIOS */


.testimonials-section {
  padding: 90px 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(50% - 12px);
  margin-right: 24px;
  background: #f8fbfd;
  border: 1px solid #e3edf1;
  border-radius: 28px;
  padding: 34px 28px 26px;
  position: relative;
  box-shadow: 0 12px 28px rgba(36, 74, 90, 0.05);
}

.testimonial-card:last-child {
  margin-right: 0;
}

.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: #69aabd;
  opacity: 0.22;
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: Georgia, serif;
}

.testimonial-card p {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  line-height: 1.9;
  color: #4f6470;
  margin-bottom: 22px;
  padding-top: 18px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 1rem;
  color: #244a5a;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.92rem;
  color: #7a919b;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #d9e8ed;
  background: #ffffff;
  color: #244a5a;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.25s ease;
  box-shadow: 0 8px 22px rgba(36, 74, 90, 0.05);
}

.testimonial-arrow:hover {
  background: #69aabd;
  color: #ffffff;
  border-color: #69aabd;
  transform: translateY(-1px);
}

.testimonial-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d4e4ea;
  cursor: pointer;
  transition: all 0.25s ease;
}

.testimonial-dots .dot.active {
  width: 28px;
  border-radius: 999px;
  background: #69aabd;
}
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
}

.testimonials-viewport:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
/* TABLET */
@media (max-width: 980px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonial-card {
    min-width: calc(50% - 10px);
    margin-right: 20px;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .testimonials-section {
    padding: 56px 0;
  }

  .testimonials-slider {
    gap: 10px;
  }

  .testimonial-card {
    min-width: 100%;
    margin-right: 16px;
    border-radius: 22px;
    padding: 28px 20px 22px;
  }

  .testimonial-card p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .quote-mark {
    font-size: 3.2rem;
    top: 14px;
    left: 18px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  
}


/* SECCION DE CONTACTO */




.contact-section {
  padding: 90px 0;
  background: #f8fbfd;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card,
.map-card,
.contact-form {
  background: #ffffff;
  border: 1px solid #e3edf1;
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(36, 74, 90, 0.05);
}

.contact-card {
  padding: 32px 28px;
}

.contact-card h3,
.contact-form h3 {
  font-size: 1.45rem;
  color: #244a5a;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-item {
  margin-bottom: 22px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #69aabd;
  margin-bottom: 8px;
}

.contact-item p {
  font-size: 1rem;
  line-height: 1.8;
  color: #5f7280;
  margin: 0;
}

.contact-item a {
  color: #244a5a;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item a:hover {
  color: #69aabd;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #69aabd;
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(105, 170, 189, 0.18);
}

.contact-wa-btn:hover {
  background: #5b9caf;
  transform: translateY(-1px);
}

.map-card {
  overflow: hidden;
  min-height: 320px;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

.contact-form {
  padding: 32px 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  color: #35515d;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d8e7ec;
  background: #fafdfe;
  border-radius: 16px;
  padding: 15px 16px;
  font-family: inherit;
  font-size: 0.98rem;
  color: #244a5a;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #69aabd;
  box-shadow: 0 0 0 4px rgba(105, 170, 189, 0.12);
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit-btn {
  width: 100%;
  border: none;
  padding: 15px 22px;
  border-radius: 999px;
  background: #69aabd;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 24px rgba(105, 170, 189, 0.18);
}

.form-submit-btn:hover {
  background: #5b9caf;
  transform: translateY(-1px);
}

/* TABLET */
@media (max-width: 980px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-card,
  .contact-form {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .map-card {
    min-height: 260px;
    border-radius: 22px;
  }

  .map-card iframe {
    min-height: 260px;
  }

  .contact-card h3,
  .contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .contact-item p,
  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }
}



.site-footer {
  background: #ffffff;
  border-top: 1px solid #e3edf1;
  padding: 22px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  opacity: 0.95;
}

.footer-copy {
  text-align: center;
}

.footer-copy p {
  margin: 0;
  font-size: 0.92rem;
  color: #6b7f89;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #244a5a;
  border: 1px solid #dbe8ed;
  border-radius: 50%;
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  color: #69aabd;
  border-color: #69aabd;
  background: #f4fafc;
  transform: translateY(-1px);
}

.footer-social a svg {
  width: 19px;
  height: 19px;
  display: block;
}

/* MOBILE */
@media (max-width: 640px) {
  .site-footer {
    padding: 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }

  .footer-brand,
  .footer-social {
    justify-content: center;
  }

  .footer-brand img {
    width: 38px;
    height: 38px;
  }

  .footer-copy p {
    font-size: 0.88rem;
  }
}