/* ==========================================================
   logo-creation.css
   Page-specific styles for Logo Creation service page
   SMEdigital - smedigital.in
   ========================================================== */

/* ── Floating Shape Decorations ── */
.lc-shape-float {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(235, 96, 31, 0.15);
  pointer-events: none;
  z-index: 1;
  animation: lc-float 8s ease-in-out infinite;
}

.lc-shape-float--1 {
  top: 18%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 9s;
  font-size: 2rem;
}

.lc-shape-float--2 {
  top: 35%;
  right: 6%;
  animation-delay: 2s;
  animation-duration: 11s;
  font-size: 1.75rem;
}

.lc-shape-float--3 {
  bottom: 25%;
  left: 8%;
  animation-delay: 4s;
  animation-duration: 8s;
  font-size: 2.25rem;
}

.lc-shape-float--4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1s;
  animation-duration: 10s;
  font-size: 1.5rem;
}

@keyframes lc-float {
  0%, 100% { transform: translateY(0px) rotate(-3deg); opacity: 0.15; }
  50%       { transform: translateY(-22px) rotate(3deg); opacity: 0.32; }
}

@media (max-width: 768px) {
  .lc-shape-float { display: none; }
}

/* ── Stats Counter Section ── */
.lc-stats-section {
  border-radius: 2rem;
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(235, 96, 31, 0.2);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.lc-stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, #eb601f, transparent);
}

.lc-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .lc-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lc-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lc-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(235, 96, 31, 0.15);
}

.lc-stat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.lc-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #eb601f;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.lc-stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 480px) {
  .lc-stat-number { font-size: 2rem; }
}

/* ── Tools Grid Section ── */
.lc-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .lc-tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .lc-tools-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.lc-tool-card {
  background: rgba(17, 17, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.lc-tool-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tool-color, #eb601f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.lc-tool-card:hover {
  border-color: var(--tool-color, #eb601f);
  box-shadow: 0 6px 25px rgba(235, 96, 31, 0.15);
  transform: translateY(-4px);
}

.lc-tool-card:hover::before {
  transform: scaleX(1);
}

.lc-tool-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.lc-tool-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: block;
}

/* ── Why Choose Us Section ── */
.lc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .lc-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lc-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lc-why-card {
  background: rgba(17, 17, 17, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lc-why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(235, 96, 31, 0.4), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.lc-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(235, 96, 31, 0.3);
  box-shadow: 0 12px 40px rgba(235, 96, 31, 0.12);
}

.lc-why-card:hover::after {
  transform: scaleX(1);
}

.lc-why-card--highlight {
  border-color: rgba(235, 96, 31, 0.3);
  background: rgba(235, 96, 31, 0.06);
}

.lc-why-card--highlight::after {
  background: linear-gradient(to right, transparent, #eb601f, transparent);
  transform: scaleX(1);
}

.lc-why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.lc-why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}

.lc-why-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ── Mobile overrides ── */
@media (max-width: 768px) {
  .lc-stats-section {
    padding: 2rem 1rem;
  }

  .lc-stat-number {
    font-size: 1.75rem;
  }

  .lc-tools-grid {
    gap: 0.75rem;
  }

  .lc-why-grid {
    gap: 1rem;
  }
}