/* ==========================================================================
   Panther Planner - Main Stylesheet
   ========================================================================== */

:root {
  --primary-orange: #ff7a1a;
  --primary-orange-hover: #e56708;
  --primary-orange-light: #fff5ed;
  --primary-blue: #2563eb;
  --primary-blue-hover: #1d4ed8;
  --primary-blue-light: #eff6ff;

  --bg-dark: #0a0b0e;
  --bg-dark-card: #12141a;
  --bg-dark-border: #222634;

  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;

  --card-bg-orange: #fff9f5;
  --card-bg-blue: #f4f8ff;
  --card-border-orange: #ffebd9;
  --card-border-blue: #dbeafe;

  --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

.site-header {
  background-color: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.logo-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.logo-text .brand-sub {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-orange);
}

.nav-links a .dropdown-arrow {
  font-size: 12px;
  opacity: 0.7;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(255, 122, 26, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 26, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-blue {
  background-color: var(--primary-blue);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-blue:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-content h1 span.highlight {
  color: var(--primary-orange);
}

.hero-content p {
  font-size: 16px;
  color: var(--text-light-muted);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.6;
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 50px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
}

.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 122, 26, 0.15);
  border: 1px solid rgba(255, 122, 26, 0.3);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* Visual Right Showcase */
.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.showcase-container {
  width: 100%;
  height: 480px;
  position: relative;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  display: flex;
}

.showcase-left {
  width: 52%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.showcase-right {
  width: 48%;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 2px solid var(--primary-orange);
}

.showcase-tag {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-tag.blue-tag {
  background: rgba(37, 99, 235, 0.6);
  border-color: rgba(37, 99, 235, 0.8);
}

.badge-round-icon {
  background: rgba(255, 122, 26, 0.25);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--primary-orange);
  color: var(--primary-orange);
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.panther-glow-badge {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  background: var(--bg-dark);
  border: 3px solid var(--primary-orange);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 122, 26, 0.7);
}

.panther-glow-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marketing-icons-grid {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.marketing-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.seo-bg { background: #0284c7; }
.gads-bg { background: #ea4335; }
.meta-bg { background: #0666e5; }
.insta-bg { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

/* ==========================================================================
   Section Title Utility
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dark);
  text-transform: uppercase;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--primary-orange);
}

/* ==========================================================================
   Core Services Section
   ========================================================================== */

.core-services-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-card {
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card.recruitment {
  background-color: var(--card-bg-orange);
  border: 1px solid var(--card-border-orange);
}

.service-card.digital {
  background-color: var(--card-bg-blue);
  border: 1px solid var(--card-border-blue);
}

.card-watermark {
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 100px;
  font-weight: 900;
  opacity: 0.08;
  user-select: none;
  line-height: 1;
}

.card-flex-layout {
  display: flex;
  align-items: center;
  gap: 20px;
}

.card-chair-img {
  width: 140px;
  flex-shrink: 0;
}

.card-chair-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-laptop-img {
  width: 160px;
  flex-shrink: 0;
}

.card-laptop-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-content-area {
  flex-grow: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
}

.recruitment .card-icon {
  background: var(--primary-orange);
}

.digital .card-icon {
  background: var(--primary-blue);
}

.card-title-group h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 28px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.checklist-item i {
  color: var(--primary-orange);
}

.digital .checklist-item i {
  color: var(--primary-blue);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-choose-section {
  padding: 60px 0 80px 0;
  background-color: #fafbfc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.feature-box {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-orange);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff5ed;
  border: 1px dashed var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--primary-orange);
  font-size: 20px;
}

.feature-box h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ==========================================================================
   Detailed Banners Section
   ========================================================================== */

.banner-section {
  padding: 40px 0 80px 0;
}

.detailed-banner {
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.detailed-banner.banner-recruitment {
  background: linear-gradient(135deg, #fffcf9 0%, #fff7f2 100%);
  border: 1px solid var(--card-border-orange);
}

.detailed-banner.banner-digital {
  background: linear-gradient(135deg, #f8fafc 0%, #edf4ff 100%);
  border: 1px solid var(--card-border-blue);
}

.banner-img-col {
  position: relative;
  min-height: 340px;
}

.banner-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content-col {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-tag {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.banner-recruitment .banner-tag { color: var(--primary-orange); }
.banner-digital .banner-tag { color: var(--primary-blue); }

.banner-content-col h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.banner-content-col p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.digital-showcase-box {
  background: #0d111a;
  height: 100%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-screen {
  width: 85%;
  background: #161b26;
  border-radius: 12px;
  border: 1px solid #262f40;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  position: relative;
}

.floating-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Our Process Section
   ========================================================================== */

.process-section {
  padding: 60px 0 80px 0;
  background-color: #ffffff;
}

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  border-top: 2px dashed #cbd5e1;
  z-index: 1;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 4px 12px rgba(255, 122, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--primary-orange);
  font-size: 24px;
}

.step-card h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
}

/* ==========================================================================
   Metrics Banner Section
   ========================================================================== */

.metrics-section {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 48px 0;
}

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

.metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item:last-child {
  border-right: none;
}

.metric-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-orange);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-info p {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

/* ==========================================================================
   Industries & Testimonials Section (2 Column)
   ========================================================================== */

.split-content-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px 12px;
  margin-top: 32px;
}

.industry-item {
  text-align: center;
  padding: 16px 8px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.industry-item:hover {
  background: #ffffff;
  border-color: var(--primary-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.industry-item i {
  font-size: 22px;
  color: #475569;
  margin-bottom: 8px;
  display: block;
}

.industry-item span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonials-wrapper {
  margin-top: 32px;
}

.testimonials-cards-slider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-stars {
  color: var(--primary-orange);
  font-size: 14px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 13px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.client-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.client-details h5 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
}

.client-details p {
  font-size: 11px;
  color: var(--text-muted);
}

.dots-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
}

.dot.active {
  width: 20px;
  border-radius: 10px;
  background: var(--primary-orange);
}

/* ==========================================================================
   Bottom CTA Panther Banner
   ========================================================================== */

.bottom-cta-section {
  padding: 40px 0 80px 0;
}

.cta-banner {
  background: linear-gradient(135deg, #0d0f14 0%, #050608 100%);
  border-radius: 24px;
  padding: 40px 60px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panther-head-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 260px;
  object-fit: cover;
  opacity: 0.8;
  mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0));
}

.cta-content {
  position: relative;
  z-index: 2;
  margin-left: 160px;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.cta-content h2 span {
  color: var(--primary-orange);
}

.cta-content p {
  font-size: 14px;
  color: #94a3b8;
}

.cta-button-group {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Footer & Modal */
.site-footer {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 70px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand p {
  font-size: 13px;
  color: #94a3b8;
  margin: 16px 0 24px 0;
  line-height: 1.6;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 13px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-orange);
  color: #fff;
  border-color: var(--primary-orange);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 13px;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-info i {
  color: var(--primary-orange);
  font-size: 14px;
  margin-top: 3px;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #ffffff;
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 32px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
}

.modal-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid, .detailed-banner, .split-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-content {
    margin-left: 0;
  }
  .panther-head-bg {
    display: none;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  
  /* Hero Showcase Responsiveness */
  .showcase-container {
    height: auto;
    flex-direction: column;
  }
  .showcase-left, .showcase-right {
    width: 100%;
    min-height: 240px;
    padding: 24px 20px;
  }
  .showcase-right {
    border-left: none;
    border-top: 2px solid var(--primary-orange);
  }
  .panther-glow-badge {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
  }
  .marketing-icons-grid {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-primary, .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-cards-slider, .metrics-grid, .process-steps {
    grid-template-columns: 1fr;
  }
  .process-steps::before {
    display: none;
  }
  .metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
  }
  .cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 20px;
  }
  .cta-button-group {
    flex-direction: column;
    width: 100%;
  }
  .card-flex-layout {
    flex-direction: column;
  }
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero-content h1 {
    font-size: 32px;
  }
  .banner-content-col {
    padding: 28px 20px;
  }
  .banner-content-col h3 {
    font-size: 24px;
  }
  .mockup-screen {
    width: 95%;
    padding: 14px;
  }
  .floating-icon {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .contact-info-card, .contact-form-wrapper {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-content h1 {
    font-size: 24px;
  }
}

/* ==========================================================================
   Standalone Page Styles (Services & Contact Us)
   ========================================================================== */

.page-hero {
  background: linear-gradient(135deg, #0a0b0e 0%, #151821 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.page-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.page-hero-content p {
  font-size: 18px;
  color: #94a3b8;
  margin-bottom: 24px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--primary-orange);
  font-weight: 600;
}

.breadcrumb a {
  color: #cbd5e1;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb span {
  color: #64748b;
}

/* Contact Page Grid */
.contact-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

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

.contact-info-card {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-header h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
}

.contact-info-header p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 122, 26, 0.15);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.contact-item-text p, .contact-item-text a {
  color: #cbd5e1;
  font-size: 14px;
  transition: var(--transition);
}

.contact-item-text a:hover {
  color: var(--primary-orange);
}

.contact-socials-title {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.contact-social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social-icons a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
}

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

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group select,
.contact-form-wrapper .form-group textarea {
  padding: 14px 16px;
  background-color: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-dark);
  transition: var(--transition);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group select:focus,
.contact-form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.15);
}

.contact-map-section {
  padding: 0 0 80px 0;
  background-color: #f8fafc;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 1px solid #e2e8f0;
}

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

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.faq-grid {
  max-width: 900px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 20px 24px;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark);
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background: var(--primary-orange-light);
  color: var(--primary-orange);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-orange);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background: #ffffff;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 20px 24px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Floating WhatsApp & Phone Contact Widget
   ========================================================================== */

.floating-contact-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
}

.floating-btn i {
  font-size: 22px;
}

.floating-btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.floating-btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.floating-btn-call {
  background: linear-gradient(135deg, #ff7a1a 0%, #e56708 100%);
  box-shadow: 0 8px 20px rgba(255, 122, 26, 0.4);
}

.floating-btn-call:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 28px rgba(255, 122, 26, 0.6);
  color: #ffffff;
}

.floating-btn .btn-text {
  white-space: nowrap;
}

/* Pulsing animation for high visibility */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-btn-whatsapp {
  animation: pulseGlow 2.5s infinite;
}

/* Header Contact Actions for Mobile & Desktop */
.header-contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-contact-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  transition: var(--transition);
}

.icon-contact-btn.whatsapp-icon {
  background: #25D366;
}

.icon-contact-btn.phone-icon {
  background: var(--primary-orange);
}

.icon-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .icon-contact-btn {
    display: none !important;
  }

  .floating-contact-container {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  
  .floating-btn {
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
  }
  
  .floating-btn .btn-text {
    display: none;
  }
  
  .floating-btn i {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .navbar .btn-primary {
    padding: 8px 12px;
    font-size: 12px;
  }
  .logo {
    gap: 8px;
  }
  .logo-text .brand-name {
    font-size: 15px;
  }
  .logo-text .brand-sub {
    font-size: 12px;
  }
}

/* Sub-service & Value Additions */
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.sub-service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sub-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.sub-service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.sub-service-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.sub-service-icon.blue-icon {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.sub-service-header h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
}

.sub-service-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sub-service-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-service-features li {
  font-size: 13px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.sub-service-features li i {
  color: #10b981;
  font-size: 14px;
}

/* Trust Stats & Case Studies Section */
.case-studies-section {
  padding: 80px 0;
  background: #0a0b0e;
  color: #ffffff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.case-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--bg-dark-border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-badge {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 16px;
}

.case-badge.recruitment-badge {
  background: rgba(255, 122, 26, 0.15);
  color: var(--primary-orange);
}

.case-badge.digital-badge {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
}

.case-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.case-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-metrics {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.metric-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-orange);
}

.metric-label {
  font-size: 12px;
  color: #cbd5e1;
}

/* Department Contacts Grid */
.department-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.dept-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dept-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-orange);
}

.dept-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dept-title i {
  color: var(--primary-orange);
}

.dept-info {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.dept-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dept-link:hover {
  text-decoration: underline;
}

/* SLA Timeline */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.timeline-box {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px;
  border-left: 4px solid var(--primary-orange);
  box-shadow: var(--shadow-sm);
}

.timeline-box .step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timeline-box h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 10px 0;
  color: var(--text-dark);
}

.timeline-box p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .timeline-steps {
    grid-template-columns: 1fr;
  }
}



