/* =============================================
   ARIKA GROUP - Main Stylesheet
   ============================================= */

/* Root Variables */
:root {
  --primary: #1877f2;
  --primary-dark: #0d5fd4;
  --primary-light: #e7f0fd;
  --secondary: #0a2540;
  --accent: #1565c0;
  --light-bg: #f0f4ff;
  --text-dark: #0a2540;
  --text-muted: #6c757d;
  --white: #ffffff;
  --border: #dce8fb;
  --shadow: 0 4px 20px rgba(24,119,242,0.08);
  --shadow-hover: 0 8px 30px rgba(24,119,242,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* Base */
body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: #0a2540;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.82rem;
}
.topbar span { display: inline-flex; align-items: center; gap: 4px; }
.topbar-right a {
  color: rgba(255,255,255,0.75);
  margin-left: 12px;
  font-size: 0.9rem;
  transition: var(--transition);
}
.topbar-right a:hover { color: #90c4ff; }

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(24,119,242,0.1);
  padding: 10px 0;
  transition: var(--transition);
}
.navbar-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.navbar-brand { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.brand-arika { color: var(--primary); }
.brand-group { color: var(--secondary); }

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-item {
  margin: 0 4px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background: rgba(24,119,242,0.06);
}
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
}
.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-item:hover { background: rgba(230,57,70,0.08); color: var(--primary); }
.navbar-toggler { border: none; padding: 4px 8px; }
.navbar-toggler:focus { box-shadow: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 92vh;
  background: linear-gradient(135deg, #0a2540 0%, #0d3b6e 50%, #1877f2 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(24,119,242,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
/* Decorative bottom-left blob moved to hero-overlay::after */
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(21,101,192,0.25) 0%, transparent 70%);
  border-radius: 50%;
}
/* Fade gradient — solid navy left, fades into image on right */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    #0a2540 0%,
    #0a2540 25%,
    rgba(10,37,64,0.95) 35%,
    rgba(10,37,64,0.75) 45%,
    rgba(10,37,64,0.35) 55%,
    rgba(10,37,64,0.05) 65%,
    transparent 72%
  );
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.15); z-index: 0; }
.hero-content { position: relative; z-index: 3; padding: 60px 0; max-width: 480px; }
.hero-badge {
  display: inline-block;
  background: rgba(24,119,242,0.2);
  color: #90c4ff;
  border: 1px solid rgba(24,119,242,0.35);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.text-highlight { color: var(--primary); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(24,119,242,0.4);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: heroFloat 4s ease-in-out infinite;
}
.hero-product-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
.hero-section .container { position: relative; z-index: 3; }
.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Fade gradient — solid navy on left, fades to transparent revealing image on right */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    #0a2540 0%,
    #0a2540 40%,
    rgba(10,37,64,0.8) 48%,
    rgba(10,37,64,0.3) 54%,
    transparent 62%
  );
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: #0a2540;
  padding: 0;
}
.stat-item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-padding { padding: 80px 0; }
.bg-light-custom { background: #f0f4ff; }
.section-badge {
  display: inline-block;
  background: rgba(230,57,70,0.1);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   PRODUCT CARDS (Homepage)
   ============================================= */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(230,57,70,0.2);
}
.product-card-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--light-bg);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
}
.product-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.product-card-link:hover { gap: 10px; color: var(--primary-dark); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-image-block { position: relative; }
.why-img-placeholder {
  background: linear-gradient(135deg, #0a2540, #1877f2);
  border-radius: var(--radius);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 4rem;
  gap: 12px;
}
.why-img-placeholder span { font-size: 1rem; font-weight: 600; }
.why-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  color: var(--primary);
}
.why-badge-float div { display: flex; flex-direction: column; }
.why-badge-float strong { font-size: 0.9rem; color: var(--text-dark); }
.why-badge-float small { font-size: 0.75rem; color: var(--text-muted); }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover { border-color: rgba(230,57,70,0.3); box-shadow: var(--shadow); }
.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(230,57,70,0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.why-item h6 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* =============================================
   PERSONAL CARE VISUAL
   ============================================= */
.personal-care-visual {
  background: linear-gradient(135deg, #1877f2, #0a2540);
  border-radius: var(--radius);
  padding: 40px;
}
.pc-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pc-icon-item {
  background: rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.pc-icon-item.featured { background: rgba(255,255,255,0.5); }
.pc-icon-item i { font-size: 2rem; display: block; margin-bottom: 8px; }
.pc-icon-item span { font-size: 0.82rem; font-weight: 600; }
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  font-weight: 500;
}
.feature-list li i { color: var(--primary); font-size: 1rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { color: #ffc107; font-size: 0.85rem; }
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1877f2, #0a2540);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author small { color: var(--text-muted); font-size: 0.78rem; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #1877f2 0%, #0d5fd4 100%);
  padding: 80px 0;
  color: var(--white);
}
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 1rem; opacity: 0.85; }
.btn-light-custom {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-light-custom:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-light-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1877f2 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24,119,242,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.88rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-image-block { position: relative; }
.about-img-placeholder {
  background: linear-gradient(135deg, #0a2540, #1877f2);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 5rem;
  gap: 16px;
}
.about-img-placeholder span { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.7); }
.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(24,119,242,0.4);
}
.about-exp-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-exp-badge span { font-size: 0.78rem; opacity: 0.9; }
.about-stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid var(--border);
  text-align: center;
}
.about-stat h4 { font-size: 1.6rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.about-stat p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* Mission Vision Values */
.mvv-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
}
.mvv-card.mission { background: linear-gradient(135deg, #667eea15, #764ba215); border: 1px solid #667eea30; }
.mvv-card.vision { background: linear-gradient(135deg, #f093fb15, #f5576c15); border: 1px solid #f5576c30; }
.mvv-card.values { background: linear-gradient(135deg, #43e97b15, #38f9d715); border: 1px solid #43e97b30; }
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.mvv-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.mvv-card h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.mvv-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.values-list { list-style: none; padding: 0; margin: 0; }
.values-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.values-list li i { color: #43e97b; }

/* Timeline */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.2);
}
.timeline-year {
  min-width: 60px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  padding-top: 2px;
}
.timeline-content h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.timeline-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.product-section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.product-section:last-child { border-bottom: none; margin-bottom: 0; }
.product-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.product-section-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}
.product-section-header h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.product-section-header p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.product-item-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.product-item-card:hover {
  border-color: rgba(230,57,70,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-item-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.product-item-card h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.product-item-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.product-tag {
  display: inline-block;
  background: rgba(230,57,70,0.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.promise-item {
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.promise-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.promise-item i { font-size: 2rem; color: var(--primary); display: block; margin-bottom: 12px; }
.promise-item h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.promise-item p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }

/* =============================================
   TEAM PAGE
   ============================================= */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 20px rgba(24,119,242,0);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(24,119,242,0.18);
  border-color: rgba(24,119,242,0.25);
}
.featured-team { border-top: 3px solid var(--primary); }
.team-avatar { margin-bottom: 16px; }
.avatar-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1877f2, #0a2540);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 auto;
}
.avatar-placeholder.sm { width: 60px; height: 60px; font-size: 0.85rem; }
.team-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-info h6 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.team-role {
  display: inline-block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.team-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--light-bg);
  color: var(--text-muted);
  border-radius: 50%;
  font-size: 0.85rem;
  margin: 0 3px;
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); color: var(--white); }
.culture-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.culture-item:hover { box-shadow: var(--shadow); }
.culture-item i { font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 8px; }
.culture-item h6 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.culture-item p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }
.culture-stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.culture-stat-card h3 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.culture-stat-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* =============================================
   CAREER PAGE
   ============================================= */
.career-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 600;
}
.career-perk i { color: var(--primary); font-size: 1.1rem; }
.career-visual {
  background: linear-gradient(135deg, #0a2540, #1877f2);
  border-radius: var(--radius);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-visual-inner { text-align: center; color: var(--white); padding: 32px; }
.career-visual-inner i { font-size: 3.5rem; opacity: 0.8; display: block; margin-bottom: 16px; }
.career-visual-inner h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.career-visual-inner p { font-size: 0.88rem; opacity: 0.8; margin: 0; }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(230,57,70,0.2); }
.benefit-card i { font-size: 1.8rem; color: var(--primary); display: block; margin-bottom: 14px; }
.benefit-card h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.job-listings { display: flex; flex-direction: column; gap: 12px; }
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
  flex-wrap: wrap;
}
.job-card:hover { border-color: rgba(230,57,70,0.3); box-shadow: var(--shadow); }
.job-info { display: flex; align-items: center; gap: 16px; }
.job-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(230,57,70,0.08);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.job-info h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.job-meta { display: flex; gap: 14px; flex-wrap: wrap; }
.job-meta span { font-size: 0.78rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.job-actions { display: flex; align-items: center; gap: 12px; }
.job-dept {
  background: rgba(69,123,157,0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}
.btn-apply {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-apply:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }
.general-apply-box {
  background: linear-gradient(135deg, #0a2540, #1877f2);
  border-radius: var(--radius);
  padding: 32px 36px;
  color: var(--white);
}
.general-apply-box h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.general-apply-box p { opacity: 0.85; font-size: 0.9rem; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(230,57,70,0.1);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h6 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.contact-social h6 { font-size: 0.88rem; font-weight: 700; }
.social-btn {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-card h4 { font-size: 1.2rem; font-weight: 700; }
.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  transition: var(--transition);
}
.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
  outline: none;
}
.form-label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.office-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.office-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.office-icon { font-size: 1.8rem; color: var(--primary); margin-bottom: 12px; }
.office-card h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.office-card p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.office-card a { font-size: 0.83rem; color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.office-card a:hover { color: var(--primary); }
.map-section { background: #e9ecef; line-height: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0a2540; color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }
.footer-brand { font-size: 1.4rem; font-weight: 800; }
.footer-desc { font-size: 0.85rem; line-height: 1.7; opacity: 0.75; max-width: 300px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-right: 6px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.65);
  font-size: 0.83rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact li i { color: var(--primary); margin-top: 2px; min-width: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
  .why-badge-float { right: 0; bottom: -15px; }
  .about-exp-badge { right: 0; }
  .hero-section { min-height: 75vh; }
  .section-padding { padding: 60px 0; }
}
@media (max-width: 767px) {
  .topbar-left span:last-child { display: none; }
  .hero-btns .btn-outline-custom { margin-top: 10px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .job-card { flex-direction: column; align-items: flex-start; }
  .contact-form-card { padding: 24px 20px; }
  .general-apply-box { padding: 24px 20px; }
  .why-badge-float { position: static; margin-top: 16px; display: inline-flex; }
  .about-exp-badge { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 575px) {
  .hero-title { font-size: 1.8rem; }
  .hero-btns { display: flex; flex-direction: column; gap: 12px; }
  .hero-btns .btn-primary-custom,
  .hero-btns .btn-outline-custom { text-align: center; }
  .product-section-header { flex-direction: column; align-items: flex-start; }
  .timeline { padding-left: 28px; }
}

/* =============================================
   ANIMATIONS & SCROLL EFFECTS
   ============================================= */
#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 10px 0;
}
.fade-in-el {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   AFTER-SALES SERVICE SECTION
   ============================================= */
.service-highlight-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: var(--transition);
}
.service-highlight-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-highlight-item i {
  font-size: 1.4rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.service-highlight-item h6 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.service-highlight-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.service-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.service-stat-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.service-stat-card.highlight {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.service-stat-card.highlight p { color: rgba(255,255,255,0.85); }
.service-stat-card i {
  font-size: 1.6rem;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}
.service-stat-card.highlight i { color: rgba(255,255,255,0.9); }
.service-stat-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}
.service-stat-card.highlight h3 { color: var(--white); }
.service-stat-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}
