/* =============================================
   ЗМІННІ
============================================= */
:root {
  --p:  #2d1b69;
  --pd: #1a0f3d;
  --pl: #3d2b82;
  --y:  #f5b800;
  --yd: #e0a800;
  --g:  #3cb043;
  --gd: #2d8a33;
  --w:  #ffffff;
  --gr: #f5f5f8;
  --gc: #666666;
  --t:  #222222;
  --sh: 0 2px 12px rgba(0,0,0,0.08);
  --sh2:0 6px 30px rgba(0,0,0,0.14);
  --r:  6px;
  --tr: all 0.25s ease;
}

/* =============================================
   RESET + BASE
============================================= */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--t);
  line-height:1.7;
  background:#fff;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit;transition:var(--tr)}
ul{list-style:none}
img{max-width:100%;display:block;height:auto}
button{cursor:pointer;font-family:inherit;border:none;background:none}
input,select,textarea{font-family:inherit}

.if-wrap{max-width:1280px;margin:0 auto;padding:0 40px}

/* =============================================
   HEADER — ВЕРХНЯ ФІОЛЕТОВА ПАНЕЛЬ
============================================= */
.ih{position:sticky;top:0;z-index:9999;box-shadow:0 2px 15px rgba(0,0,0,0.2)}

/* Топбар */
.ih-top{background:var(--p);padding:0 40px}
.ih-top-in{
  max-width:1280px;margin:0 auto;
  display:flex;align-items:center;
  justify-content:space-between;
  height:110px;gap:15px;
}

/* Адреса */
.ih-addr{
  display:flex;align-items:flex-start;gap:8px;
  color:#fff;font-size:13px;line-height:1.5;
  min-width:165px;flex-shrink:0;
}
.ih-addr-ico{margin-top:3px;flex-shrink:0}
.ih-addr-txt{display:flex;flex-direction:column}

/* Соцмережі — 3 квадрати */
.ih-socials{display:flex;gap:8px;flex-shrink:0}
.ih-sq{
  display:flex;align-items:center;justify-content:center;
  width:40px;height:40px;
  background:rgba(255,255,255,0.15);
  border-radius:5px;
  transition:var(--tr);
}
.ih-sq:hover{background:var(--y)}

/* Логотип */
.ih-logo{flex-shrink:0}
.ih-logo-wrap{display:flex;align-items:center;gap:12px}
.ih-logo-txt{display:flex;flex-direction:column}
.ih-logo-l1{color:var(--y);font-weight:800;font-size:15px;line-height:1.3}
.ih-logo-l2,.ih-logo-l3{color:#fff;font-weight:700;font-size:14px;line-height:1.3}

/* Право */
.ih-right{display:flex;align-items:center;gap:14px;flex-shrink:0}

/* Кнопка ЗАПИС ОНЛАЙН */
.ih-booking-btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 20px;
  background:#fff;color:var(--p);
  border:2px solid #fff;border-radius:var(--r);
  font-weight:800;font-size:13px;
  letter-spacing:0.5px;text-transform:uppercase;
  white-space:nowrap;transition:var(--tr);
}
.ih-booking-btn:hover{background:var(--y);border-color:var(--y);color:var(--p)}

/* Телефони — жовтий блок */
.ih-phones{
  display:flex;flex-direction:column;gap:4px;
  background:var(--y);
  padding:12px 18px;
  border-radius:var(--r);
  min-width:188px;
}
.ih-phones a{
  display:block;
  color:var(--p);font-weight:800;font-size:16px;
  line-height:1.35;letter-spacing:0.3px;
}
.ih-phones a:hover{color:var(--pd)}

/* =============================================
   НАВІГАЦІЯ — БІЛА ПАНЕЛЬ
============================================= */
.ih-nav{
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.10);
}
.ih-nav-in{
  max-width:1280px;margin:0 auto;
  padding:0 40px;
  display:flex;align-items:center;
}
/* ГОЛОВНЕ МЕНЮ */
.ih-nav-list{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  margin:0;padding:0;
  list-style:none;
}
.ih-nav-list>li>a{
  display:block;
  padding:22px 16px;
  font-size:13.5px;font-weight:800;
  letter-spacing:1.2px;text-transform:uppercase;
  color:#222;
  position:relative;
  transition:color 0.2s;
}
.ih-nav-list>li>a::after{
  content:'';position:absolute;bottom:0;left:0;
  width:0;height:3px;background:var(--p);
  transition:width 0.25s;
}
.ih-nav-list>li>a:hover,
.ih-nav-list>li.current-menu-item>a{color:var(--p)}
.ih-nav-list>li>a:hover::after,
.ih-nav-list>li.current-menu-item>a::after{width:100%}

/* Кнопка "ЗАПИС ОНЛАЙН" в меню */
.ih-nav-list>li.menu-item-cta>a{
  background:var(--y);color:var(--p);
  padding:10px 20px;border-radius:var(--r);
  margin:10px 0;
}
.ih-nav-list>li.menu-item-cta>a::after{display:none}

/* Бургер */
.ih-burger{
  display:none;flex-direction:column;gap:5px;
  padding:10px;margin-left:auto;
}
.ih-burger span{
  display:block;width:25px;height:2px;
  background:var(--p);border-radius:2px;
  transition:var(--tr);
}
.ih-burger.on span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.ih-burger.on span:nth-child(2){opacity:0}
.ih-burger.on span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* Мобільне меню */
.ih-mobile{position:fixed;inset:0;z-index:8888;pointer-events:none}
.ih-mobile.on{pointer-events:all}
.ih-mobile-bg{
  position:absolute;inset:0;background:rgba(0,0,0,0.5);
  opacity:0;transition:opacity 0.3s;
}
.ih-mobile.on .ih-mobile-bg{opacity:1}
.ih-mobile-panel{
  position:absolute;top:0;left:-290px;
  width:280px;height:100%;background:#fff;
  padding:20px;overflow-y:auto;
  transition:left 0.3s ease;
  box-shadow:var(--sh2);
}
.ih-mobile.on .ih-mobile-panel{left:0}
.ih-mobile-close{
  display:block;margin-left:auto;margin-bottom:20px;
  font-size:22px;color:var(--p);padding:5px;
}
.ih-mobile-list{margin-bottom:20px}
.ih-mobile-list li a{
  display:block;padding:14px 0;
  border-bottom:1px solid #eee;
  font-weight:700;font-size:15px;color:var(--t);
}
.ih-mobile-list li a:hover{color:var(--p)}
.ih-mobile-phones{display:flex;flex-direction:column;gap:10px;margin-top:20px}
.ih-mobile-phones a{color:var(--p);font-weight:800;font-size:16px}

/* =============================================
   HERO
============================================= */
.if-hero{
  position:relative;
  background:#0d0824;
  min-height:580px;
}
.if-hero-bg{
  position:absolute;inset:0;
  background-image:url('../images/hero-bg.jpg');
  background-size:cover;background-position:center 30%;
  opacity:0.45;
}
.if-hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(20,10,55,0.85) 0%,rgba(10,5,30,0.5) 100%);
}
.if-hero-content{
  position:relative;z-index:1;
  padding:60px 0 0;
}
.if-hero-content .if-wrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
}
/* Ліва частина */
.if-hero-left{flex:1;color:#fff;padding-bottom:30px}
.if-hero-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,4vw,54px);
  font-weight:800;line-height:1.1;
  text-transform:uppercase;
  margin-bottom:20px;
}
.if-hero-yellow{color:var(--y)}
.if-hero-sub{
  font-size:17px;opacity:.9;margin-bottom:30px;
}
.if-hero-btn{
  display:inline-flex;
  align-items:center;justify-content:center;
  padding:16px 30px;
  background:var(--g);color:#fff;
  border-radius:4px;
  font-size:14px;font-weight:800;
  letter-spacing:1px;text-transform:uppercase;
  transition:var(--tr);margin-bottom:30px;
}
.if-hero-btn:hover{background:var(--gd);color:#fff;transform:translateY(-2px)}
.if-hero-tags{display:flex;flex-wrap:wrap;gap:10px}
.if-tag{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 14px;border-radius:4px;
  font-size:13px;font-weight:600;color:#fff;
}
.if-tag-green{background:var(--g)}

/* Права частина — картка */
.if-hero-right{flex-shrink:0;width:260px}
.if-hero-card{
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:12px;
  padding:25px;
  color:#fff;
  text-align:center;
}
.if-avatar-circle{
  width:70px;height:70px;
  background:var(--y);color:var(--p);
  border-radius:50%;display:flex;
  align-items:center;justify-content:center;
  font-size:22px;font-weight:800;
  margin:0 auto 12px;
}
.if-hero-name{font-size:16px;font-weight:700;margin-bottom:5px}
.if-hero-pos{font-size:12px;opacity:.8;line-height:1.4;margin-bottom:20px}
.if-hero-stats{
  display:grid;grid-template-columns:1fr 1fr;
  gap:10px;margin-bottom:18px;
}
.if-stat strong{display:block;font-size:20px;font-weight:800;color:var(--y)}
.if-stat span{font-size:11px;opacity:.8}
.if-hero-phone{
  display:flex;align-items:center;justify-content:center;gap:6px;
  color:var(--y);font-weight:700;font-size:14px;
  margin-bottom:8px;
}
.if-hero-phone:hover{color:#fff}

/* Жовта смужка */
.if-hero-badges{
  position:relative;z-index:1;
  background:var(--y);
  padding:14px 0;
  margin-top:40px;
}
.if-badges-row{
  display:flex;align-items:center;
  justify-content:space-around;gap:20px;
  flex-wrap:wrap;
}
.if-badge{
  font-size:13px;font-weight:700;color:var(--p);
  letter-spacing:.5px;
}

/* =============================================
   ЗАГАЛЬНІ СЕКЦІЇ
============================================= */
.if-section{padding:80px 0;background:#fff}
.if-section--purple{background:var(--p)}
.if-section--gray{background:var(--gr)}

.if-sec-head{text-align:center;margin-bottom:50px}
.if-sec-head h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,38px);
  font-weight:700;color:var(--p);
  margin-bottom:10px;
  position:relative;display:inline-block;
}
.if-sec-head h2::after{
  content:'';display:block;
  width:60px;height:3px;
  background:var(--y);
  margin:12px auto 0;
}
.if-sec-head p{color:var(--gc);font-size:16px}
.if-sec-head--white h2{color:#fff}
.if-sec-head--white h2::after{background:var(--y)}
.if-sec-head--white p{color:rgba(255,255,255,.8)}

/* =============================================
   ПОСЛУГИ
============================================= */
.if-svcs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.if-svc-card{
  background:#fff;
  border:1px solid #e8e8f0;
  border-radius:var(--r);
  padding:26px 22px;
  box-shadow:var(--sh);
  transition:var(--tr);
  display:flex;flex-direction:column;
}
.if-svc-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--sh2);
  border-color:var(--p);
}
.if-svc-icon{font-size:36px;margin-bottom:14px}
.if-svc-card h3{
  font-size:15px;font-weight:700;
  color:var(--p);margin-bottom:10px;line-height:1.35;
}
.if-svc-card p{
  font-size:13px;color:var(--gc);
  line-height:1.6;flex:1;margin-bottom:16px;
}
.if-svc-card a{
  color:var(--g);font-weight:700;font-size:13px;
  margin-top:auto;transition:var(--tr);
}
.if-svc-card a:hover{color:var(--p);letter-spacing:.3px}

/* =============================================
   ЯК МИ ПРАЦЮЄМО
============================================= */
.if-steps{
  display:flex;align-items:flex-start;
  justify-content:space-between;gap:0;
}
.if-step{
  flex:1;text-align:center;padding:0 20px;color:#fff;
}
.if-step-num{
  width:60px;height:60px;
  background:var(--y);color:var(--p);
  border-radius:50%;display:flex;
  align-items:center;justify-content:center;
  font-size:24px;font-weight:800;
  margin:0 auto 18px;
}
.if-step h3{font-size:16px;margin-bottom:10px;font-weight:700}
.if-step p{font-size:13px;opacity:.85;line-height:1.6}
.if-step-arr{
  color:var(--y);font-size:28px;
  margin-top:18px;flex-shrink:0;
}

/* =============================================
   ЦІНИ
============================================= */
.if-prices-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.if-price-card{
  background:#fff;
  border:1px solid #e8e8f0;
  border-radius:var(--r);
  padding:28px 22px;
  box-shadow:var(--sh);
  display:flex;flex-direction:column;
  transition:var(--tr);
}
.if-price-card:hover{box-shadow:var(--sh2);transform:translateY(-4px)}
.if-price-icon{font-size:36px;margin-bottom:14px}
.if-price-card h3{
  font-size:15px;font-weight:700;color:var(--p);
  margin-bottom:12px;line-height:1.35;
}
.if-price-val{
  font-size:22px;font-weight:800;color:var(--p);
  margin-bottom:5px;
}
.if-price-time{
  font-size:12px;color:var(--gc);margin-bottom:18px;
}
.if-price-card ul{
  flex:1;display:flex;flex-direction:column;gap:7px;
  margin-bottom:22px;
}
.if-price-card li{font-size:13px;color:#444}
.if-price-btn{
  display:flex;align-items:center;justify-content:center;
  padding:13px;
  background:var(--p);color:#fff;
  border-radius:var(--r);
  font-size:14px;font-weight:800;
  text-transform:uppercase;letter-spacing:.5px;
  transition:var(--tr);
  margin-top:auto;
}
.if-price-btn:hover{background:var(--pl);color:#fff}

/* =============================================
   ДОКУМЕНТИ
============================================= */
.if-docs-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.if-doc-card{
  background:#fff;
  border:1px solid #e8e8f0;
  border-radius:var(--r);
  padding:26px 22px;
  text-align:center;
  box-shadow:var(--sh);
  transition:var(--tr);
}
.if-doc-card:hover{box-shadow:var(--sh2);transform:translateY(-4px)}
.if-doc-icon{font-size:40px;margin-bottom:14px}
.if-doc-card h3{font-size:14px;font-weight:700;color:var(--p);margin-bottom:10px;line-height:1.4}
.if-doc-card p{font-size:13px;color:var(--gc);line-height:1.5}

/* =============================================
   ВІДГУКИ
============================================= */
.if-reviews-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.if-review{
  background:var(--gr);
  border-radius:var(--r);
  padding:24px;
  border-left:4px solid var(--y);
}
.if-review-top{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.if-review-ava{
  width:44px;height:44px;
  background:var(--p);color:#fff;
  border-radius:50%;display:flex;
  align-items:center;justify-content:center;
  font-weight:800;font-size:16px;flex-shrink:0;
}
.if-review-name{font-size:14px;font-weight:700}
.if-review-stars{color:var(--y);font-size:14px}
.if-review p{font-size:13px;color:#444;line-height:1.65;font-style:italic}

/* =============================================
   FAQ
============================================= */
.if-faq{max-width:800px;margin:0 auto}
.if-faq-item{
  border:1px solid #e0e0ee;
  border-radius:var(--r);
  margin-bottom:10px;
  overflow:hidden;
}
.if-faq-q{
  width:100%;display:flex;
  align-items:center;justify-content:space-between;
  padding:18px 22px;
  font-size:15px;font-weight:700;color:var(--t);
  background:#fff;cursor:pointer;
  text-align:left;gap:10px;
  transition:var(--tr);
}
.if-faq-q:hover{background:var(--gr);color:var(--p)}
.if-faq-item.open .if-faq-q{background:var(--p);color:#fff}
.if-faq-arr{font-size:12px;flex-shrink:0;transition:transform .25s}
.if-faq-item.open .if-faq-arr{transform:rotate(180deg)}
.if-faq-a{
  padding:18px 22px;
  background:#fff;
  font-size:14px;color:#444;line-height:1.7;
  border-top:1px solid #eee;
}
.if-faq-a[hidden]{display:none}

/* =============================================
   КАРТА
============================================= */
.if-map{padding:80px 0;background:var(--gr)}
.if-map-grid{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:40px;
  align-items:start;
}
.if-map-contacts h3{
  font-size:22px;font-weight:700;color:var(--p);
  margin-bottom:25px;
}
.if-contact-item{
  display:flex;flex-direction:column;gap:3px;
  margin-bottom:18px;
}
.if-contact-item strong{
  font-size:12px;letter-spacing:1px;
  text-transform:uppercase;color:var(--p);
  margin-bottom:4px;
}
.if-contact-item span,
.if-contact-item a{font-size:14px;color:#444;line-height:1.6}
.if-contact-item a:hover{color:var(--p)}
.if-maps-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:13px 22px;
  background:var(--y);color:var(--p);
  border-radius:var(--r);
  font-size:13px;font-weight:800;
  letter-spacing:.5px;text-transform:uppercase;
  transition:var(--tr);margin-top:10px;
}
.if-maps-btn:hover{background:var(--yd)}
.if-map-iframe{border-radius:var(--r);overflow:hidden;box-shadow:var(--sh2)}

/* =============================================
   ФОРМА ЗАПИСУ
============================================= */
.if-form-section{
  background:var(--p);
  padding:80px 0;
}
.if-form{max-width:760px;margin:0 auto}
.if-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;margin-bottom:16px;
}
.if-form-group{display:flex;flex-direction:column}
.if-form-group--full{margin-bottom:16px}
.if-form-group input,
.if-form-group select,
.if-form-group textarea{
  width:100%;padding:14px 16px;
  background:rgba(255,255,255,0.08);
  border:2px solid rgba(255,255,255,0.2);
  border-radius:var(--r);
  font-size:15px;color:#fff;
  transition:var(--tr);
}
.if-form-group input::placeholder,
.if-form-group select::placeholder,
.if-form-group textarea::placeholder{color:rgba(255,255,255,.6)}
.if-form-group select option{color:#333;background:#fff}
.if-form-group input:focus,
.if-form-group select:focus,
.if-form-group textarea:focus{
  border-color:var(--y);outline:none;
  background:rgba(255,255,255,0.12);
}
.if-form-submit-wrap{
  display:flex;align-items:center;
  justify-content:center;gap:30px;
  flex-wrap:wrap;margin-top:10px;
}
.if-submit-btn{
  padding:16px 40px;
  background:var(--y);color:var(--p);
  border-radius:var(--r);
  font-size:15px;font-weight:800;
  letter-spacing:1px;text-transform:uppercase;
  border:none;cursor:pointer;
  transition:var(--tr);font-family:inherit;
}
.if-submit-btn:hover{background:var(--yd);transform:translateY(-2px)}
.if-submit-btn:disabled{opacity:.6;cursor:not-allowed}
.if-form-phones{display:flex;flex-direction:column;gap:5px}
.if-form-phones a{
  color:rgba(255,255,255,.9);
  font-size:16px;font-weight:700;
}
.if-form-phones a:hover{color:var(--y)}
.if-form-msg{
  margin-top:20px;padding:14px 20px;
  border-radius:var(--r);text-align:center;
  font-weight:700;font-size:14px;color:#fff;
}
.if-form-msg.ok{background:var(--g)}
.if-form-msg.err{background:#e74c3c}
.if-form-msg[hidden]{display:none}

/* =============================================
   ПІДВАЛ
============================================= */
.if-footer{background:var(--pd);padding:22px 0}
.if-footer-in{
  display:flex;align-items:center;
  justify-content:space-between;flex-wrap:wrap;gap:10px;
}
.if-footer-in p{font-size:13px;color:rgba(255,255,255,.7)}

/* =============================================
   ПЛАВАЮЧІ КНОПКИ
============================================= */
.if-float{
  position:fixed;bottom:30px;right:30px;
  z-index:8000;
  display:flex;flex-direction:column;gap:10px;
  align-items:flex-end;
}
.if-float-btn{
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  transition:var(--tr);
}
.if-float-btn:hover{transform:scale(1.1)}
.if-float-call{background:var(--g)}
.if-float-tg{background:#29a0d4}

/* Кнопка вгору */
.if-totop{
  position:fixed;bottom:30px;right:95px;
  width:46px;height:46px;
  background:var(--p);color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;z-index:8000;
  box-shadow:0 4px 14px rgba(45,27,105,.4);
  transition:var(--tr);
}
.if-totop[hidden]{display:none}
.if-totop:hover{background:var(--pl);transform:translateY(-3px)}

/* =============================================
   СТОРІНКИ
============================================= */
.if-page{padding:50px 0 80px}
.if-page h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3vw,38px);
  color:var(--p);margin-bottom:28px;
  padding-bottom:14px;
  border-bottom:3px solid var(--y);
}
.if-page-content{font-size:16px;line-height:1.8}
.if-page-content h2{color:var(--p);font-size:24px;margin:28px 0 12px}
.if-page-content h3{color:var(--p);font-size:18px;margin:20px 0 10px}
.if-page-content p{margin-bottom:16px}
.if-page-content ul{margin:0 0 16px 20px;list-style:disc}
.if-page-content li{margin-bottom:8px}

/* Блог */
.if-blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:30px}
.if-blog-card{
  background:#fff;border-radius:var(--r);overflow:hidden;
  border:1px solid #eee;box-shadow:var(--sh);transition:var(--tr);
}
.if-blog-card:hover{transform:translateY(-5px);box-shadow:var(--sh2)}
.if-blog-card img{width:100%;height:200px;object-fit:cover}
.if-blog-body{padding:22px}
.if-blog-meta{font-size:12px;color:var(--gc);margin-bottom:8px}
.if-blog-body h3{font-size:17px;color:var(--p);margin-bottom:10px;line-height:1.4}
.if-blog-body h3 a{color:var(--p)}
.if-blog-body h3 a:hover{color:var(--g)}
.if-blog-body p{font-size:14px;color:var(--gc);margin-bottom:14px}
.if-blog-body a.more{color:var(--g);font-weight:700;font-size:13px}

/* Пагінація */
.if-pagin{display:flex;gap:8px;margin-top:40px;justify-content:center}
.if-pagin .page-numbers{
  display:flex;align-items:center;justify-content:center;
  width:40px;height:40px;border-radius:4px;
  background:var(--gr);color:var(--t);font-weight:700;font-size:14px;
  transition:var(--tr);
}
.if-pagin .current,.if-pagin a:hover{background:var(--p);color:#fff}

/* 404 */
.if-404{text-align:center;padding:100px 20px}
.if-404 h1{font-size:120px;font-weight:900;color:var(--p);opacity:.15;line-height:1}
.if-404 h2{font-size:28px;margin:15px 0 12px}
.if-404 p{color:var(--gc);font-size:16px;margin-bottom:30px}
.if-404 a{
  display:inline-block;padding:14px 28px;
  background:var(--p);color:#fff;border-radius:var(--r);font-weight:700;
}

/* =============================================
   АДАПТИВНІСТЬ
============================================= */
@media(max-width:1200px){
  .if-svcs-grid{grid-template-columns:repeat(2,1fr)}
  .if-prices-grid{grid-template-columns:repeat(2,1fr)}
  .if-docs-grid{grid-template-columns:repeat(2,1fr)}
  .if-reviews-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:1024px){
  .if-map-grid{grid-template-columns:1fr}
  .if-steps{flex-direction:column;align-items:center;gap:20px}
  .if-step-arr{transform:rotate(90deg);margin:0}
  .if-step{max-width:400px;width:100%}
}
@media(max-width:900px){
  .ih-top{padding:0 20px}
  .ih-top-in{height:auto;padding:14px 0;flex-wrap:wrap;justify-content:center;gap:12px}
  .ih-socials{display:none}
  .ih-nav-in{padding:0 20px}
  .ih-nav-list{display:none}
  .ih-burger{display:flex}
  .if-hero-content .if-wrap{flex-direction:column}
  .if-hero-right{width:100%;max-width:300px}
  .if-hero-title{font-size:34px}
}
@media(max-width:680px){
  .if-wrap{padding:0 16px}
  .ih-top-in{flex-direction:column}
  .ih-right{flex-direction:column;width:100%;align-items:center}
  .ih-booking-btn{width:100%}
  .ih-phones{width:100%;align-items:center}
  .if-hero-title{font-size:26px}
  .if-hero-tags{flex-direction:column;gap:8px}
  .if-svcs-grid{grid-template-columns:1fr}
  .if-prices-grid{grid-template-columns:1fr}
  .if-docs-grid{grid-template-columns:1fr}
  .if-reviews-grid{grid-template-columns:1fr}
  .if-blog-grid{grid-template-columns:1fr}
  .if-form-row{grid-template-columns:1fr}
  .if-badges-row{gap:10px;justify-content:flex-start}
  .if-footer-in{flex-direction:column;text-align:center}
  .if-float{right:12px;bottom:12px}
  .if-totop{right:75px;bottom:12px}
}