/* ============================================
   TRUE SERVE BPO - Custom Styles
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0a1628;
  --primary-light: #112240;
  --accent: #00b4d8;
  --accent-dark: #0077b6;
  --accent-glow: rgba(0, 180, 216, 0.3);
  --secondary: #6c63ff;
  --gold: #f0b232;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --dark: #060d1b;
  --card-bg: rgba(17, 34, 64, 0.6);
  --glass: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.08);
  --gradient-1: linear-gradient(135deg, #00b4d8, #6c63ff);
  --gradient-2: linear-gradient(135deg, #0077b6, #00b4d8);
  --shadow: 0 20px 60px rgba(0,0,0,0.3);
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--white);
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

/* ---- NAVBAR ---- */
.navbar-custom {
  background: rgba(6, 13, 27, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  transition: all 0.4s ease;
  z-index: 1050;
}
.navbar-custom.scrolled {
  background: rgba(6, 13, 27, 0.98) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 8px 0;
}
.navbar-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}
.navbar-brand img {
  height: 40px;
  width: auto;
}
.navbar-custom .nav-link {
  color: var(--text-muted) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 18px !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s;
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active { color: var(--accent) !important; }
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 18px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { width: calc(100% - 36px); }
.navbar-toggler { border: 1px solid var(--accent) !important; }
.navbar-toggler-icon { filter: brightness(2); }

/* ---- BUTTONS ---- */
.btn-accent {
  background: var(--gradient-1);
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 25px var(--accent-glow);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--accent-glow);
  color: #fff;
}
.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 12px 34px;
  border-radius: 50px;
  font-weight: 600;
  background: transparent;
  transition: all 0.4s;
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--accent-glow);
}

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.25);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,13,27,0.92) 0%, rgba(6,13,27,0.6) 50%, rgba(0,119,182,0.15) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge i { font-size: 0.7rem; }
.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-title .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 50px;
}
.hero-stat h3 {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* ---- SECTION STYLES ---- */
section { padding: 100px 0; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0,180,216,0.3);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
  color: var(--accent);
  transition: all 0.4s;
}
.service-card:hover .service-icon {
  background: var(--gradient-1);
  color: #fff;
  transform: scale(1.1);
}
.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-weight: 700;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  transition: gap 0.3s;
}
.service-card:hover .learn-more { gap: 12px; }

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--primary); }
.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrapper img { border-radius: 24px; }
.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid var(--border);
}
.about-badge-float {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(6,13,27,0.9);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-badge-float h3 {
  font-size: 2rem;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.about-badge-float p { margin: 0; font-size: 0.85rem; color: var(--text-muted); }
.about-feature {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}
.about-feature-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.about-feature h5 { font-size: 1rem; margin-bottom: 4px; }
.about-feature p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- WHY CHOOSE US / STATS ---- */
.stats-section {
  background: var(--primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-box {
  text-align: center;
  padding: 40px 20px;
}
.stat-box h2 {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-box p { color: var(--text-muted); font-weight: 500; margin: 0; }

/* ---- PROCESS SECTION ---- */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.process-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 8px 30px var(--accent-glow);
}
.process-step h5 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--primary);
  position: relative;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
  height: 100%;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,180,216,0.2);
}
.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}
.testimonial-author h6 { margin: 0; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-1);
  opacity: 0.15;
}
.cta-section h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--primary);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}
.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand img {
  height: 35px;
  width: auto;
}
.footer p { color: var(--text-muted); font-size: 0.92rem; }
.footer h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i { color: var(--accent); margin-top: 4px; }
.footer-contact-item span { color: var(--text-muted); font-size: 0.9rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

/* ---- PAGE BANNER ---- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}
.page-banner .banner-bg {
  position: absolute;
  inset: 0;
}
.page-banner .banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}
.page-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,27,0.95) 0%, rgba(6,13,27,0.8) 100%);
}
.page-banner .banner-content { position: relative; z-index: 2; }
.page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.page-banner p { color: var(--text-muted); font-size: 1.1rem; }
.breadcrumb-custom .breadcrumb-item a { color: var(--accent); }
.breadcrumb-custom .breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ---- SERVICE DETAIL PAGE ---- */
.service-detail-section { padding: 80px 0; }
.service-detail-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-detail-img img { border-radius: 20px; width: 100%; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.95rem;
}
.feature-list li i { color: var(--accent); margin-top: 4px; }
.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.sidebar-card h5 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.sidebar-service-list { list-style: none; padding: 0; }
.sidebar-service-list li { margin-bottom: 2px; }
.sidebar-service-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--text-muted);
  border-radius: 10px;
  transition: all 0.3s;
  font-size: 0.92rem;
}
.sidebar-service-list a:hover,
.sidebar-service-list a.active {
  background: rgba(0,180,216,0.1);
  color: var(--accent);
}

/* ---- CONTACT PAGE ---- */
.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  backdrop-filter: blur(10px);
}
.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.92rem;
  transition: all 0.3s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  color: var(--text);
}
.contact-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}
.contact-form .form-select option {
  background-color: #112240;
  color: white;
}
.contact-form .form-control::placeholder { color: var(--text-muted); }
.contact-form label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: start;
  gap: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,180,216,0.3);
}
.contact-info-icon {
  width: 56px; height: 56px;
  min-width: 56px;
  border-radius: 14px;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
}
.contact-info-card h5 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---- ABOUT PAGE ---- */
.values-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  backdrop-filter: blur(10px);
}
.values-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,180,216,0.3);
}
.values-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: rgba(0,180,216,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--accent);
}
.values-card h5 { font-size: 1.05rem; margin-bottom: 10px; }
.values-card p { color: var(--text-muted); font-size: 0.9rem; }
.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 12px; top: 28px;
  width: 2px; height: calc(100% + 10px);
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  position: absolute;
  left: 0; top: 6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gradient-1);
  box-shadow: 0 0 15px var(--accent-glow);
}
.timeline-item h5 { font-size: 1.05rem; margin-bottom: 6px; }
.timeline-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s ease;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s ease;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- FLOATING PARTICLES ---- */
.particles-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-particle 15s infinite linear;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-title { font-size: 2.6rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section-title { font-size: 2rem; }
  .page-banner h1 { font-size: 2.2rem; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .hero-stat h3 { font-size: 1.8rem; }
  section { padding: 60px 0; }
  .contact-form-wrapper { padding: 28px; }
  .page-banner { padding: 130px 0 60px; }
}
