/* 
  Force Technologies - Premium Services Page Styles (2026 Edition)
  Design Inspiration: Apple, Tesla, Stripe
*/

:root {
  --p-primary: #0033ff;
  --p-secondary: #00c2ff;
  --p-dark: #050a18;
  --p-light: #f8fafc;
  --p-glass: rgba(255, 255, 255, 0.03);
  --p-glass-border: rgba(255, 255, 255, 0.08);
  --p-card-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  --p-card-hover-shadow: 0 30px 60px rgba(0, 51, 255, 0.15);
  --p-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Section Spacing --- */
.section-premium {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* --- Hero Section --- */
.services-hero {
  position: relative;
  padding: 190px 0 100px;
  background: linear-gradient(135deg, #051024 0%, #0a1628 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .services-hero {
    padding: 160px 0 80px;
  }
}

/* Background Image Overlay */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/breadcrum.jpg') center/cover no-repeat;
  opacity: 0.7;
  mix-blend-mode: normal;
  z-index: 1;
}

/* Reusing Glow Elements from About Page */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: glow-float 10s infinite ease-in-out alternate;
  pointer-events: none;
}

.hero-glow-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, transparent 70%);
}

.hero-glow-2 {
  bottom: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(30, 41, 59, 0.3) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes glow-float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -30px); }
}

.services-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 2;
}

.services-hero .container {
  position: relative;
  z-index: 3;
}

.services-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.6;
}


.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-premium {
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--p-transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-premium-primary {
  background: var(--p-primary);
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 51, 255, 0.3);
}

.btn-premium-primary:hover {
  background: #fff;
  color: var(--p-primary);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 51, 255, 0.4);
}

.btn-premium-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.btn-premium-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-5px);
}

.breadcrumb-modern {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-modern a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--p-transition);
}

.breadcrumb-modern a:hover {
  color: #fff;
}

/* --- Service Cards Grid --- */
.services-grid {
  background: var(--p-light);
  position: relative;
}

.services-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to bottom, #fff, transparent);
  pointer-events: none;
}

.premium-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--p-card-shadow);
  transition: var(--p-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.premium-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--p-card-hover-shadow);
  border-color: rgba(0, 51, 255, 0.1);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-icon {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 54px;
  height: 54px;
  background: var(--p-primary);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 25px rgba(0, 51, 255, 0.4);
  z-index: 3;
  border: 2px solid #fff;
}

.card-body-premium {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-body-premium h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--p-dark);
}

.card-body-premium p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.know-more-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--p-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--p-transition);
}

.know-more-premium i {
  transition: transform 0.3s ease;
}

.know-more-premium:hover {
  color: var(--p-secondary);
  gap: 12px;
}

.know-more-premium:hover i {
  transform: translateX(5px);
}

/* --- Service Side Navigation --- */
.services-list-modern {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--p-card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-list-modern a {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 5px;
  border-radius: 12px;
  color: var(--p-dark);
  font-weight: 500;
  transition: var(--p-transition);
  text-decoration: none;
  border-left: 4px solid transparent;
}

.services-list-modern a:hover,
.services-list-modern a.active {
  background: rgba(0, 51, 255, 0.05);
  color: var(--p-primary);
  border-left-color: var(--p-primary);
  padding-left: 25px;
}

/* --- Content Section Enhancements --- */
.content-wrapper {
  padding-left: 30px;
}

.content-wrapper h3 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--p-dark);
}

.feature-list-modern {
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

.feature-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #475569;
}

.feature-list-modern i {
  width: 32px;
  height: 32px;
  background: rgba(0, 51, 255, 0.1);
  color: var(--p-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.services-img-container {
  position: relative;
  margin-bottom: 50px;
}

.services-img-pro {
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.floating-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  background: #fff;
  padding: 15px 25px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.floating-badge i {
  color: #ff9900;
  font-size: 1.5rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* --- Trust Indicators --- */
.trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 992px) {
  .trust-indicators {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
}

.trust-item h5 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--p-primary);
  margin-bottom: 5px;
}

.trust-item p {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CTA Section --- */
.cta-premium-section {
  padding: 100px 0;
  background: var(--p-dark);
  color: #fff;
  border-radius: 50px;
  margin: 80px auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-premium-section .container {
  position: relative;
  z-index: 2;
}

.cta-premium-section h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-premium-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.15), transparent 40%);
}

/* Glassmorphism utility */
.glass-effect {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
