
:root{
  --red:#e30613;
  --red-2:#f01b22;
  --dark:#111;
  --text:#222;
  --muted:#5f6368;
  --soft:#f7f7f7;
  --line:#e9e9e9;
  --shadow:0 8px 26px rgba(0,0,0,.07);
  --radius:12px;
  --max:1460px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}
.container{width:min(var(--max),calc(100% - 70px));margin:0 auto}

.site-header{
  height:120px;
  background:#fff;
  border-bottom:1px solid #ededed;
  position:sticky;
  top:0;
  z-index:999;
}
.navbar{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:36px;
}
.brand{
  width:320px;
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.brand img{
  width:305px;
  max-height:95px;
  object-fit:contain;
}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:48px;
  font-weight:700;
  font-size:16px;
}
.nav-links a{
  position:relative;
  padding:43px 0 37px;
}
.nav-links a:hover,
.nav-links a.active{color:var(--red)}
.nav-links a.active:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:23px;
  height:3px;
  background:var(--red);
  border-radius:5px;
}
.phone-btn{
  background:var(--red);
  color:#fff;
  padding:13px 20px;
  border-radius:7px;
  font-weight:800;
  white-space:nowrap;
}
.menu-toggle{
  display:none;
  background:none;
  border:0;
  font-size:30px;
  cursor:pointer;
}

/* ---------- COMMON ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:8px;
  padding:14px 22px;
  font-weight:800;
  border:1.5px solid transparent;
  transition:.2s ease;
}
.btn-primary{background:var(--red);color:#fff}
.btn-primary:hover{background:#c8000b}
.btn-outline{border-color:var(--red);color:#111;background:#fff}
.btn-outline:hover{background:#fff4f4;color:var(--red)}
.btn-whatsapp{
  border-color:#31b867;
  color:#22a253;
  background:#fff;
}
.section-title{
  margin:0;
  font-size:46px;
  line-height:1.06;
  font-weight:900;
  letter-spacing:-1.8px;
}
.section-title .red{color:var(--red)}
.red-rule{
  width:48px;
  height:4px;
  background:var(--red);
  border-radius:10px;
  margin:18px 0 20px;
}
.lead{
  color:#434343;
  line-height:1.55;
  font-size:17px;
}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

/* ---------- HOME HERO ---------- */
.hero{
  background:#fff;
}
.hero-wrap{
  width:100%;
  display:grid;
  grid-template-columns:44% 56%;
  min-height:515px;
}
.hero-copy{
  padding:72px 34px 48px max(52px,calc((100vw - var(--max))/2));
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-copy h1{
  margin:0;
  font-size:52px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-2.2px;
}
.hero-copy h1 .red{color:var(--red)}
.hero-copy p{
  max-width:580px;
  margin:0 0 22px;
  font-size:18px;
  line-height:1.48;
  color:#454545;
}
.hero-actions{display:flex;gap:22px;flex-wrap:wrap}

.hero-art{
  min-height:515px;
  position:relative;
  overflow:hidden;
  background:#efefef;
}
.hero-art .main{
  position:absolute;
  left:8%;
  top:0;
  width:65%;
  height:100%;
  object-fit:cover;
}
.hero-art .side1,
.hero-art .side2,
.hero-art .side3{
  position:absolute;
  right:0;
  width:32%;
  object-fit:cover;
  border-left:7px solid #fff;
}
.hero-art .side1{top:0;height:30%;border-bottom:7px solid #fff}
.hero-art .side2{top:30%;height:33%;border-bottom:7px solid #fff}
.hero-art .side3{bottom:0;height:37%}
.hero-art:before{
  content:"";
  position:absolute;
  z-index:4;
  left:-9%;
  top:-20%;
  width:24%;
  height:150%;
  background:#fff;
  transform:rotate(-16deg);
}
.hero-art:after{
  content:"";
  position:absolute;
  z-index:5;
  right:20%;
  top:-14%;
  width:18%;
  height:140%;
  background:rgba(225,0,10,.72);
  transform:rotate(16deg);
  mix-blend-mode:multiply;
}

/* ---------- HOME FEATURE STRIP ---------- */
.feature-strip{
  padding:18px 0 8px;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.feature-card{
  min-height:132px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  gap:17px;
}
.icon-bubble{
  width:63px;
  height:63px;
  border-radius:50%;
  background:#fff1f1;
  color:var(--red);
  display:grid;
  place-items:center;
  font-size:30px;
  flex:0 0 63px;
}
.feature-card h3{
  margin:0 0 6px;
  font-size:20px;
  line-height:1.14;
}
.feature-card h3 span{color:var(--red)}
.feature-card p{
  margin:0;
  color:#686868;
  font-size:14px;
  line-height:1.4;
}

.contact-strip{
  margin:16px auto 26px;
  padding:17px 28px;
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr auto;
  gap:20px;
  align-items:center;
}
.contact-strip .main-contact{
  display:flex;
  gap:15px;
  align-items:center;
}
.contact-strip strong{
  display:block;
  font-size:16px;
  margin-bottom:4px;
}
.contact-strip small{
  color:#666;
  line-height:1.45;
}
.contact-strip .contact-label{
  color:#111;
  font-weight:800;
}
.contact-strip .contact-number{
  font-weight:800;
  color:#111;
  margin-top:4px;
}
.contact-strip .contact-mail{
  color:var(--red);
  margin-top:3px;
}

/* ---------- INNER HERO ---------- */
.inner-hero{
  min-height:255px;
  display:flex;
  align-items:center;
  background:
    linear-gradient(90deg,#fff 0%,#fff 46%,rgba(255,255,255,.95) 52%,rgba(255,255,255,.35) 70%,rgba(255,255,255,0) 100%),
    url('../img/hero-planta.png') center/cover no-repeat;
}
.inner-hero .container{padding:42px 0}
.inner-hero p{max-width:680px}

/* ---------- ABOUT ---------- */
.about-layout{
  display:grid;
  grid-template-columns:44% 56%;
  min-height:520px;
}
.about-copy{
  padding:52px 42px 38px max(52px,calc((100vw - var(--max))/2));
}
.about-copy p{
  font-size:16px;
  line-height:1.45;
  color:#414141;
  margin:0 0 12px;
}
.about-photo{
  position:relative;
  overflow:hidden;
  min-height:520px;
  background:#eee;
}
.about-photo .main{
  position:absolute;
  left:4%;
  top:0;
  width:70%;
  height:100%;
  object-fit:cover;
}
.about-photo .side1,
.about-photo .side2{
  position:absolute;
  right:0;
  width:29%;
  object-fit:cover;
  border-left:7px solid #fff;
}
.about-photo .side1{top:0;height:43%;border-bottom:7px solid #fff}
.about-photo .side2{bottom:0;height:57%}
.about-photo:before{
  content:"";
  position:absolute;
  z-index:4;
  left:-10%;
  top:-20%;
  width:24%;
  height:150%;
  background:#fff;
  transform:rotate(-14deg);
}
.about-photo:after{
  content:"";
  position:absolute;
  z-index:4;
  right:18%;
  top:-14%;
  width:16%;
  height:140%;
  background:rgba(225,0,10,.68);
  transform:rotate(16deg);
  mix-blend-mode:multiply;
}
.values-wrap{padding:8px 0 44px}
.values-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.value-card{
  padding:20px 22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.value-card h3{
  margin:2px 0 6px;
  color:var(--red);
  font-size:18px;
}
.value-card p{
  margin:0;
  color:#666;
  font-size:14px;
  line-height:1.42;
}

/* ---------- SERVICES ---------- */
.page-section{padding:30px 0 50px}
.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.service-card{
  min-height:145px;
  padding:22px 24px;
  display:grid;
  grid-template-columns:78px 1fr;
  gap:18px;
}
.service-card .icon-bubble{
  width:70px;height:70px;flex-basis:70px;
}
.service-card h3{
  margin:0 0 9px;
  font-size:20px;
  line-height:1.18;
}
.service-card p{
  margin:0;
  color:#666;
  font-size:14px;
  line-height:1.43;
}
.arrow{
  color:var(--red);
  font-size:25px;
  font-weight:900;
  display:inline-block;
  margin-top:5px;
}
.process{margin-top:28px}
.process-title{
  text-align:center;
  font-size:22px;
  margin:0 0 12px;
  position:relative;
}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}
.process-step{
  padding:20px 22px;
  min-height:160px;
  border-right:1px solid #eee;
}
.process-step:last-child{border-right:0}
.step-num{
  display:inline-grid;
  place-items:center;
  width:29px;height:29px;
  border-radius:50%;
  background:var(--red);
  color:#fff;
  font-weight:900;
  font-size:12px;
}
.process-step h4{margin:9px 0 7px;font-size:18px}
.process-step p{margin:0;color:#666;font-size:13px;line-height:1.42}

/* ---------- PRODUCTS ---------- */
.products-head{
  background:linear-gradient(100deg,#f6f7f8,#fff);
  padding:34px 0 12px;
}
.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.product-card{
  min-height:220px;
  overflow:hidden;
  display:grid;
  grid-template-columns:44% 56%;
}
.product-card img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:15px;
  background:#fff;
}
.product-copy{
  padding:27px 19px 20px 14px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.product-copy h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.2;
}
.product-copy h3 span{color:var(--red)}
.product-copy p{
  margin:0;
  color:#666;
  font-size:13px;
  line-height:1.43;
}
.cta-band{
  margin-top:18px;
  min-height:92px;
  background:linear-gradient(90deg,#e30613,#b30008);
  color:#fff;
  border-radius:10px;
  padding:20px 28px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
}
.cta-band h2{font-size:20px;margin:0 0 4px}
.logo-row{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
  margin-top:16px;
}
.logo-box{
  height:86px;
  padding:13px;
  display:grid;
  place-items:center;
}
.logo-box img{max-height:56px;object-fit:contain}

/* ---------- PROJECTS ---------- */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.project-card{
  padding:11px;
}
.project-card img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:9px;
}
.project-card .body{padding:13px 2px 5px}
.project-card h3{
  margin:0 0 9px;
  font-size:17px;
  line-height:1.22;
}
.project-card p{
  margin:0 0 12px;
  color:#666;
  font-size:13px;
  line-height:1.45;
  min-height:58px;
}
.client{
  color:#2376a8;
  font-size:13px;
  font-weight:800;
}
.badge{
  margin-top:10px;
  display:inline-flex;
  color:var(--red);
  background:#fff0f0;
  padding:6px 9px;
  border-radius:7px;
  font-size:12px;
  font-weight:800;
}

/* ---------- CONTACT ---------- */
.contact-page{padding:35px 0 20px}
.contact-layout{
  display:grid;
  grid-template-columns:46% 54%;
  gap:42px;
}
.contact-page h1{font-size:45px}
.contact-page .subhead{
  margin:3px 0 0;
  color:var(--red);
  font-size:27px;
}
.contact-page .lead{font-size:15px}
.contact-form,
.contact-box,
.person-card,
.quick-contact{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.contact-form{padding:22px}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px 18px;
}
.field label{
  display:block;
  margin-bottom:7px;
  font-size:13px;
  font-weight:800;
}
.field input,
.field textarea{
  width:100%;
  border:1px solid #ddd;
  border-radius:7px;
  padding:13px 14px;
  outline:none;
}
.field input:focus,.field textarea:focus{
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(227,6,19,.07);
}
.field.full{grid-column:1/-1}
.field textarea{min-height:125px;resize:vertical}

.contact-person-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.person-card{padding:22px}
.person-card .contact-label{
  font-size:17px;
  font-weight:800;
}
.person-card .phone{
  color:var(--red);
  font-size:19px;
  font-weight:900;
  margin:7px 0 14px;
}
.person-card .mail{
  color:#444;
  font-size:14px;
  margin-bottom:15px;
}
.company-info{margin-top:22px;padding:22px}
.info-line{
  display:flex;
  gap:13px;
  margin:15px 0;
}
.info-line .mini{
  width:39px;height:39px;
  border-radius:50%;
  background:#fff0f0;
  color:var(--red);
  display:grid;
  place-items:center;
  flex:0 0 39px;
}
.info-line strong{display:block;margin-bottom:3px}
.info-line div:last-child{font-size:14px;line-height:1.4}
.quick-contact{
  margin-top:20px;
  padding:18px 20px;
  display:grid;
  grid-template-columns:1.35fr repeat(3,1fr);
  gap:18px;
  align-items:center;
}
.quick-contact a{
  border:1px solid var(--red);
  color:var(--red);
  border-radius:8px;
  text-align:center;
  padding:12px;
  font-weight:800;
}

/* ---------- FOOTER ---------- */
.footer{
  border-top:1px solid #eee;
  background:#fff;
  padding:22px 0;
  margin-top:25px;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}
.footer small{color:#777}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1150px){
  .nav-links{gap:26px}
  .brand{width:250px}.brand img{width:240px}
  .feature-grid{grid-template-columns:repeat(2,1fr)}
  .projects-grid{grid-template-columns:repeat(2,1fr)}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .contact-strip{grid-template-columns:1fr 1fr}
  .logo-row{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .site-header{height:90px}
  .brand{width:auto}.brand img{width:205px;height:70px}
  .phone-btn{display:none}
  .menu-toggle{display:block}
  .nav-links{
    position:absolute;
    left:0;right:0;top:90px;
    display:none;
    flex-direction:column;
    gap:0;
    background:#fff;
    border-top:1px solid #eee;
    box-shadow:0 12px 24px rgba(0,0,0,.08);
  }
  .nav-links.open{display:flex}
  .nav-links a{width:100%;padding:15px 25px}
  .nav-links a.active:after{display:none}
  .hero-wrap,.about-layout,.contact-layout{grid-template-columns:1fr}
  .hero-copy,.about-copy{padding:42px 28px}
  .hero-art,.about-photo{min-height:410px}
  .cards-3{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:1fr 1fr}
  .process-step:nth-child(2){border-right:0}
  .process-step:nth-child(-n+2){border-bottom:1px solid #eee}
  .quick-contact{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .container{width:calc(100% - 28px)}
  .hero-copy h1{font-size:39px}
  .section-title{font-size:36px}
  .feature-grid,
  .projects-grid,
  .products-grid,
  .cards-3,
  .values-grid,
  .contact-person-grid{grid-template-columns:1fr}
  .contact-strip{grid-template-columns:1fr}
  .product-card{grid-template-columns:42% 58%}
  .form-grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
  .process-grid{grid-template-columns:1fr}
  .process-step{border-right:0;border-bottom:1px solid #eee}
  .process-step:last-child{border-bottom:0}
  .quick-contact{grid-template-columns:1fr}
  .cta-band,.footer-row{flex-direction:column;align-items:flex-start}
  .hero-art .main,.about-photo .main{left:0;width:100%}
  .hero-art .side1,.hero-art .side2,.hero-art .side3,
  .about-photo .side1,.about-photo .side2{display:none}
  .hero-art:after,.about-photo:after{right:-35px}
}


/* ===== V3 refinements ===== */
.icon-bubble svg,
.mini svg,
.btn svg,
.phone-btn svg{
  width:28px;height:28px;
  stroke:currentColor;fill:none;stroke-width:1.8;
  stroke-linecap:round;stroke-linejoin:round;
}
.btn svg,.phone-btn svg{width:19px;height:19px}
.mini svg{width:20px;height:20px}

.feature-card,.service-card,.value-card,.project-card,.product-card,.person-card,.contact-box{
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover,.service-card:hover,.value-card:hover,.project-card:hover,.product-card:hover,.person-card:hover,.contact-box:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 32px rgba(0,0,0,.09);
  border-color:#e2e2e2;
}
.service-card{
  position:relative;
  overflow:hidden;
}
.service-card:after{
  content:"";
  position:absolute;
  left:0;top:0;bottom:0;
  width:3px;
  background:var(--red);
  opacity:0;
  transition:.22s ease;
}
.service-card:hover:after{opacity:1}
.service-card .arrow{
  width:34px;height:34px;
  display:grid;place-items:center;
  border-radius:50%;
  background:#fff5f5;
  margin-top:10px;
  transition:.2s ease;
}
.service-card:hover .arrow{background:var(--red);color:#fff;transform:translateX(3px)}

.value-card .icon-bubble{margin-top:1px}
.value-card h3{font-size:19px}
.value-card p{font-size:14px;line-height:1.48}

.contact-strip{
  border-top:3px solid #fff;
}
.contact-strip .contact-item{
  padding-left:18px;
  border-left:1px solid #ececec;
}
.contact-strip .contact-item:first-of-type{border-left:0}

.btn-contact{
  background:var(--red);
  color:#fff;
}
.btn-contact:hover{background:#bd0009}
.btn-whatsapp{
  border:1.5px solid #1db954;
  color:#159447;
  background:#fff;
}
.btn-whatsapp:hover{
  background:#1db954;
  color:#fff;
}

.contact-person-grid .person-card{
  position:relative;
}
.person-card .wa-row{
  display:flex;
  gap:10px;
  margin-top:15px;
}
.person-card .btn{width:100%}

.quick-contact a{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:.2s ease;
}
.quick-contact a:hover{
  background:var(--red);
  color:#fff;
}

.products-head,.inner-hero{
  border-bottom:1px solid #f0f0f0;
}
.logo-box{
  filter:saturate(.95);
  transition:.2s ease;
}
.logo-box:hover{
  transform:translateY(-2px);
  filter:saturate(1.08);
}
.project-card img{transition:transform .3s ease}
.project-card:hover img{transform:scale(1.025)}

@media(max-width:620px){
  .service-card{grid-template-columns:68px 1fr}
  .service-card .icon-bubble{width:60px;height:60px}
  .contact-strip .contact-item{padding-left:0;border-left:0;border-top:1px solid #eee;padding-top:13px}
}


/* ===== V4 CONTACT FIX / POLISH ===== */

/* Evita SVG gigantes o rellenos negros en enlaces y botones */
svg{
  max-width:100%;
}
.quick-contact a svg,
.contact-person-grid .btn svg,
.contact-strip .btn svg,
.site-header .phone-btn svg,
.contact-form .btn svg{
  width:19px !important;
  height:19px !important;
  flex:0 0 19px;
  stroke:currentColor !important;
  fill:none !important;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Contacto */
.contact-page{
  padding:44px 0 26px;
  background:#fff;
}
.contact-layout{
  grid-template-columns:minmax(0,46%) minmax(0,54%);
  gap:38px;
  align-items:start;
}
.contact-intro{
  margin-bottom:18px;
}
.contact-page h1{
  font-size:44px;
  line-height:1;
  margin-bottom:0;
}
.contact-page .subhead{
  font-size:27px;
  line-height:1.18;
  margin:6px 0 0;
}
.contact-page .red-rule{
  margin:16px 0 18px;
}
.contact-page .lead{
  max-width:660px;
  font-size:15px;
  line-height:1.55;
  margin-bottom:18px;
}

.contact-form{
  padding:22px;
  border-radius:14px;
}
.form-grid{
  gap:16px 18px;
}
.field input,
.field textarea{
  background:#fff;
  font-size:14px;
}
.field textarea{
  min-height:135px;
}
.contact-form .btn-primary{
  min-width:205px;
}

.contact-side-title{
  margin:0 0 14px;
  font-size:20px;
}
.contact-person-grid{
  gap:16px;
}
.person-card{
  min-height:190px;
  display:flex;
  flex-direction:column;
  padding:22px;
}
.person-card .contact-label{
  font-size:17px;
}
.person-card .phone{
  font-size:20px;
  margin:8px 0 13px;
}
.person-card .mail{
  margin:0 0 16px;
  font-size:13px;
  overflow-wrap:anywhere;
}
.person-card .btn-whatsapp{
  margin-top:auto;
  min-height:48px;
  gap:8px;
}

.company-info{
  margin-top:18px;
  padding:22px;
  min-height:auto;
}
.company-info h2{
  font-size:20px !important;
  margin-bottom:14px !important;
}
.info-line{
  margin:13px 0;
}
.info-line .mini{
  width:38px;
  height:38px;
  flex:0 0 38px;
}
.info-line div:last-child{
  font-size:13.5px;
}

.quick-contact{
  margin-top:20px;
  padding:18px 20px;
  min-height:95px;
  grid-template-columns:1.45fr 1fr 1fr 1fr;
  gap:16px;
}
.quick-contact .quick-intro strong{
  display:block;
  font-size:16px;
  margin-bottom:4px;
}
.quick-contact .quick-intro small{
  color:#666;
  line-height:1.4;
}
.quick-contact a{
  min-height:48px;
  padding:11px 14px;
  font-size:14px;
  border:1.5px solid var(--red);
  background:#fff;
  color:var(--red);
  border-radius:8px;
}
.quick-contact a:hover{
  background:var(--red);
  color:#fff;
}

/* Header WhatsApp más proporcionado */
.site-header .phone-btn{
  min-width:165px;
  padding:12px 18px;
}

/* Cards generales un poco más limpias */
.person-card,
.contact-box,
.contact-form,
.quick-contact{
  box-shadow:0 8px 24px rgba(0,0,0,.055);
}

@media(max-width:1100px){
  .contact-layout{
    grid-template-columns:1fr;
    gap:28px;
  }
  .quick-contact{
    grid-template-columns:1fr 1fr;
  }
}
@media(max-width:650px){
  .contact-page{
    padding-top:28px;
  }
  .contact-page h1{
    font-size:36px;
  }
  .contact-page .subhead{
    font-size:23px;
  }
  .contact-person-grid{
    grid-template-columns:1fr;
  }
  .quick-contact{
    grid-template-columns:1fr;
  }
  .contact-form{
    padding:17px;
  }
  .contact-form .btn-primary{
    width:100%;
  }
}
