/* ==========================================================================
   INFINITIX INFOTECH - WEBSITE DEVELOPMENT SERVICE PAGE STYLESHEET
   File: asset/css/website-development.css
   Theme: Deep Midnight Obsidian (#060913), Glassmorphism, Neon Blue Glows
   ========================================================================== */

/* Page Background Canvas */
.web-dev-page-body {
  background-color: #060913 !important;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 45%, rgba(124, 58, 237, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 85%, rgba(14, 165, 233, 0.12) 0%, transparent 45%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 28px 28px;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Poppins', sans-serif;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.text-gradient-ice {
  background: linear-gradient(135deg, #ffffff 0%, #60a5fa 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section Header Badges */
.web-dev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  color: #60a5fa;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

/* SECTION 1: HERO BANNER */
.web-dev-hero {
  padding: 140px 0 90px;
  position: relative;
}

.hero-heading {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn-hero-quote {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn-hero-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
  color: #ffffff;
}

.btn-hero-wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff !important;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

.btn-hero-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.btn-hero-portfolio {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  padding: 0.9rem 1.8rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero-portfolio:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Hero Mockup Wrapper & Floating Badges */
.hero-mockup-wrapper {
  position: relative;
}

.laptop-frame-glass {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  position: relative;
}

.laptop-screen-img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.floating-glass-badge {
  position: absolute;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  animation: floatBounce 4s ease-in-out infinite alternate;
  z-index: 5;
}

.badge-top-left {
  top: -20px;
  left: -20px;
}

.badge-bottom-right {
  bottom: -20px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* GLASS CARDS GENERAL */
.glass-card {
  background: rgba(13, 19, 36, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.2rem;
  transition: all 0.35 ease;
  position: relative;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.18);
}

.card-icon-gradient {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  border: 1px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

/* SECTION 2: WHY EVERY BUSINESS NEEDS A WEBSITE */
.why-need-card {
  border-left: 3px solid #3b82f6;
}

/* SECTION 3: ABOUT DETAILED SECTION */
.about-web-wrapper {
  background: rgba(10, 15, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem 3rem;
}

/* SECTION 4: TYPES OF WEBSITES (16 CARDS) */
.type-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.type-card-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* SECTION 5: DEVELOPMENT PROCESS TIMELINE */
.process-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step-card {
  background: rgba(13, 19, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.8rem;
  position: relative;
  transition: all 0.3s ease;
}

.process-step-card:hover {
  border-color: #3b82f6;
  transform: scale(1.02);
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

/* SECTION 6: FEATURES GRID (16 CARDS) */
.feature-card-item {
  padding: 1.8rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card-item:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(59, 130, 246, 0.4);
}

/* SECTION 7: TECH STACK GRID */
.tech-stack-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.tech-stack-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: #3b82f6;
  transform: translateY(-5px);
}

.tech-stack-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* SECTION 9: PORTFOLIO SHOWCASE */
.portfolio-showcase-card {
  background: rgba(13, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.portfolio-showcase-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.portfolio-img-box {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-showcase-card:hover .portfolio-img-box img {
  transform: scale(1.08);
}

.portfolio-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  font-size: 0.78rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

/* SECTION 10: PRICING PREVIEW */
.web-price-card {
  background: rgba(13, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 2.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
}

.web-price-card.featured-price {
  border-color: #3b82f6;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.9) 0%, rgba(13, 19, 36, 0.95) 100%);
}

.web-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 1rem 0;
}

/* SECTION 11: COMPARISON TABLE */
.comp-matrix-wrapper {
  background: rgba(13, 19, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow-x: auto;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  color: #cbd5e1;
}

.comp-table th, .comp-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comp-table th {
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  font-weight: 700;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.highlight-agency {
  background: rgba(59, 130, 246, 0.08);
  color: #ffffff !important;
  font-weight: 600;
}

/* SECTION 13: TESTIMONIAL CARDS */
.testimonial-card {
  background: rgba(13, 19, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
}

.client-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #3b82f6;
}

/* SECTION 14: FAQS ACCORDION */
.web-faq-item {
  background: rgba(13, 19, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.web-faq-button {
  background: transparent !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
}

.web-faq-button:not(.collapsed) {
  color: #60a5fa !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.web-faq-body {
  padding: 1.25rem 1.5rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* SECTION 16: CALL TO ACTION BANNER */
.web-cta-banner {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25) 0%, rgba(124, 58, 237, 0.25) 100%), rgba(10, 15, 28, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 28px;
  padding: 4rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Responsive Tweaks */
@media (max-width: 991px) {
  .web-dev-hero { padding: 110px 0 60px; }
  .badge-top-left, .badge-bottom-right { display: none; }
  .about-web-wrapper { padding: 2rem 1.5rem; }
}
