	html, body {
    overflow-x: hidden; /* აჩერებს ჰორიზონტალურ სქროლს */
    width: 100%;
    margin: 0;
    padding: 0;
}
	* {
  box-sizing: border-box;
}
.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 0.25rem;
    transition: 0.3s ease;
}
.search-btn {
  position: relative;
  z-index: 999;
  flex-shrink: 0;
  width: 2.625rem;
  height: 2.625rem;
  min-width: 2.625rem;
  min-height: 2.625rem;
  border: none;
  border-radius: 50%;
  background: #ff6b4a;
  color: #fff;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 0.25rem;
}

	/* დაამატეთ ეს სტილი .search-btn-ის ქვემოთ */
.search-box {
    display: flex;
    width: 92%;             /* მობილურზე ეკრანის 92%-ს დაიკავებს */
    max-width: 600px;       /* დესკტოპზე არ გაიზრდება 600px-ზე მეტად */
    margin: 0 auto;         /* ცენტრში მოსათავსებლად */
    padding: 5px;
    background: #fff;       /* თუ თეთრი ფონი გჭირდებათ */
    border-radius: 50px;    /* ლამაზი მომრგვალებისთვის */
}

/* თუ input-ებს სჭირდებათ სრული სიგანის დაკავება */
.search-input, .city-input {
    width: 100%;
    border: none;
    outline: none;
}

ul.autoSuggest {
    background: #f1f3f4;      /* ნაცრისფერი ფონი */
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1); 
    border-radius: 0 0 20px 20px; 
    margin-top: 10px;        
    padding: 0;              
    overflow: hidden;        
    border: 1px solid #ddd;
    color: #000;             /* ტექსტის ფერი შავი */
}

ul.autoSuggest li {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    color: #000;             /* ჩამონათვალის ტექსტიც შავი */
    font-weight: 500;        /* ოდნავ სქელი შრიფტი უკეთესი კითხვისთვის */
    transition: background 0.2s;
}

ul.autoSuggest li:hover {
    background: #dcdcdc;     /* ჰოვერზე ოდნავ მუქი ნაცრისფერი, რომ შავი ტექსტი კარგად გამოჩნდეს */
}
.suggest-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f2f2f2;
}

.suggest-item:hover {
    background: #f7f7f7;
}
/* Wrapper */
.icon-banner-wrapper {
  width: 100%;
  padding: 0 12px;
  margin-top: 1rem;
  overflow-x: hidden;
  box-sizing: border-box;
}
.suggest-item.active {
    background: #dcdcdc;
}
/* Scroll container */
.icon-banner-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
  gap: 0.2rem;
}

/* Each item */
.icon-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
  padding: 0.5rem 0.25rem;
  border-radius: 0.5rem;
  transition: transform 0.25s ease;
}
.icon-banner-item:hover {
  transform: translateY(-0.2rem);
}

/* Image */
.icon-banner-item img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

/* Label */
.icon-banner-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #222;
  user-select: none;
}
.page-title {
  color: #fff;
  font-size: 42px;
  text-align: center;
  word-break: break-word;
}
.section-title {
    text-align: center;
    margin: 20px 0 25px;
    color: #fe5411;
    font-size: 36px;
    font-weight: 800;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #fe5411;
    margin: 12px auto 0;
    border-radius: 2px;
}
.about-section {
  max-width: 1100px;     /* ტექსტის სიგანე */
  margin: 0 auto;        /* ცენტრში განთავსება */
  padding: 0 10px;       /* გვერდებიდან დაშორება */
}

.about-section p {
  line-height: 1.7;      /* წაკითხვადობა */
  margin-bottom: 15px;
  font-size: 16px;
}

.blog-home{
    max-width: 1400px;
    margin: 10px auto;
    padding-left: 0;
    padding-right: 10px;
}

.blog-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}
.blog-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-5px);
}

.blog-img img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.blog-content{
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-content h3{
    font-size:18px;
    color:#222;
    margin-bottom:10px;
}

.blog-content p{
    font-size:14px;
    color:#666;
    line-height:1.5;
}

.vip-wrapper {
    background: #f9f9f9;
    padding: 1rem;
}
.vip-wrapper .row {
    margin: 0;
}
.vip-card {
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.vip-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.vip-badge {
    position: absolute;
    top: .5rem;
    right: .5rem;
    background: linear-gradient(45deg,#FFD700,#FF8C00);
    padding: .25rem .5rem;
    font-weight: bold;
    border-radius: .3rem;
    font-size: .8rem;
    animation: glow 1.5s infinite alternate;
}

/* VIP ბზინვა ანიმაცია */
@keyframes glow {
    0% { box-shadow: 0 0 5px #FFD700; }
    50% { box-shadow: 0 0 15px #FFD700; }
    100% { box-shadow: 0 0 5px #FFD700; }
}

/* VIP Facebook */
.vip-facebook {
    top: 45px;
    right: .5rem;
}
.vip-facebook i {
    font-size: 24px;
}
.vip-facebook:hover {
    transform: scale(1.2) rotate(10deg);
}

/* სურათის ზუმი */
.vip-card img {
    transition: transform 0.3s;
}
.vip-card:hover img {
    transform: scale(1.05);
}

/* პროფესია ბოლდად */
.profession-label {
    font-weight: bold;
    color: #000;
}




/* TABLET */
@media (max-width: 768px) {
  .icon-banner-scroll {
    grid-template-columns: repeat(auto-fit, minmax(6rem, 1fr));
    gap: 0.75rem;
  }

  .icon-banner-item img {
    width: 3.5rem;
    height: 3.5rem;
  }
  .page-title {
    font-size: 22px;
    padding: 0 10px;
    line-height: 1.3;
  }
	  .blog-grid{
        grid-template-columns:1fr;
    }
	 .whatsapp-float{
      bottom:80px;
   }
}

/* MOBILE: 3 აიქონი თითო რიგში */
@media (max-width: 576px) {
  .icon-banner-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
    padding: 0 0.5rem;
  }

  .icon-banner-item img {
      width: 40px;
    height: 40px;
  }

  .icon-banner-label {
    font-size: 0.6rem;
  }
   .page-title {
    font-size: 20px;
  }
}
