/* ==========================================================================
   PREMIUM SERVICES LAYOUT
   Colors:
   - Primary Navy: #022d62
   - Primary Red: #ef3139
   - Neutral Slate: #4a5568
   ========================================================================== */

/* 1. Header Banner Styling */
.header-inner.premium-banner {
  padding: 140px 0;
  background: radial-gradient(circle at 10% 20%, #032147 0%, #011227 90%) !important;
  position: relative;
  overflow: hidden;
}

.header-inner.premium-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(239, 49, 57, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 49, 57, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 70%);
  pointer-events: none;
}

/* Ambient glow blobs */
.premium-banner .glow-blob-1,
.premium-banner .glow-blob-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}

.premium-banner .glow-blob-1 {
  background: #ef3139;
  top: -50px;
  right: 10%;
}

.premium-banner .glow-blob-2 {
  background: #022d62;
  bottom: -50px;
  left: 5%;
}

.premium-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700 !important;
  font-size: 3.5rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #ffffff 30%, #ff898e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.premium-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* 2. Service Description */
.service-title-premium {
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  color: #022d62;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.service-title-premium::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #ef3139 0%, #022d62 100%);
  border-radius: 2px;
}

.premium-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #4a5568;
}

.premium-italic-quote {
  border-left: 4px solid #ef3139;
  background: rgba(239, 49, 57, 0.02);
  padding: 25px 30px;
  border-radius: 0 16px 16px 0;
  font-size: 1.1rem;
  color: #022d62;
  font-weight: 500;
  line-height: 1.7;
  margin: 40px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

/* Rounded image container with border highlight */
.premium-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(2, 45, 98, 0.08);
  margin-bottom: 40px;
  border: 1px solid rgba(2, 45, 98, 0.05);
}

.premium-img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-img-wrapper:hover img {
  transform: scale(1.03);
}

/* 3. The Benefit Cards Grid */
.benefit-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .benefit-card-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(2, 45, 98, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(2, 45, 98, 0.02);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 49, 57, 0.25);
  box-shadow: 0 15px 35px rgba(239, 49, 57, 0.06);
}

.benefit-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(239, 49, 57, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-box {
  background: #ef3139;
  color: #ffffff;
}

.benefit-icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #ef3139;
  stroke-width: 2.5;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-box svg {
  stroke: #ffffff;
}

.benefit-info h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: #022d62;
  font-weight: 650;
  margin-bottom: 6px;
}

.benefit-info p {
  font-size: 0.95rem;
  color: #5a6578;
  margin-bottom: 0;
  line-height: 1.5;
}

/* 4. Enquiry Form styling */
.premium-form-container {
  background: #ffffff;
  border: 1px solid rgba(2, 45, 98, 0.1);
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 25px 60px rgba(2, 45, 98, 0.05);
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.premium-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ef3139 0%, #022d62 100%);
}

.form-header-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  color: #022d62;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.premium-form-container .form-control {
  background: rgba(2, 45, 98, 0.02);
  border: 1px solid rgba(2, 45, 98, 0.08);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 1rem;
  color: #022d62;
  transition: all 0.3s ease;
}

.premium-form-container .form-control:focus {
  background: #ffffff;
  border-color: #ef3139;
  box-shadow: 0 0 0 4px rgba(239, 49, 57, 0.1);
  outline: none;
}

.premium-form-container .form-check-input:checked {
  background-color: #ef3139;
  border-color: #ef3139;
}

.premium-btn-submit {
  background: linear-gradient(135deg, #ef3139 0%, #d6242c 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 35px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(239, 49, 57, 0.2);
}

.premium-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(239, 49, 57, 0.35);
  background: linear-gradient(135deg, #d6242c 0%, #b2181f 100%);
  color: #ffffff;
}

/* 5. Technologies Used Tech Stack Panel */
.tech-stack-container-premium {
  background: #ffffff;
  border: 1px solid rgba(2, 45, 98, 0.08);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(2, 45, 98, 0.04);
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tech-stack-container-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #ef3139;
}

.tech-stack-container-premium:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 49, 57, 0.15);
  box-shadow: 0 25px 50px rgba(239, 49, 57, 0.08);
}

.tech-stack-title-premium {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  color: #022d62;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  text-align: left;
  padding-left: 5px;
}

.tech-stack-subtitle-premium {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 24px;
  text-align: left;
  padding-left: 5px;
  font-weight: 500;
}

.tech-stack-grid-premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 575px) {
  .tech-stack-grid-premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .tech-stack-container-premium {
    padding: 20px;
  }
}

.tech-stack-item-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(2, 45, 98, 0.015);
  border: 1px solid rgba(2, 45, 98, 0.04);
  border-radius: 14px;
  padding: 16px 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-stack-item-premium:hover {
  background: #ffffff;
  border-color: rgba(239, 49, 57, 0.2);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px rgba(2, 45, 98, 0.06);
}

.tech-icon-wrapper-premium {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.tech-stack-item-premium:hover .tech-icon-wrapper-premium {
  transform: rotate(6deg) scale(1.1);
}

.tech-svg {
  width: 28px;
  height: 28px;
  transition: all 0.3s ease;
}

.tech-img-icon {
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.tech-name-premium {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  letter-spacing: -0.2px;
}

/* Specific theme classes */
.php-bg { background: rgba(119, 123, 180, 0.08); }
.python-bg { background: rgba(55, 118, 171, 0.08); }
.laravel-bg { background: rgba(255, 45, 32, 0.08); }
.node-bg { background: rgba(51, 153, 51, 0.08); }
.angular-bg { background: rgba(221, 0, 49, 0.08); }
.wordpress-bg { background: rgba(33, 117, 155, 0.08); }
.shopify-bg { background: rgba(150, 191, 72, 0.08); }
.wix-bg { background: rgba(0, 0, 0, 0.06); }
.kotlin-bg { background: rgba(127, 82, 255, 0.08); }
.java-bg { background: rgba(234, 45, 66, 0.08); }
.react-bg { background: rgba(97, 218, 251, 0.08); }
.flutter-bg { background: rgba(2, 86, 155, 0.08); }
.swift-bg { background: rgba(240, 81, 35, 0.08); }
.objc-bg { background: rgba(74, 144, 226, 0.08); }
.solidity-bg { background: rgba(54, 54, 54, 0.08); }
.eth-bg { background: rgba(140, 140, 224, 0.08); }
.btc-bg { background: rgba(247, 147, 26, 0.08); }
.smart-bg { background: rgba(76, 175, 80, 0.08); }
.analytics-bg { background: rgba(244, 180, 0, 0.08); }
.googleads-bg { background: rgba(66, 133, 244, 0.08); }
.meta-bg { background: rgba(6, 149, 239, 0.08); }
.seo-bg { background: rgba(15, 157, 88, 0.08); }

