/* ===============
   custom_content.css
   Styles specifically for the Custom Content page
   =============== */

/* Inherit some base variables and settings if needed, assuming aboxcc.css provides them */

/* Hero Section */
.custom-hero {
  padding: 100px 20px 50px 20px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top center, rgba(0, 243, 255, 0.1) 0%, transparent 60%);
}

.custom-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../media/noise.png') repeat;
  opacity: 0.03;
  pointer-events: none;
}

.custom-hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeUp 1s ease-out forwards;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(to right, #fff, #b3e5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(0, 243, 255, 0.2);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-dim, #a0aabf);
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

/* Core Services Section */
.core-services-section {
  padding: 80px 20px;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-neon, #00f3ff), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border-color: rgba(0, 243, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 243, 255, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: inline-block;
  background: rgba(0, 243, 255, 0.1);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(0, 243, 255, 0.2);
  color: var(--accent-neon, #00f3ff);
}

.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.service-card p {
  color: var(--text-dim, #a0aabf);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Showcase Image Section */
.custom-showcase-section {
  padding: 80px 20px 120px 20px;
}

.showcase-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.showcase-text {
  flex: 1;
  padding: 60px;
}

.showcase-image {
  flex: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 40px 0;
}

.showcase-image img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-title {
    font-size: 3rem;
  }

  .showcase-banner {
    flex-direction: column;
  }

  .showcase-image {
    width: 100%;
    padding: 0 40px 40px 40px;
  }

  .showcase-image img {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .showcase-text {
    padding: 40px 30px;
  }
}