/* ============================================
   تک سرویس - Custom CSS (Extra Effects & Polish)
   Matching the provided homepage mockup exactly
============================================ */

/* Header phone number badge */
.header-phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF6B00, #ff8533);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.3s ease;
}

.header-phone-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  color: #fff !important;
}

/* Logo text styling if no image */
.site-title a {
  font-weight: 800;
  font-size: 1.5rem;
  color: #0A2540 !important;
}

.site-title a span {
  color: #FF6B00;
}

/* Hero section enhancements matching mockup */
.hero-wrapper {
  position: relative;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #fff7ed 100%);
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 160%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Service icons row (horizontal scroll on mobile) */
.services-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 30px 0;
}

.services-icons-row .service-item {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  transition: all 0.3s ease;
}

.services-icons-row .service-item:hover {
  transform: translateY(-5px);
}

.services-icons-row img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 8px;
}

.services-icons-row span {
  font-size: 0.8rem;
  font-weight: 600;
  color: #0A2540;
  display: block;
}

/* "Why Tak Service" section */
.why-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px;
}

.why-section .feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Process steps (4 steps) */
.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  counter-reset: step;
}

.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding: 20px 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(10, 37, 64, 0.06);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0A2540, #1e3a5f);
  color: white;
  border-radius: 50%;
  font-weight: 800;
  margin: 0 auto 12px;
  font-size: 1.1rem;
}

/* Brands strip */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  filter: grayscale(1);
  opacity: 0.75;
  transition: all 0.4s ease;
}

.brands-strip:hover {
  filter: grayscale(0);
  opacity: 1;
}

.brands-strip img {
  max-height: 36px;
  width: auto;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0A2540 0%, #1e3a5f 100%);
  color: white;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: white !important;
  margin: 0 0 8px;
}

.cta-banner p {
  opacity: 0.9;
  margin: 0;
}

/* Map / Coverage section */
.coverage-box {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
}

/* Footer improvements */
.ct-footer .footer-columns {
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.9rem;
  text-align: center;
}

/* Instagram icon special style */
.social-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
}

/* Smooth card hover lift */
.lift-on-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lift-on-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
}

/* Badge styles */
.badge-orange {
  display: inline-block;
  background: #FF6B00;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.badge-navy {
  display: inline-block;
  background: #0A2540;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Better mobile navigation for Blocksy */
@media (max-width: 991px) {
  .ct-header [data-device="mobile"] {
    background: #fff;
  }
  
  .mobile-menu-toggle {
    color: #0A2540 !important;
  }
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Print styles */
@media print {
  .float-call-btn,
  .ct-header {
    display: none !important;
  }
}
