/* ==========================================================================
   Ajath Infotech - UI Components Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(6, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.logo-link:hover .logo-img {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-cyan);
}

.nav-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  padding: 8px 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* Mobile Drawer & Backdrop Base State (Hidden on Desktop) */
.mobile-nav-drawer {
  display: none;
}

.drawer-backdrop {
  display: none;
}


/* --------------------------------------------------------------------------
   2. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 90px;
  overflow: hidden;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 20%;
  right: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(0, 240, 255, 0.07);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-pill);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(0, 240, 255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.hero-title {
  margin-bottom: 18px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 16px;
  line-height: 1.45;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-tech-trust {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.hero-trust-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-tech-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tech-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  color: #e2e8f0;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.tech-badge-item:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   3. Hero Enquiry Form Card
   -------------------------------------------------------------------------- */
.hero-form-card {
  background: rgba(13, 20, 32, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.form-header {
  margin-bottom: 22px;
}

.form-header h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.form-header p {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-size: 0.92rem;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 14px rgba(0, 240, 255, 0.25);
  background: rgba(10, 16, 26, 0.95);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-subtle);
}

.form-textarea {
  resize: vertical;
  min-height: 75px;
}

.form-select option {
  background: #0d1420;
  color: #fff;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 4px;
}

.form-status {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-emerald);
  color: #34d399;
}

.form-status.error {
  display: block;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid var(--accent-rose);
  color: #fb7185;
}

/* --------------------------------------------------------------------------
   4. Trust & Metrics Ribbon
   -------------------------------------------------------------------------- */
.stats-ribbon {
  padding: 36px 0;
  background: rgba(11, 17, 26, 0.6);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   5. Services Section & Service Cards
   -------------------------------------------------------------------------- */
.services-section {
  padding: 110px 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card.highlight-card {
  border-color: rgba(139, 92, 246, 0.45);
  background: linear-gradient(180deg, rgba(26, 20, 48, 0.8) 0%, rgba(13, 18, 30, 0.9) 100%);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
  transform: translateY(-4px);
}

.service-card.highlight-card::before {
  background: linear-gradient(90deg, #8b5cf6, #ec4899, #00f0ff);
}

.service-header {
  margin-bottom: 18px;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.highlight-card .service-icon-box {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.35);
  color: #c084fc;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.service-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.highlight-card .service-tag {
  color: #f472b6;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 22px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.service-list li svg {
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.highlight-card .service-list li svg {
  color: #c084fc;
}

.service-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
}

/* --------------------------------------------------------------------------
   6. Dedicated AI Section & Interactive Pipeline
   -------------------------------------------------------------------------- */
.ai-showcase-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #06090e 0%, #0d121e 50%, #06090e 100%);
  position: relative;
  overflow: hidden;
}

.workflow-container {
  margin: 50px 0 60px 0;
  background: rgba(11, 17, 28, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
}

.workflow-header {
  text-align: center;
  margin-bottom: 36px;
}

.workflow-steps-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 8px;
}

.workflow-step-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  cursor: pointer;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition-fast);
}

.workflow-step-node:hover, .workflow-step-node.active {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.35);
  transform: translateY(-3px);
}

.workflow-step-node.active .node-badge {
  background: var(--grad-primary);
  color: #06090e;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.node-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-white);
  margin-bottom: 10px;
  transition: all var(--transition-fast);
}

.node-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.node-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.workflow-connector {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 240, 255, 0.4), rgba(139, 92, 246, 0.4));
  position: relative;
  flex-shrink: 0;
}

.workflow-connector::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid rgba(0, 240, 255, 0.8);
  border-right: 2px solid rgba(0, 240, 255, 0.8);
  transform: rotate(45deg);
}

.workflow-inspector {
  margin-top: 30px;
  padding: 22px 26px;
  background: rgba(6, 9, 14, 0.75);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.inspector-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inspector-title {
  font-size: 1.05rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

.inspector-desc {
  font-size: 0.92rem;
  color: #cbd5e1;
}

/* AI Examples 8-Grid */
.ai-examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.ai-example-card {
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ai-example-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: #c084fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-example-card h4 {
  font-size: 0.98rem;
  color: var(--text-white);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. AI Agents Feature Section & Live Sandbox
   -------------------------------------------------------------------------- */
.ai-agents-section {
  padding: 120px 0;
  position: relative;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}

.agent-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.agent-card.selected-agent {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.25);
}

.agent-header {
  margin-bottom: 16px;
}

.agent-badge-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  margin-bottom: 12px;
}

.agent-title {
  font-size: 1.3rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.agent-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}

.agent-metrics-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan);
  padding: 6px 12px;
  background: rgba(0, 240, 255, 0.06);
  border-radius: var(--radius-xs);
  margin-bottom: 18px;
}

.agent-sandbox-wrapper {
  background: rgba(11, 17, 28, 0.85);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(139, 92, 246, 0.15);
  margin-bottom: 40px;
}

.sandbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.sandbox-chat-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.chat-bubble {
  max-width: 80%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.chat-bubble.user {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #e2e8f0;
}

.chat-bubble.agent {
  align-self: flex-end;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(0, 240, 255, 0.15) 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* --------------------------------------------------------------------------
   8. Our Work / Portfolio
   -------------------------------------------------------------------------- */
.portfolio-section {
  padding: 110px 0;
  position: relative;
}

.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--accent-cyan);
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.project-preview {
  height: 220px;
  position: relative;
  background: #080d16;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.project-badge-float {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
}

.project-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-white);
}

.project-summary {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.p-tag {
  font-size: 0.76rem;
  padding: 3px 9px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: #cbd5e1;
}

.project-metrics {
  font-size: 0.84rem;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 18px;
}

/* --------------------------------------------------------------------------
   9. Mobile App Showcase & Realistic Mockups
   -------------------------------------------------------------------------- */
.mobile-showcase-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #06090e 0%, #0c121e 50%, #06090e 100%);
  position: relative;
}

.phone-mockups-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin: 50px 0 60px 0;
}

.phone-device-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: 270px;
  height: 540px;
  background: #000;
  border-radius: 46px;
  padding: 10px;
  border: 4px solid #232b3b;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(0, 240, 255, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-normal);
}

.phone-device-wrapper:hover .phone-frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 45px rgba(0, 240, 255, 0.3);
}

.phone-island {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #111;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 38px;
  background: #090e17;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Native App Mockup Internal UI */
.mock-app-header {
  padding: 38px 16px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-app-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.mock-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
}

.phone-label-title {
  margin-top: 18px;
  font-size: 1.15rem;
  color: var(--text-white);
  text-align: center;
}

.phone-label-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Feature Highlights Grid */
.showcase-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.highlight-pill-card {
  background: rgba(17, 25, 39, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.highlight-pill-card svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.highlight-pill-card span {
  font-size: 0.92rem;
  font-weight: 600;
  color: #e2e8f0;
}

/* --------------------------------------------------------------------------
   10. Why Choose Us Section
   -------------------------------------------------------------------------- */
.why-us-section {
  padding: 110px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  padding: 34px 28px;
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   11. Technologies Section
   -------------------------------------------------------------------------- */
.tech-section {
  padding: 110px 0;
  position: relative;
}

.tech-categories-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tech-category-group {
  background: rgba(13, 20, 32, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.tech-group-title {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.tech-item-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.tech-item-card:hover {
  background: rgba(0, 240, 255, 0.06);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}

.tech-icon-container {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.tech-info {
  display: flex;
  flex-direction: column;
}

.tech-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-white);
}

.tech-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   12. Development Process Timeline
   -------------------------------------------------------------------------- */
.process-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #06090e 0%, #0a101b 50%, #06090e 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(0, 240, 255, 0.3);
  line-height: 1;
  margin-bottom: 12px;
}

.process-step-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--text-white);
}

.process-step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   13. Bottom Conversion CTA Section
   -------------------------------------------------------------------------- */
.bottom-cta-section {
  padding: 100px 0;
  position: relative;
}

.cta-banner-box {
  background: linear-gradient(135deg, rgba(13, 20, 32, 0.95) 0%, rgba(26, 20, 52, 0.95) 100%);
  border: 1px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 240, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-primary);
}

.cta-banner-box h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.cta-banner-box p {
  max-width: 720px;
  margin: 0 auto 36px auto;
  font-size: 1.2rem;
}

.cta-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   14. Contact Section & Interactive Google Map
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 110px 0;
  position: relative;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.detail-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-text h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.detail-text p, .detail-text a {
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 500;
}

.map-embed-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 220px;
  margin-top: 20px;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --------------------------------------------------------------------------
   15. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: #04060a;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 40px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 18px 0 24px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-cyan);
  padding-left: 4px;
}

.footer-bottom-bar {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   16. Modals & Notifications
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-dialog {
  background: #0d1420;
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px 32px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 240, 255, 0.15);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 1px solid var(--border-glass);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan);
}

/* Toast Alerts */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: #0d1420;
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slide-in-toast 0.3s var(--ease-spring);
}

.toast.success {
  border-color: var(--accent-emerald);
}

@keyframes slide-in-toast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
