/* =============================================
   The Sky Jobs Clone - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Nunito+Sans:wght@400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --primary-color: #ef4444; /* Accent Orange */
  --primary-hover: #dc2626;
  --header-top-bg: #2563eb; /* Primary Blue */
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #f9f9f9;
  --footer-bg: #18181b; /* Dark Charcoal */
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-gray);
  line-height: 1.6;
  background-color: #ffffff;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
}

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.section-padding { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #fff;
}

/* ============================
   HEADER & TOP BAR
============================ */
.top-bar {
  background-color: var(--header-top-bg);
  color: #ffffff;
  padding: 8px 0;
  font-size: 14px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  gap: 20px;
}
.top-contact i { margin-right: 5px; }
.top-bar-right {
  display: flex;
  gap: 15px;
}
.top-bar-right a { color: #fff; }
.top-bar-right a:hover { opacity: 0.8; }

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo { display: flex; align-items: center; }

.main-nav ul {
  display: flex;
  gap: 30px;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  height: 80px;
}
.main-nav > ul > li > a i {
  font-size: 10px;
  margin-left: 5px;
  color: #999;
}
.main-nav > ul > li:hover > a { color: var(--primary-color); }

/* Dropdowns */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-top: 3px solid var(--primary-color, #1a73e8);
  border-radius: 0 0 6px 6px;
  padding: 8px 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.main-nav li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li {
  width: 100%;
  list-style: none;
}
.dropdown li a {
  display: block;
  padding: 9px 18px;
  color: #888888;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
  transition: all 0.2s ease;
}
.dropdown li a:hover {
  background: #f8f9fa;
  color: var(--primary-color, #1a73e8);
  padding-left: 22px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
}

/* ============================
   HERO SLIDER SECTION
============================ */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  height: 520px;
  background: #1d4ed8;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 520px;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 520px;
  background-size: cover;
  background-position: center right;
  opacity: 0;
  visibility: hidden;
  display: none;
  align-items: center;
  transition: opacity 0.4s ease-in-out;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  display: flex;
  z-index: 3;
}

/* Blue Angled Overlay matching theskyjobs.com */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, #2563eb 0%, #2563eb 46%, rgba(37,99,235,0.85) 54%, transparent 72%);
  z-index: 2;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.hero-content {
  max-width: 580px;
  color: #ffffff;
  padding: 80px 0;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255,255,255,0.4);
  display: inline-block;
  padding-bottom: 5px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #f1f5f9;
}

/* Slider Controls */
.hero-slider-prev,
.hero-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #1e293b;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.hero-slider-prev:hover,
.hero-slider-next:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.hero-slider-prev { left: 25px; }
.hero-slider-next { right: 25px; }

/* Dots */
.hero-slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.95);
  padding: 6px 16px;
  border-radius: 20px;
  display: flex;
  gap: 10px;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-slider-dots .dot.active {
  background: #1e293b;
  width: 24px;
  border-radius: 10px;
}


/* ============================
   TOP COMPANIES CAROUSEL
============================ */
.companies-section {
  padding: 50px 0;
  text-align: center;
}
.companies-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
}
.companies-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px 30px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(226,232,240,0.8);
}
.companies-card::before,
.companies-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.companies-card::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}
.companies-card::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

.companies-carousel-track {
  display: flex;
  align-items: center;
  gap: 45px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}
.companies-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  cursor: pointer;
}
.company-logo i {
  font-size: 26px;
}
.company-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ============================
   OUR MISSION
============================ */
.mission-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.mission-subtitle {
  color: var(--header-top-bg);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.mission-title {
  font-size: 32px;
  margin-bottom: 20px;
}
.mission-desc {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-bottom: 30px;
}
.mission-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.mission-list li {
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mission-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ============================
   HOW IT WORKS
============================ */
.how-it-works-section { padding: 80px 0; }
.how-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
.how-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.how-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
}
.how-list li i {
  color: #28a745;
  font-size: 18px;
}
.how-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.how-card {
  padding: 30px;
  border-radius: 8px;
  color: #fff;
}
.how-card-1 { background-color: #69a3df; }
.how-card-2 { background-color: #dfb15b; }
.how-card-3 { background-color: #b388b9; }
.how-card-4 { background-color: #62bd93; }

.how-card .step-num {
  font-size: 40px;
  font-weight: 800;
  opacity: 0.7;
  margin-bottom: 10px;
  line-height: 1;
}
.how-card h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 18px;
}
.how-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* ============================
   ACCELERATE / PREMIUM CTA
============================ */
.premium-cta-section {
  padding: 0 0 80px 0;
}
.premium-cta-box {
  background-color: #2352db;
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  color: #fff;
}
.premium-cta-img {
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.premium-cta-content h3 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}
.premium-cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--text-dark);
  font-size: 12px;
  padding: 10px 20px;
}
.btn-white i { margin-right: 5px; }


/* ============================
   TOP CONSULTANTS
============================ */
.consultants-section {
  background-color: #f8fafc;
  padding: 70px 0;
  text-align: center;
}
.consultants-title {
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 40px;
}
.consultants-grid {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
}
.consultant-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.consultant-item:hover {
  transform: translateY(-5px);
}
.landmark-icon {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.consultant-item:hover .landmark-icon {
  transform: scale(1.1);
}
.consultant-item span {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  transition: color 0.3s ease;
}
.consultant-item:hover span {
  color: #2563eb;
}

/* ============================
   TRENDING CATEGORIES
============================ */
.categories-section {
  padding: 80px 0;
  text-align: center;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.category-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  transition: box-shadow 0.3s;
  text-align: left;
}
.category-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.category-card i {
  font-size: 24px;
  color: var(--text-dark);
}
.category-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ============================
   STATS BANNER
============================ */
.stats-banner {
  background-color: #2352db;
  color: #fff;
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-num {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================
   WHY CHOOSE US
============================ */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-left .subtitle {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 10px;
}
.why-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.why-left .desc {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.why-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.why-feature-icon {
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header-top-bg);
  flex-shrink: 0;
}
.why-feature h4 { font-size: 16px; margin-bottom: 5px; }
.why-feature p { font-size: 14px; }
.why-right img { border-radius: 10px; }

/* ============================
   RESUME CHECK BANNER
============================ */
.resume-check-section {
  padding: 0;
}
.resume-check-box {
  background-color: #2352db;
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: #fff;
}
.resume-check-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.resume-check-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.resume-check-content h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
}
.resume-check-content p {
  font-size: 18px;
  margin-bottom: 20px;
}
.resume-check-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.resume-check-list li i { color: #28a745; }
.resume-check-btn {
  background: #fff;
  color: var(--text-dark);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 20px;
  align-self: flex-start;
}

/* ============================
   FOOTER
============================ */
.site-footer {
  background-color: var(--footer-bg);
  color: #a0a0a0;
  padding: 60px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}
.footer-col-logo p {
  margin-top: 15px;
  font-size: 14px;
}
.footer-heading {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { color: #a0a0a0; font-size: 14px; }
.footer-nav a:hover { color: #fff; }
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: #e2e8f0;
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 99;
}

/* ============================
   SUBPAGES LAYOUT & BANNER
============================ */
.page-banner {
  background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.page-banner h1 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}
.breadcrumb a { color: #fff; text-decoration: underline; }
.breadcrumb span { opacity: 0.7; }

.page-wrapper {
  padding: 60px 0;
  background: #f8fafc;
}
.page-grid {
  display: grid;
  grid-template-columns: 2.8fr 1.2fr;
  gap: 40px;
}
.full-width-grid {
  display: block;
}
.main-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.main-card h2 {
  font-size: 26px;
  color: #1e293b;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
}
.main-card h3 {
  font-size: 20px;
  color: #1e293b;
  margin: 25px 0 15px 0;
}
.main-card p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15px;
}
.feature-checklist {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #334155;
  font-size: 15px;
}
.feature-checklist li i {
  color: #16a34a;
  font-size: 18px;
  margin-top: 2px;
}

.sidebar-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}
.sidebar-card h4 {
  font-size: 18px;
  color: #1e293b;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e2e8f0;
}
.sidebar-menu {
  list-style: none;
}
.sidebar-menu li {
  margin-bottom: 10px;
}
.sidebar-menu a {
  display: block;
  padding: 10px 15px;
  background: #f1f5f9;
  color: #334155;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.sidebar-menu a:hover, .sidebar-menu a.active {
  background: #1a73e8;
  color: #fff;
}

.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #334155;
  font-size: 14px;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

/* ============================
   PRODUCT PAGE LAYOUT (theskyjobs.com style)
============================ */
.product-page-section {
  padding: 40px 0 60px 0;
  background: #fbfbfd;
}
.product-breadcrumb-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: #888;
  font-size: 14px;
}
.product-breadcrumb-bar a {
  color: #666;
  text-decoration: none;
}
.product-breadcrumb-bar a:hover {
  color: #2563eb;
}
.product-nav-controls {
  display: flex;
  gap: 12px;
  color: #888;
  font-size: 14px;
}
.product-nav-controls a {
  color: #888;
  text-decoration: none;
}

.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.product-gallery {
  position: relative;
}
.product-gallery img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.product-expand-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-info-box {
  display: flex;
  flex-direction: column;
}
.product-info-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
  line-height: 1.25;
}
.product-info-price {
  font-size: 26px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 25px;
}
.product-short-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.product-short-features li {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-short-features li::before {
  content: "•";
  color: #999;
  font-size: 18px;
}

.product-cart-action {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  height: 42px;
}
.quantity-stepper button {
  width: 36px;
  height: 100%;
  border: none;
  background: #f8fafc;
  color: #475569;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.quantity-stepper button:hover {
  background: #e2e8f0;
}
.quantity-stepper input {
  width: 45px;
  height: 100%;
  border: none;
  border-left: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  outline: none;
}

.btn-add-to-cart {
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  padding: 0 30px;
  height: 42px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-add-to-cart:hover {
  background-color: #1d4ed8;
}

.product-full-description {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.product-full-description p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.product-full-description ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.product-full-description ul li {
  color: #334155;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.product-full-description ul li i {
  color: #16a34a;
  margin-top: 4px;
}

/* Related Products Grid */
.related-products-box {
  margin-top: 60px;
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.related-title {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 30px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.related-card {
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s;
}
.related-card:hover {
  transform: translateY(-4px);
}
.related-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}
.related-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}
.related-card-cat {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 6px;
}
.related-card-price {
  font-size: 15px;
  font-weight: 700;
  color: #2563eb;
}

/* ============================
   RESPONSIVE & MOBILE MENU
============================ */
.mobile-menu-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.mobile-menu-wrapper.open {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (min-width: 993px) {
  .mobile-menu-wrapper {
    display: none !important;
  }
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.mobile-menu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 340px;
  height: 100%;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  overflow: hidden;
}

.mobile-menu-wrapper.open .mobile-menu-drawer {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #475569;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.mobile-menu-body {
  padding: 10px 0;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-link-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-nav-link-wrap:hover {
  background: #f8fafc;
}

.mobile-nav-link-wrap a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #1e293b;
  text-decoration: none;
  flex: 1;
  text-transform: uppercase;
}

.mobile-nav-link {
  display: block;
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: #1e293b;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s;
}
.mobile-nav-link:hover {
  background: #f8fafc;
  color: #2563eb;
}

.submenu-toggle {
  background: none;
  border: none;
  font-size: 12px;
  color: #64748b;
  padding: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-nav-item.active .submenu-toggle {
  transform: rotate(180deg);
  color: #2563eb;
}

.mobile-submenu {
  display: none;
  background: #f8fafc;
  padding: 5px 0;
  list-style: none;
  border-top: 1px solid #edf2f7;
}

.mobile-nav-item.active .mobile-submenu {
  display: block;
}

.mobile-submenu li a {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 13px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-submenu li a:hover {
  color: #2563eb;
  padding-left: 36px;
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-contact-info p {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 992px) {
  .product-main-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .main-nav, .header-action { display: none; }
  .mobile-menu-toggle { display: block; }
  .mission-grid, .how-grid, .why-grid { grid-template-columns: 1fr; }
  .how-cards { grid-template-columns: 1fr; }
  .premium-cta-box { flex-direction: column; text-align: center; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .resume-check-box { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .categories-grid { grid-template-columns: 1fr; }
  .top-bar-inner { flex-direction: column; gap: 10px; }
}

