html {
  scroll-behavior: smooth;
}
/* --- ფონტები --- */
@font-face {
  font-family: 'kartuli';
  src: url('../fonts/font.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'kartuli2';
  src: url('../fonts/font.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'english';
  src: url('../fonts/english.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* --- ძირითადი სტილები --- */
html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'kartuli', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* --- ინგლისური ტექსტი --- */
.english-only {
  font-family: 'english', sans-serif;
}

/* --- ალტერნატიული ქართული ტექსტისთვის --- */
.kartuli2 {
  font-family: 'kartuli2', sans-serif;
}



.code-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px #0f0;
  color: #0f0;
  font-family: monospace;
  max-width: 600px;
  width: 90%;
  font-size: 14px;
  line-height: 1.4;
  z-index: 2;
}

.code-box {
  background-color: #111;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px #0f0;
  max-width: 600px;
  width: 90%;
  font-size: 14px;
  line-height: 1.4;
  overflow: hidden;
}


.main-header {
  background-color: white;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'kartuli2', sans-serif;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #ff6600;
  opacity: 0;
  transform: translateX(-150px);
  animation: slideInLeft 2s forwards;
}


.nav {
  display: flex;
  gap: 30px;
  opacity: 0;
  transform: translateX(150px);
  animation: slideInRight 2s forwards;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  position: relative;
  font-size: 16px;
  transition: 0.3s;
}

.nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: #ff6600;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}


.hero-slider {
  position: relative;
  background-color: #ffffff;
  padding: 60px 20px;              
  text-align: center;
  min-height: 60vh;                
  overflow: hidden;
  border-bottom-left-radius: 40px; 
  border-bottom-right-radius: 40px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: normal;
  line-height: 1.5;
}


@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav a {
    margin: 5px 0;
  }

  .hero-slider {
    padding: 80px 20px;
    border-radius: 40px;
    min-height: 70vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}
.retro-window {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 90%;
  background: white;
  border: 2px solid #000;
  box-shadow: 5px 5px 0 #333;
  font-family: monospace;
  z-index: 999;
}

.window-header {
  background: #0078D7;
  color: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
}

.window-buttons span {
  margin-left: 5px;
  padding: 2px 6px;
  background: white;
  color: black;
  font-weight: bold;
  border: 1px solid black;
  cursor: default;
}

.window-body {
  padding: 20px;
  color: #333;
  background: #f2f2f2;
  min-height: 150px;
  overflow: auto;
}
.site-footer {
  background-color: #1a1a1a;
  color: #bbb;
  padding: 15px 10px;       
  font-family: monospace;
  font-size: 12px;          
  border-top: 1px solid #222;
}

.footer-right pre.footer-code {
  padding: 8px;
  font-size: 11px;
  border-radius: 4px;
  max-width: 240px;
  line-height: 1.3;
}


.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-left {
  max-width: 50%;
}

.footer-left .footer-brand {
  color: #ff6600;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.footer-right pre.footer-code {
  background: #000;
  color: #00ff00;
  padding: 15px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 0 10px rgba(0,255,0,0.2);
  white-space: pre-wrap;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }

  .footer-left, .footer-right {
    max-width: 100%;
  }
}
.slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;              
  z-index: 0;
  opacity: 0.25;                 
  filter: contrast(110%) brightness(110%);
  transition: opacity 0.5s ease;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
}
.about-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'kartuli2', sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 350px;       
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
.english-only {
  color: #ff6600;
  font-family: 'english', sans-serif;
  font-weight: bold;
}
.services-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  font-family: 'kartuli2', sans-serif;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-box {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box img {
  width: 60px;
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.service-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.portfolio-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'kartuli2', sans-serif;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-container h2 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 50px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.portfolio-item {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.portfolio-item:hover {
  transform: translateY(-10px);
}

.portfolio-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.portfolio-item h3 {
  font-size: 18px;
  color: #333;
}

.contact-form-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'CustomFont', sans-serif;
  width: 100%;
  resize: none;
}

.contact-form button {
  padding: 15px;
  background-color: #ff6600;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #e05400;
}
.form-status {
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #ff6600;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  z-index: 999;
}

#backToTop svg {
  display: block;
}

#backToTop:hover {
  background-color: #e05600;
  transform: scale(1.08);
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: #333;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    order: -1; /* ✅ გადაადგილებს მარცხნივ flex-შიც */
  }

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* ჰამბურგერის ღილაკი */
.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  display: none;
}

/* მობილური დიზაინი */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    order: 2; /* იძულებით გადააქვს მარჯვნივ */
    margin-left: auto; /* მარჯვენა მხარეს მიაწვება */
  }

  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    display: none; /* გადამრთველი კლასით გამოჩნდება */
  }

  .nav.active {
    display: flex;
  }
}


  .nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 14px;
    z-index: 1000;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 8px 0;
    font-size: 16px;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    width: 100%;
  }

  .nav a:last-child {
    border-bottom: none;
  }
}
.contact-info {
  margin-bottom: 30px;
  font-size: 16px;
  color: #333;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

.contact-item .icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.phone-icon {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23ff6600" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M6.6 10.8c1.7 3.5 4.1 5.9 7.6 7.6l2.5-2.5c.3-.3.8-.4 1.2-.3 1.3.3 2.6.5 4 .5.7 0 1.3.6 1.3 1.3v4c0 .7-.6 1.3-1.3 1.3C10.4 23 1 13.6 1 2.3 1 1.6 1.6 1 2.3 1h4c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.7.5 4 .1.4 0 .9-.3 1.2l-2.5 2.5z"/></svg>');
}

.mail-icon {
  background-image: url('data:image/svg+xml;utf8,<svg fill="%230066cc" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M2 4h20c1.1 0 2 .9 2 2v1.8l-12 7.5L0 7.8V6c0-1.1.9-2 2-2zm0 4.2l10 6.2 10-6.2V18c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V8.2z"/></svg>');
}

.contact-item a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-item:hover .icon {
  transform: scale(1.1);
}

.contact-item:hover a {
  color: #ff6600;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}


.logo img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}


.logo:hover img {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .logo img {
    height: 48px;
  }
}
.testimonials-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
  font-family: 'kartuli2', sans-serif;
}

.testimonials-section h2 {
  color: #ff6600;
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  font-style: italic;
  position: relative;
  font-family: 'kartuli2', sans-serif;
}

.testimonial-card::before {
  content: "“";
  font-size: 40px;
  color: #ff6600;
  position: absolute;
  top: 10px;
  left: 15px;
}


.client-name {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-text strong {
  color: #ff6600;
  font-weight: bold;
}

.about-text .english-only {
  font-family: 'english', sans-serif;
  font-weight: bold;
  font-size: 18px;
}
.pricing-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'kartuli2', sans-serif;
}

.pricing-section h2 {
  color: #ff6600;
  font-size: 32px;
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.price-label {
  font-size: 20px;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 10px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
}

.pricing-card.special {
  background-color: #fff7e6;
  border: 2px dashed #ff6600;
}


.contact-button {
  display: inline-block;
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 15px;
  transition: background 0.3s ease;
  font-family: 'kartuli2', sans-serif;
}

.contact-button:hover {
  background-color: #e05700;
}
.contact-form-section {
  background-color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'kartuli2', sans-serif;
}

.contact-form-section h2 {
  font-size: 32px;
  color: #ff6600;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.contact-item a {
  color: #333;
  text-decoration: none;
  font-family: 'kartuli2', sans-serif;
}

.contact-item a:hover {
  text-decoration: underline;
}

.phone-icon::before {
  content: "📞";
  font-size: 18px;
}

.mail-icon::before {
  content: "✉️";
  font-size: 18px;
}

/* ინგლისური ტექსტი (მაგ. Info@Smarty.Ge) */
.english-only {
  color: #ff6600;
  font-family: 'english', sans-serif;
  font-weight: bold;
}

/* ფორმის სტილები */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'kartuli2', sans-serif;
  resize: none;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'kartuli2', sans-serif;
}

.contact-form button:hover {
  background-color: #e05700;
}

/* პასუხი/ლოდერის სტილები */
.after-submit {
  margin-top: 20px;
}

.form-loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #ff6600;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 10px;
  font-size: 16px;
  color: #28a745;
}

.package-details {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  font-family: 'kartuli2', sans-serif;
}

.package-details h2 {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 40px;
}


.accordion {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  font-family: 'kartuli2', sans-serif;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.accordion-button {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
  font-family: 'kartuli2', sans-serif;
}

.accordion-button:hover {
  background-color: #f4f4f4;
}

.accordion-button i {
  color: #ff6600;
  font-size: 18px;
}

/* ჩაკეცილი მდგომარეობა */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding: 0 20px; /* default padding desktop-ზე, რომ ტექსტი არ მიიჭედოს */
  font-size: 16px;
  line-height: 1.6;
}

/* გახსნილი მდგომარეობა */
.accordion-item.active .accordion-content {
  max-height: 1000px;
  opacity: 1;
  padding: 20px 30px; /* ჰაერი გვერდებზე PC ვერსიისთვის */
}

/* მობილურისთვის – ტექსტის ზომა და სივრცე */
@media (max-width: 480px) {
  .accordion-content {
    font-size: 15px;
    padding: 15px 16px;
    line-height: 1.6;
  }

  .accordion-button {
    color: #333 !important;
  }

  .accordion-button .accordion-title {
    color: #333 !important;
  }
}
.domain-section {
  padding: 60px 20px;
  background-color: #fff7f0;
  font-family: 'kartuli2', sans-serif;
}

.domain-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.domain-text, .domain-checker-box {
  flex: 1;
}

.domain-text h2 {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 20px;
}

.domain-text p {
  font-size: 17px;
  color: #444;
  margin-bottom: 15px;
}

.domain-text ul {
  list-style: none;
  padding-left: 0;
}

.domain-text ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.domain-checker-box h2 {
  color: #ff6600;
  font-size: 24px;
  margin-bottom: 15px;
}

#domainForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#domainInput {
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

#domainForm button {
  padding: 12px 25px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.domain-result {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
  min-height: 24px;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #ff6600;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  .domain-container {
    flex-direction: column;
  }

  .domain-text h2, .domain-checker-box h2 {
    font-size: 22px;
    text-align: center;
  }

  .domain-text, .domain-checker-box {
    width: 100%;
    text-align: center;
  }
}
.domain-check-button {
  font-family: 'kartuli2', sans-serif !important;
  background-color: #ff6600;
  color: #fff;
  padding: 12px 24px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.domain-check-button:hover {
  background-color: #e05700;
}
.domain-success-box {
  background-color: #fdf6f1;
  border: 1px solid #ff660040;
  padding: 20px;
  border-radius: 12px;
  font-family: 'kartuli2', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-top: 20px;
}

.domain-success-box ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.domain-success-box li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.domain-success-box a {
  color: #333;
  text-decoration: none;
}

.domain-success-box a:hover {
  text-decoration: underline;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: 'kartuli', sans-serif;
}

.fb-icon svg {
  width: 20px;
  height: 20px;
}
.floating-messenger-icon {
  position: fixed;
  bottom: 250px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  border: none;
  transition: none !important;
}

.floating-messenger-icon:hover {
  transform: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.floating-messenger-icon img {
  width: 36px;
  height: 36px;
  display: block;
  pointer-events: none;
  transition: none !important;
}


@media (max-width: 768px) {
  .floating-messenger-icon {
    bottom: 200px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .floating-messenger-icon img {
    width: 30px;
    height: 30px;
  }
}






