/* ══════════════════════════════════════════
   SITI México — Hoja de estilos principal
   Fuente: Quicksand (Google Fonts)
   Colores: #F2871C naranja | #60A917 verde
══════════════════════════════════════════ */

/* ── Variables ─────────────────────────── */
:root {
  --orange:  #F2871C;
  --green:   #003e00;
  --dark:    #1a1a1a;
  --gray-bg: #f7f7f8;
  --gray-txt: #6b7280;
  --border:  #e5e7eb;
  --radius:  16px;
  --nav-h:   72px;
  --shadow:  0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --transition: .25s ease;
}

/* ── Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Quicksand', sans-serif;
  color: #1f2937;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utilidades ─────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green);  }

/* ── Botones ─────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #d9740e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(242,135,28,.35); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--orange);
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-outline:hover { background: var(--orange); color: #fff; }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--orange);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-white:hover { background: #fff3e8; transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; }

/* ══════════════════════════════════════════
   NAVEGACIÓN
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #b8b8b8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  transition: box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow); }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 84px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: #374151;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  background: none; border: none;
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
  cursor: pointer;
}
.nav-link:hover { color: var(--orange); background: #fff4eb; }
.chevron { font-size: .75rem; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: .875rem;
  font-weight: 600;
  color: #374151;
  transition: background var(--transition), color var(--transition);
  cursor: pointer;
}
.dropdown-item:hover { background: #fff4eb; color: var(--orange); }

.nav-cta { margin-left: auto; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-bg); }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #374151; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 8px;
  font-weight: 600;
  font-size: .95rem;
  color: #374151;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--orange); }
.mobile-cta { margin-top: 12px; text-align: center; }

/* ══════════════════════════════════════════
   HERO CARRUSEL
══════════════════════════════════════════ */
#hero {
  position: relative;
  margin-top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
}
.carousel { position: relative; width: 100%; height: 100%; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-in-out;
}
.slide.active .slide-bg {
  transform: scale(1.05);
}
.slide-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 2;
}
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.slide-content h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.slide-content p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(242,135,28,.45);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-hero:hover {
  background: #d9740e;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(242,135,28,.55);
}

/* Botones prev / next */
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.carousel-btn:hover { background: rgba(255,255,255,.35); transform: translateY(-50%) scale(1.08); }
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; align-items: center; gap: 8px;
}
.dot {
  height: 12px; border-radius: 6px;
  background: rgba(255,255,255,.45);
  transition: width .35s ease, background .35s ease;
  width: 12px;
}
.dot.active { background: var(--orange); width: 32px; }

/* ══════════════════════════════════════════
   SECCIONES COMUNES
══════════════════════════════════════════ */
.sec { padding: 96px 0; }
.sec-white { background: #fff; }
.sec-gray  { background: var(--gray-bg); }

.sec-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.sec-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}
.sec-header p { font-size: 1.1rem; color: var(--gray-txt); }
.divider {
  width: 80px; height: 4px;
  border-radius: 4px;
  margin: 16px auto 0;
}
.divider.orange { background: var(--orange); }
.divider.green  { background: var(--green);  }

/* ── Tarjetas 3 columnas (Conoce SITI) ── */
.cards3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 64px; height: 64px;
  background: #fff4eb;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--orange);
}
.card-icon svg { width: 32px; height: 32px; }
.card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.card p  { font-size: .93rem; color: var(--gray-txt); line-height: 1.65; }

/* ── Imágenes 2 col (Conoce SITI) ── */
.imgs2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 20px;
}
.img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.img-wrap:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════
   CARACTERÍSTICAS (TABS)
══════════════════════════════════════════ */
.tab-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  background: #f3f4f6;
  color: #6b7280;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}
.tab-btn:hover { background: #e5e7eb; color: #374151; }
.tab-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: scale(1.04);
}

.tab-panels {
  background: var(--gray-bg);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 48px;
  min-height: 420px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeSlide .3s ease; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.tab-left h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #111827;
}
.feat-list { display: flex; flex-direction: column; gap: 14px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: #374151;
}
.chk {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; min-width: 26px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-top: 1px;
}
.tab-right { display: flex; flex-direction: column; gap: 20px; }
.tab-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
}
.tab-img-wrap img { width: 100%; height: auto; display: block; }

/* ══════════════════════════════════════════
   ADICIONALES
══════════════════════════════════════════ */
.add-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.add-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  border: 1px solid transparent;
}
.add-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.add-orange { background: linear-gradient(135deg, #fff8f0, #fff3e0); border-color: #fde8c8; }
.add-green  { background: linear-gradient(135deg, #f0fff4, #e6ffed); border-color: #bbf7d0; }
.add-img {
  height: 220px;
  overflow: hidden;
}
.add-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.add-card:hover .add-img img { transform: scale(1.05); }
.add-body { padding: 28px 28px 32px; }
.add-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: #111827; }
.add-body p  { font-size: .93rem; color: var(--gray-txt); line-height: 1.65; }

/* ══════════════════════════════════════════
   PRECIOS
══════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  border-radius: 24px;
  border: 2px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #fff;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.p-featured {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.p-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.p-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-txt);
  margin-bottom: 12px;
}
.p-featured .p-label { color: rgba(255,255,255,.75); }

.p-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}
.p-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #111827;
}
.p-featured .p-amount { color: #fff; }
.p-curr {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-txt);
  margin-bottom: 4px;
}
.p-featured .p-curr { color: rgba(255,255,255,.8); }
.p-period {
  font-size: .85rem;
  color: var(--gray-txt);
  margin-bottom: 20px;
}
.p-featured .p-period { color: rgba(255,255,255,.75); }
.p-desc {
  font-size: .93rem;
  color: var(--gray-txt);
  line-height: 1.6;
  margin-bottom: 24px;
}
.p-featured .p-desc { color: rgba(255,255,255,.88); }
.p-features {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.p-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: .93rem; color: #374151;
}
.p-featured .p-features li { color: #fff; }
.chk-green, .chk-white {
  font-size: .8rem;
  font-weight: 700;
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.chk-green { background: var(--green); color: #fff; }
.chk-white { background: rgba(255,255,255,.3); color: #fff; }

/* ══════════════════════════════════════════
   CONTACTO
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.contact-info > p {
  font-size: .95rem;
  color: var(--gray-txt);
  line-height: 1.65;
  margin-bottom: 32px;
}
.cinfo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.cinfo-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cinfo-icon svg { width: 22px; height: 22px; }
.cinfo-icon.orange { background: #fff4eb; color: var(--orange); }
.cinfo-icon.green  { background: #f0fff4; color: var(--green);  }
.cinfo-item strong { font-weight: 700; display: block; margin-bottom: 2px; }
.cinfo-item p  { font-size: .9rem; color: var(--gray-txt); margin: 0; }
.cinfo-item small { font-size: .8rem; color: #9ca3af; }

/* Formulario */
.contact-form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: #374151;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: #1f2937;
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,135,28,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.err {
  font-size: .8rem;
  color: #ef4444;
  min-height: 18px;
  display: block;
}

/* Success */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.success-icon {
  width: 72px; height: 72px;
  background: #dcfce7;
  color: var(--green);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p  { color: var(--gray-txt); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--dark);
  color: #fff;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-logo { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; color: #9ca3af; line-height: 1.65; }

.footer-nav-col h4,
.footer-contact-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a {
  font-size: .9rem;
  color: #9ca3af;
  transition: color var(--transition);
  cursor: pointer;
}
.footer-nav-col a:hover { color: var(--orange); }

.footer-contact-col p,
.footer-contact-col a {
  font-size: .9rem;
  color: #9ca3af;
  margin-bottom: 12px;
  display: block;
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--orange); }
.footer-contact-col small { font-size: .78rem; color: #6b7280; display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .85rem; color: #6b7280; }

/* ══════════════════════════════════════════
   ANIMACIONES (Intersection Observer)
══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tab-panels { padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  #hero { height: calc(100svh - var(--nav-h)); min-height: 480px; }

  .tab-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tab-panels { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .pricing-grid { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 480px) {
  .sec { padding: 64px 0; }
  .cards3 { grid-template-columns: 1fr; }
  .imgs2 { grid-template-columns: 1fr; }
  .add-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}
