@font-face {
  font-family: "MazzardM";
  src: url("../assets/fonts/mazzard/MazzardH-Bold.otf") format("opentype");
}
@font-face {
  font-family: "san_francisco";
  src: url("../assets/fonts/sanFransisco/SFUIText/SFUIText-Regular.otf")
    format("opentype");
}

.contentContainer {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.font-mazzard {
  font-family: "MazzardM", Arial, sans-serif;
}
.font-sanfrancisco {
  font-family: "san_francisco", Arial, sans-serif;
}

.gradient-btn {
  background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gradient-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
  background: linear-gradient(135deg, #1d4ed8 0%, #047857 100%);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.8s ease both;
}
.animate-slide-up {
  animation: slideUp 0.8s ease both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar Styling - visible globally */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #1e293b, #334155);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #10b981);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #059669);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
::-webkit-scrollbar-corner {
  background: linear-gradient(135deg, #1e293b, #334155);
}
/* Firefox global */
* {
  scrollbar-width: thin;
  scrollbar-color: #3b82f6 #1e293b;
}

/* Utility: hide scrollbar but keep scroll functionality */
.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}
.hide-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.hide-scrollbar::-webkit-scrollbar-thumb {
  background: transparent;
}
.hide-scrollbar::-webkit-scrollbar-corner {
  background: transparent;
}

/* Utilities used by header/footer */
.glass-effect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}
.social-link {
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
}
.logo-container {
  transition: all 0.3s ease;
}
.contact-item {
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}
.nav-link {
  position: relative;
  color: #334155;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.3s;
}
.nav-link:hover {
  color: #1d4ed8;
}
.nav-link:hover::after {
  width: 100%;
}

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.45);
}

.open {
  width: 400px;
}

.close {
  width: 0px;
}
.title {
  font-family: font-mazzard, sans-serif;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1e293b; /* daha dərin boz (slate-800) */
  letter-spacing: 0.5px; /* azca aralıq */
  position: relative;
}

.title-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* html {
  scroll-behavior: smooth;
} */
