/* ====== E-Ticaret Mobil Navigasyon Stilleri ====== */

.agency-bottom-nav,
.agency-bottom-nav * {
  box-sizing: border-box;
}

.agency-bottom-nav {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  width: calc(100% - 30px);
  max-width: 380px;
  height: 65px;
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 9998;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

.agency-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #2c3e50;
  transition: all 0.3s ease;
  flex: 1;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.agency-bottom-nav .nav-item svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.agency-bottom-nav .nav-item:hover {
  color: #25D366;
  transform: translateY(-3px);
}

.agency-bottom-nav .nav-item:hover svg {
  stroke-width: 2.4;
}

/* WhatsApp Center Button */
.agency-bottom-nav .whatsapp-btn {
  position: relative;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: translateY(-20px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.agency-bottom-nav .whatsapp-btn:hover {
  transform: translateY(-24px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
}

.agency-bottom-nav .whatsapp-btn svg {
  width: 27px;
  height: 27px;
  fill: #ffffff;
}

.agency-bottom-nav .whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: -1;
  animation: agencyPulse 2s ease-out infinite;
}

@keyframes agencyPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

.agency-bottom-nav .heart-item:hover {
  color: #e91e63;
}

/* ====== FULL PAGE QUICK MENU ====== */
.agency-quick-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(135deg, #1a1f3a 0%, #2c3e50 100%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

.agency-quick-menu.active {
  opacity: 1;
  visibility: visible;
}

.agency-quick-menu::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  max-width: 80vw;
  max-height: 80vw;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.agency-quick-menu::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  max-width: 80vw;
  max-height: 80vw;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.agency-quick-menu .menu-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 30px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.agency-quick-menu *,
.agency-quick-menu *::before,
.agency-quick-menu *::after {
  box-sizing: border-box;
}

.agency-quick-menu .close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  color: #fff;
}

.agency-quick-menu .close-btn:hover {
  background: rgba(233, 30, 99, 0.9);
  transform: rotate(90deg);
  border-color: transparent;
}

.agency-quick-menu .close-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.agency-quick-menu .menu-header {
  text-align: center;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.1s;
}

.agency-quick-menu.active .menu-header {
  opacity: 1;
  transform: translateY(0);
}

.agency-quick-menu .menu-label {
  display: inline-block;
  color: #25D366;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 30px;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.agency-quick-menu .menu-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  line-height: 1.1;
}

.agency-quick-menu .menu-title span {
  background: linear-gradient(135deg, #25D366 0%, #e91e63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.agency-quick-menu .menu-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Grid */
.agency-quick-menu .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.agency-quick-menu .service-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: block;
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.agency-quick-menu.active .service-card {
  opacity: 1;
  transform: translateY(0);
}

.agency-quick-menu.active .service-card:nth-child(1) { transition: all 0.5s ease 0.2s; }
.agency-quick-menu.active .service-card:nth-child(2) { transition: all 0.5s ease 0.25s; }
.agency-quick-menu.active .service-card:nth-child(3) { transition: all 0.5s ease 0.3s; }
.agency-quick-menu.active .service-card:nth-child(4) { transition: all 0.5s ease 0.35s; }
.agency-quick-menu.active .service-card:nth-child(5) { transition: all 0.5s ease 0.4s; }
.agency-quick-menu.active .service-card:nth-child(6) { transition: all 0.5s ease 0.45s; }

.agency-quick-menu .service-card:hover,
.agency-quick-menu .service-card:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.agency-quick-menu .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #25D366, #e91e63);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.agency-quick-menu .service-card:hover::before,
.agency-quick-menu .service-card:active::before {
  transform: scaleX(1);
}

.agency-quick-menu .service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(233, 30, 99, 0.2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.agency-quick-menu .service-card:hover .service-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  transform: scale(1.1) rotate(-5deg);
}

.agency-quick-menu .service-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}

.agency-quick-menu .service-name {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 0;
}

.agency-quick-menu .service-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.agency-quick-menu .service-arrow {
  color: #25D366;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.agency-quick-menu .service-card:hover .service-arrow {
  gap: 12px;
}

/* CTA Section */
.agency-quick-menu .menu-cta {
  text-align: center;
  padding: 25px 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(233, 30, 99, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.5s;
}

.agency-quick-menu.active .menu-cta {
  opacity: 1;
  transform: translateY(0);
}

.agency-quick-menu .cta-text {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 18px;
}

.agency-quick-menu .cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.agency-quick-menu .cta-btn {
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.agency-quick-menu .cta-primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.agency-quick-menu .cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.agency-quick-menu .cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.agency-quick-menu .cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Body padding when nav is visible */
@media (max-width: 767px) {
  body {
    padding-bottom: 100px !important;
  }
}

/* SADECE MOBİLDE GÖSTER - 768px ve üzeri (tablet/desktop) gizle */
@media (min-width: 768px) {
  .agency-bottom-nav,
  .agency-quick-menu {
    display: none !important;
  }
}

/* Body scroll lock when menu is open */
body.agency-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
