:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-dark: #0f172a;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* Prevents screen jumping when the scrollbar appears */
html {
  scrollbar-gutter: stable;
  overflow-y: scroll; /* Fallback for older browsers */
}

body {
  background-color: #f8fafc;
  color: var(--text-main);
}

/* Header */

/* Sticky Header for both PC and Mobile */
#site-header, 
.navbar {
  position: -webkit-sticky; /* For Safari / iOS */
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Official Company Logo */
.brand-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--bg-dark);
}
.brand-logo i {
  color: var(--primary);
  font-size: 1.4rem;
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--primary);
}

/* Settings Icon Button */
.icon-btn {
  background: #f1f5f9;
  border: 1px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-main);
  font-size: 1.1rem;
}
.icon-btn:hover {
  background: #e2e8f0;
  transform: rotate(45deg);
}

/* Right Slide-out Sidebar */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  z-index: 998;
}
.sidebar-overlay.active {
  visibility: visible;
  opacity: 1;
}

.right-sidebar {
  position: fixed;
  top: 0;
  right: -360px;
  width: 340px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  flex-direction: column;
}
.right-sidebar.open {
  right: 0;
}

.sidebar-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
}
.sidebar-body {
  padding: 20px;
}
.sidebar-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text-main);
  transition: var(--transition);
}
.sidebar-link span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.sidebar-link:hover {
  background: #f8fafc;
  border-color: var(--primary);
}
.sidebar-link.admin-highlight {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.sidebar-link.admin-highlight i {
  color: var(--primary);
  font-size: 1.3rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 30px 20px 25px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.badge {
  background: #dbeafe;
  color: var(--primary);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: var(--bg-dark);
  margin-bottom: 15px;
}
.hero-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Showcase & Filters */
.showcase-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.section-title-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 18px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* Grid & Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.product-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 8px;
}
.card-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--bg-dark);
}
.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.card-footer {
  margin-top: auto;
}
.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--bg-dark);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Footer */
.main-footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Loader */
.loader-spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  color: var(--text-muted);
}

/* Active Nav Indicator */
.active-nav {
  color: var(--primary) !important;
  font-weight: 700 !important;
}

/* Contact Page Layout */
.contact-section {
  padding: 30px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 50px;
}

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

.contact-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.contact-subtitle {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Info Cards (Matching Screenshot) */
.info-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-icon { background: #e0f2fe; color: #0284c7; }
.phone-icon    { background: #dcfce7; color: #16a34a; }
.email-icon    { background: #f3e8ff; color: #9333ea; }

.info-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 3px;
}

.info-text p, .info-text a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.info-text a:hover {
  color: var(--primary);
}

/* Form Card */
.form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.form-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* Fix input fields and labels */
.form-card .form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-card .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1e293b;
}

.form-card .form-group input,
.form-card .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  background-color: #f8fafc;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-card .form-group input:focus,
.form-card .form-group textarea:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Lock textarea width and allow only downward expanding */
textarea {
  resize: vertical !important; /* Only allows resizing up and down */
  max-width: 100%;
  box-sizing: border-box;
}

.contact-submit-btn {
  background: #0f3460;
  color: #ffffff;
  border: none;
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: var(--transition);
}

.contact-submit-btn:hover {
  background: #09203f;
}

/* Map Section */
.map-card-wrapper {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.map-card-header i {
  color: #f97316;
  font-size: 1.2rem;
}

.map-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
}

.map-card-header span {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: auto;
}

.map-frame-container iframe {
  display: block;
}

/* About Page Styles */
.about-hero {
  text-align: center;
  padding: 30px 20px 25px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.about-hero h1 {
  font-size: 2.6rem;
  color: #0f172a;
  max-width: 800px;
  margin: 0 auto 15px;
}

.about-hero p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.about-icon {
  width: 50px;
  height: 50px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.about-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #0f172a;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mission-box {
  background: #0f172a;
  color: #ffffff;
  border-radius: 16px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.mission-text h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.mission-text p {
  color: #94a3b8;
  max-width: 650px;
  line-height: 1.6;
}

.mission-cta {
  display: flex;
  gap: 12px;
}

.btn-solid {
  background: var(--primary);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid #475569;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* =========================================
   PREMIUM ANIMATED MOBILE MENU
   ========================================= */

/* Backdrop overlay to blur page background */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 98;
}

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

/* Redesigned Button Container */
.hamburger-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  z-index: 102;
  transition: all 0.2s ease;
}

.hamburger-btn:hover,
.hamburger-btn.active {
  background: #eff6ff;
  border-color: #bfdbfe;
}

/* Thin, elegant lines */
.hamburger-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #1e293b;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Smooth, precise 'X' animation */
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--primary);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Dropdown Panel */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }

  .hamburger-btn {
    display: flex;
  }

  .brand-logo span {
    white-space: nowrap;
    font-size: 1.05rem;
  }

  .mobile-nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;            /* Stretches full width with NO side gaps */
    margin: 0;              /* Removes side margins */
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 12px 16px 16px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

  .mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
  }

  /* List Items */
  .mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #1e293b;
    font-size: 0.98rem;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active-nav {
    background: #eff6ff;
    color: var(--primary);
  }

  /* Accent Colored Icons */
  .nav-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .icon-blue   { background: #eff6ff; color: #2563eb; }
  .icon-purple { background: #f3e8ff; color: #9333ea; }
  .icon-green  { background: #dcfce7; color: #16a34a; }

  .nav-text {
    flex-grow: 1;
  }

  .nav-arrow {
    color: #94a3b8;
    font-size: 0.8rem;
  }

  /* Subtle Hairline Dividers */
  .nav-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 2px 10px;
  }
}

/* =========================================
   4-COLUMN CORPORATE FOOTER
   ========================================= */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 60px 20px 24px;
  border-top: 1px solid #1e293b;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 36px;
  margin-bottom: 50px;
  width: 100%;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Brand Column */
.footer-brand span {
  color: #ffffff;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 16px 0 20px;
  max-width: 320px;
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: #1e293b;
  color: #cbd5e1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  color: #ffffff;
}

/* Headings & Links */
.footer-heading {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

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

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  font-size: 0.95rem;
}

.footer-contact-item a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* Ensure mobile menu attaches edge-to-edge without gaps */
@media (max-width: 768px) {
  .mobile-nav {
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    border-radius: 0 0 16px 16px;
    box-sizing: border-box;
  }
}

/* ==========================================================
   ADMIN PAGE FULL-WIDTH (1200px MATCHING ABOUT & CONTACT)
   ========================================================== */
.admin-wrapper {
  max-width: 1200px !important;
  margin: 40px auto;
  padding: 0 24px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

/* ==========================================================
   GETINTOWAY-STYLE 2-COLUMN LAYOUT (SHOWCASE & SINGLE PAGE)
   ========================================================== */
.software-layout-container {
  max-width: 1200px;
  margin: 30px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px; /* 🟢 minmax(0, 1fr) locks the width */
  gap: 40px;
  align-items: start;
}

@media (max-width: 960px) {
  .software-layout-container {
    grid-template-columns: 1fr;
  }
}

/* Main Feed Cards (GetIntoWay Style) */
.software-feed-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.software-item-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.software-item-card:hover {
  box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.software-item-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  text-decoration: none;
  display: inline-block;
}

.software-item-title:hover {
  color: var(--primary);
}

.software-item-date {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.software-item-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
}

@media (max-width: 640px) {
  .software-item-body {
    grid-template-columns: 1fr;
  }
}

.software-item-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.software-item-desc {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Clean Unified Button (Theme Blue) */
.btn-getinto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.btn-getinto:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}


/* Sidebar Widgets */
.sidebar-sticky-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.sidebar-search-box {
  display: flex;
  gap: 8px;
}

.sidebar-search-box input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  outline: none;
  font-size: 0.92rem;
}

.sidebar-search-box input:focus {
  border-color: #0ea5e9;
}

.sidebar-search-box button {
  background: var(--primary) !important;
  color: #ffffff;
  border: none;
  padding: 0 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.sidebar-search-box button:hover {
  background: var(--primary-hover) !important;
}

.widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 10px;
}

.widget-title i {
  color: var(--primary) !important;
}

.sidebar-releases-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-release-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.sidebar-release-link:hover {
  background: #e0f2fe;
  color: #0284c7;
}

.sidebar-release-link i {
  color: #0ea5e9;
  font-size: 0.75rem;
}

/* ==========================================================
   HOMEPAGE 3-COLUMN CARDS FIX (NO MORE OVERFLOW / SQUISHING)
   ========================================================== */

/* Grid container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.software-item-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.software-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -3px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* Title & Date */
.software-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  margin-bottom: 6px;
  line-height: 1.4;
  display: inline-block;
}

.software-item-title:hover {
  color: var(--primary);
}

.software-item-date {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Body: Stacks Image on Top, Text Below */
.software-item-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

/* Full Width Image */
.software-item-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* Description */
.software-item-desc {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* ==========================================================
   WHEN VIEWED IN WIDE LIST FEED (1 PER ROW WITH SIDEBAR)
   ========================================================== */
.software-feed-list .software-item-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
}

.software-feed-list .software-item-thumb {
  height: 160px;
}

.software-feed-list .btn-getinto {
  width: auto;
  display: inline-flex;
}

/* ==========================================================
   SINGLE PRODUCT PAGE STYLES (MATCHING BORISFX SEQUOIA SCREEN)
   ========================================================== */
.single-article {
  min-width: 0; /* 🟢 Prevents slider from stretching the container */
  max-width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}
.single-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.single-date {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.single-desc-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 30px;
}

/* Specs Highlight Box */
.build-highlights-card {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-left: 5px solid #0ea5e9;
  border-radius: 10px;
  padding: 20px 24px;
  margin: 30px 0;
}

.build-highlights-card h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 14px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 0.92rem;
}

.spec-item {
  display: flex;
  gap: 8px;
  color: #475569;
}

.spec-item strong {
  color: #0f172a;
}

.big-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: #0284c7;
  color: #ffffff;
  padding: 16px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.2s ease;
}

.big-download-btn:hover {
  background: #0369a1;
  transform: translateY(-2px);
}

/* ==========================================================
   GETINTOWAY SIDEBAR WIDGETS (PREMIUM RELEASES / TOP RATED)
   ========================================================== */
.giw-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

/* Widget Header (Matches Website Theme Blue) */
.giw-widget-header {
  background: var(--primary); /* #2563eb */
  color: #ffffff;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.giw-widget-header i {
  font-size: 1rem;
}

/* Card List */
.giw-widget-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8fafc;
}

/* Individual Item Link Card */
.giw-item-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* Item Link Hover */
.giw-item-link:hover {
  border-color: var(--primary);
  background: #eff6ff;
  transform: translateX(4px);
}

/* Chevron Pill (Theme Blue) */
.giw-chevron {
  width: 22px;
  height: 22px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* Item Title Text */
.giw-item-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.giw-item-link:hover .giw-item-text {
  color: var(--primary);
}


/* Mobile Fix for Products Page Feed on Phones */
@media (max-width: 768px) {
  /* Prevent title from being too huge on phones */
  .hero-section h1 {
    font-size: 1.85rem !important;
    line-height: 1.25;
  }

  /* Stack image on top, text below so it never squishes */
  .software-feed-list .software-item-body {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }

  /* Full-width image on phone */
  .software-feed-list .software-item-thumb {
    width: 100% !important;
    height: 190px !important;
  }

  /* Full-width, easy-to-tap download button */
  .software-feed-list .btn-getinto {
    width: 100% !important;
    justify-content: center;
    padding: 13px;
    box-sizing: border-box;
  }

  /* Filter buttons wrap cleanly */
  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    font-size: 0.82rem;
    padding: 7px 14px;
  }
}

/* ==========================================================
   OFFICIAL GOOGLE PLAY BADGE & SIDEBAR THEME COLORS
   ========================================================== */

/* Clean Google Play Card (No Border Clipping) */
.playstore-badge-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 24px;
  box-sizing: border-box;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.playstore-badge-btn img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.playstore-badge-btn:hover {
  border-color: var(--primary);
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* 2. Platforms Widget Header Style (Matches other widgets) */
.platforms-widget .widget-title {
  border-bottom: 2px solid #f1f5f9;
  color: #0f172a;
}

.side-cat-pill i {
  color: var(--primary);
}

/* ==========================================================
   REAL COLORED FOLDER TABS (FILE / FOLDER STYLE)
   ========================================================== */
/* Clean Connected Folder Tabs (No Floating Line) */
.admin-tab-bar {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e2e8f0; /* Soft clean neutral line */
  margin-bottom: 28px;
  padding-left: 4px;
}

/* Inactive Tab */
.admin-tab-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -1px; /* Sits directly ON the line with NO gap */
  transition: all 0.2s ease;
}

.admin-tab-btn:hover {
  background: #f1f5f9;
  color: var(--primary);
}

/* Active Folder Tab (Solid Blue seamlessly connected) */
.admin-tab-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 -3px 8px rgba(37, 99, 235, 0.15);
}

/* Count Badge inside Tab B */
#publishedCount {
  background: #e2e8f0;
  color: #475569;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-tab-btn.active #publishedCount {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* Edit & Action Buttons */
.edit-btn {
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #bfdbfe;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 6px;
  transition: all 0.2s ease;
}

.edit-btn:hover {
  background: #dbeafe;
}

.draft-box {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================
   LEGAL PAGES & FAQ ACCORDION STYLING
   ========================================================== */
.legal-container {
  max-width: 900px;
  margin: 30px auto 80px;
  padding: 0 20px;
}

.legal-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
}

.legal-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.legal-content h2 {
  font-size: 1.35rem;
  color: #0f172a;
  margin: 28px 0 12px;
  font-weight: 700;
}

.legal-content p, .legal-content li {
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 1px solid #f1f5f9;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================
   ADMIN DRAG & DROP FAQ BUILDER
   ========================================================== */
.faq-builder-card {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: grab;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-builder-card:active {
  cursor: grabbing;
}

.faq-builder-card.dragging {
  opacity: 0.5;
  background: #eff6ff;
  border: 2px dashed #2563eb;
  transform: scale(0.99);
}

.drag-handle {
  color: #94a3b8;
  font-size: 1.2rem;
  padding-top: 10px;
  cursor: grab;
}

.faq-num-badge {
  background: var(--primary);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.faq-card-inputs {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-card-inputs input,
.faq-card-inputs textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.92rem;
  outline: none;
  background: #ffffff;
  box-sizing: border-box;
}

.faq-card-inputs input:focus,
.faq-card-inputs textarea:focus {
  border-color: var(--primary);
}

.btn-add-faq {
  background: #eff6ff;
  color: var(--primary);
  border: 2px dashed #bfdbfe;
  padding: 14px;
  border-radius: 10px;
  width: 100%;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.2s ease;
}

.btn-add-faq:hover {
  background: #dbeafe;
  border-color: var(--primary);
}

/* ==========================================================
   SCREENSHOT SLIDER (10+ IMAGES) & IN-TEXT IMAGES
   ========================================================== */

/* 1. Screenshots Slider Gallery */
.screenshot-gallery-wrap {
  margin: 30px 0;
}

.screenshot-gallery-wrap h3 {
  font-size: 1.15rem;
  color: #0f172a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.screenshot-gallery-wrap h3 i {
  color: var(--primary);
}

.screenshot-gallery-wrap,
.screenshot-slider {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Complete & Responsive Single Hero Image */
.single-hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  display: block;
  box-sizing: border-box;
}

.screenshot-slider {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Custom sleek scrollbar for slider */
.screenshot-slider::-webkit-scrollbar {
  height: 6px;
}
.screenshot-slider::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.screenshot-item {
  flex: 0 0 auto;
  height: 220px;
  border-radius: 10px;
  border: 1px solid var(--border);
  object-fit: cover;
  scroll-snap-align: start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.screenshot-item:hover {
  transform: scale(1.02);
}

/* 2. Style for Images placed inside the description text */
.single-desc-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin: 18px 0;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Admin Quick Edit Button on Cards (Visible only to Admin) */
.card-admin-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: var(--primary);
  border: 1px solid #bfdbfe;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.card-admin-edit-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
}

/* ==========================================================
   IMAGE LIGHTBOX MODAL (SAME-PAGE PREVIEW)
   ========================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 20px;
  box-sizing: border-box;
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 2001;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Show Desktop labels on PC, Short labels on Mobile */
.tab-mobile {
  display: none;
}

/* ========================================*//
/* =========    Mobile Codes    ===========*//
/* ========================================*//

@media (max-width: 768px) {
  .tab-desktop {
    display: none !important;
  }
  .tab-mobile {
    display: inline !important;
  }

  /* 3 Equal Tabs Across Phone Screen (No Cut-Off!) */
  .admin-tab-bar {
    display: flex !important;
    width: 100% !important;
    gap: 4px !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
    overflow: visible !important;
    box-sizing: border-box;
  }

  .admin-tab-btn {
    flex: 1 1 0 !important; /* Divides width equally into 3 tabs */
    justify-content: center !important;
    text-align: center;
    padding: 10px 2px !important;
    font-size: 0.78rem !important;
    font-weight: 700;
    gap: 5px !important;
    border-radius: 8px 8px 0 0 !important;
    white-space: nowrap !important;
  }

  .admin-tab-btn i {
    font-size: 0.85rem;
  }

  /* Stack Library Header on Mobile */
  #panelLibrary > div:first-child {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px;
  }

  #panelLibrary > div:first-child button {
    width: 100%;
    justify-content: center;
  }

  /* Responsive Swipeable Table on Phone */
  .items-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  /* Make Admin Inputs & FAQ Cards Full-Width on Mobile */
  .admin-wrapper {
    padding: 0 10px !important; /* Removes wasted side padding */
  }

  .admin-card {
    padding: 20px 12px !important; /* Expands card width on phones */
  }

  .faq-builder-card {
    padding: 12px 10px !important;
    gap: 8px !important;
  }

  .faq-card-inputs {
    flex: 1 1 0% !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .faq-card-inputs input,
  .faq-card-inputs textarea {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.88rem !important;
    padding: 10px !important;
    box-sizing: border-box !important;
  }

  /* 🟢 COMPACT MOBILE FIX FOR 3D GLASS HERO */
  .glass-hero-section {
    padding: 24px 16px 28px !important; /* Reduce excessive top/bottom padding */
  }

  .hero-slide {
    gap: 18px !important;
    min-height: auto !important; /* Removes the tall 400px minimum */
  }

  /* Compact Badge & Heading */
  .glass-badge {
    padding: 4px 10px !important;
    font-size: 0.72rem !important;
    margin-bottom: 10px !important;
  }

  .glass-hero-title {
    font-size: 1.55rem !important; /* Fits comfortably in 2-3 short lines */
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }

  .glass-hero-desc {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
  }

  /* Sleek, Compact Buttons */
  .glass-hero-btns {
    gap: 8px !important;
    margin-bottom: 14px;
  }

  .btn-glass-primary,
  .btn-glass-secondary {
    padding: 9px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 8px !important;
  }

  /* Compact 3D Preview Image */
  .glass-card-3d {
    padding: 8px !important;
    border-radius: 14px !important;
  }

  .glass-preview-img {
    height: 180px !important; /* Reduced from 290px so it fits on screen */
    border-radius: 10px !important;
  }

  .hero-indicators {
    margin-top: 16px !important;
  }
}

/* ==========================================================
   GOOGLE REVIEWS & SLIDER SECTION (EXACT SCREENSHOT STYLE)
   ========================================================== */
.reviews-section {
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Top Google Trust Badge Card */
.google-badge-card {
  max-width: 680px;
  margin: 0 auto 30px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 6px 16px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 680px) {
  .google-badge-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

.google-badge-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.g-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stars-gold {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 1rem;
}

.google-badge-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

@media (max-width: 680px) {
  .google-badge-divider { display: none; }
}

.google-badge-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 680px) {
  .google-badge-right {
    flex-direction: column;
    gap: 12px;
  }
}

.btn-write-review {
  background: #0f3460;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-write-review:hover {
  background: #09203f;
  transform: translateY(-1px);
}

/* Slider Carousel Container */
.reviews-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 6px 30px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

/* Individual Review Card */
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 6px 14px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

@media (max-width: 960px) {
  .review-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 640px) {
  .review-card { flex: 0 0 100%; }
}

/* Card Header (Stars + Social Icon) */
.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.review-platform-icon {
  font-size: 1.2rem;
  color: #1877f2; /* Facebook Blue or Google */
}

/* Quote */
.review-quote-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

/* User Info Profile Footer */
.review-user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0f2fe;
}

.review-user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}

.review-user-role {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

/* Circular Arrow Navigation Buttons */
.review-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.review-nav-btn:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.review-nav-btn.prev { left: -10px; }
.review-nav-btn.next { right: -10px; }

@media (max-width: 768px) {
  .review-nav-btn { display: none; } /* On mobile, users swipe naturally */
}

/* Bottom Pagination Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-indicator.active {
  width: 24px;
  border-radius: 10px;
  background: #0f172a;
}

/* ==========================================================
   3D GLASSMORPHIC HERO SLIDER BANNER
   ========================================================== */
.glass-hero-section {
  position: relative;
  background: linear-gradient(135deg, #0b132b 0%, #0f172a 100%);
  color: #ffffff;
  padding: 50px 20px 60px;
  overflow: hidden;
}

/* Ambient Glowing 3D Depth Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.orb-blue {
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.4);
  top: -100px;
  left: 5%;
}

.orb-cyan {
  width: 350px;
  height: 350px;
  background: rgba(56, 189, 248, 0.3);
  bottom: -80px;
  right: 10%;
}

/* Container */
.glass-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px; /* 🟢 Reserves 50px space so arrows never touch content */
  box-sizing: border-box;
  z-index: 2;
}

@media (max-width: 768px) {
  .glass-hero-container {
    padding: 0 !important; /* Removes side gutters on phone */
  }
}

/* Slides */
.hero-slide {
  display: none;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  min-height: 400px;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  display: grid;
  opacity: 1;
  animation: heroSlideFade 0.5s ease forwards;
}

@keyframes heroSlideFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 880px) {
  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

/* Content Left */
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.glass-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

@media (max-width: 880px) {
  .glass-hero-title { font-size: 2rem; }
}

.glass-hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 28px;
  max-width: 580px;
}

@media (max-width: 880px) {
  .glass-hero-desc { margin: 0 auto 24px; }
}

/* Action Buttons */
.glass-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .glass-hero-btns { justify-content: center; }
}

.btn-glass-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
  transition: all 0.2s ease;
}

.btn-glass-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.45);
}

.btn-glass-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.btn-glass-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* 3D Glass Preview Card Right */
.glass-card-3d {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card-3d:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.75);
}

@media (max-width: 880px) {
  .glass-card-3d { transform: none; }
}

.glass-preview-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* Slider Controls */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  z-index: 5;
}

.hero-arrow-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.hero-arrow-btn.prev {
  left: 0; /* Sits safely in the 50px left gutter */
}

.hero-arrow-btn.next {
  right: 0; /* Sits safely in the 50px right gutter */
}

@media (max-width: 992px) {
  .hero-arrow-btn { display: none; }
}

/* Indicators */
.hero-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

/* ==========================================================
   ENLARGED HERO SLIDER PAGINATION DOTS
   ========================================================== */
.hero-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;         /* Increased gap so they breathe nicely */
  margin-top: 36px;   /* Clean separation below the slides */
  z-index: 10;
  position: relative;
}

/* Inactive Dots (Bigger & Clearer) */
.hero-dot {
  width: 16px;        /* Increased from 10px */
  height: 10px;       /* Increased from 6px */
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.35); /* Brighter resting color */
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover on Inactive Dots */
.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.15);
}

/* Active Pill Indicator (Longer, Glowing & Prominent) */
.hero-dot.active {
  width: 46px;        /* Increased from 28px */
  height: 10px;       /* Matches the new height */
  border-radius: 6px;
  background: #38bdf8; /* Vibrant cyan matching the hero accents */
  border-color: #38bdf8;
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.6); /* Modern subtle glow */
}

/* Mobile responsive sizing */
@media (max-width: 768px) {
  .hero-indicators {
    margin-top: 20px !important;
    gap: 10px;
  }
  .hero-dot {
    width: 14px;
    height: 8px;
  }
  .hero-dot.active {
    width: 36px;
    height: 8px;
  }
}

/* ==========================================================
   SERVICE HOOK / CTA SECTION (HOMEPAGE)
   ========================================================== */
.service-hook-section {
  padding: 80px 20px;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.hook-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 960px) {
  .hook-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hook-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hook-text p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 15px;
}

@media (max-width: 960px) {
  .hook-actions { 
    display: flex; 
    justify-content: center; 
  }
}

.hook-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.h-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f8fafc;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.h-feature:hover {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.1);
  transform: translateX(5px);
}

@media (max-width: 960px) {
  .h-feature {
    align-items: center;
    text-align: left;
    transform: none !important;
  }
}

.h-feature i {
  font-size: 1.5rem;
  color: var(--primary);
  background: #eff6ff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.h-feature h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.h-feature span {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  display: block;
}

/* ==========================================================
   WHY CHOOSE US & PROCESS SECTIONS
   ========================================================== */
.why-us-section {
  padding: 80px 20px;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.1);
  border-color: #bfdbfe;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--primary);
  color: #ffffff;
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.why-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 960px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.process-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  line-height: 1.2;
}

.process-text p {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.p-step:hover {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.p-step-num {
  width: 42px;
  height: 42px;
  background: #0f172a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
}

.p-step:hover .p-step-num {
  background: var(--primary);
}

.p-step h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.p-step p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================
   PRODUCT PAGE SOCIAL SHARE BUTTONS
   ========================================================== */
.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 15px;
}

.product-meta-row .single-date {
  margin-bottom: 0 !important; 
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; /* 🟢 Allows buttons to wrap to a new line on small phones */
}

.share-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  background: #f1f5f9;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 🟢 Brand Colors for All Networks */
.share-btn.fb:hover { background: #1877F2; color: #ffffff; border-color: #1877F2; }
.share-btn.tw:hover { background: #0f172a; color: #ffffff; border-color: #0f172a; }
.share-btn.in:hover { background: #0A66C2; color: #ffffff; border-color: #0A66C2; }
.share-btn.tg:hover { background: #0088cc; color: #ffffff; border-color: #0088cc; } /* Telegram */
.share-btn.wa:hover { background: #25D366; color: #ffffff; border-color: #25D366; } /* WhatsApp */
.share-btn.vk:hover { background: #0077FF; color: #ffffff; border-color: #0077FF; } /* VKontakte */
.share-btn.rd:hover { background: #FF4500; color: #ffffff; border-color: #FF4500; } /* Reddit */
.share-btn.cp:hover { background: var(--primary); color: #ffffff; border-color: var(--primary); }

/* ==========================================================
   DUAL TRUST CARD (GOOGLE + TRUSTPILOT) - CENTER ALIGNED
   ========================================================== */
.dual-trust-card {
  max-width: 860px;
  margin: 0 auto 35px auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  box-shadow: 0 6px 18px -2px rgba(0, 0, 0, 0.05);
}

.trust-col {
  display: flex;
  flex-direction: column;
  align-items: center;     /* 🟢 Centers everything horizontally */
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.trust-col-header {
  display: flex;
  align-items: center;
  justify-content: center; /* 🟢 Centers the logo and title text together */
  gap: 12px;
  text-align: left;
}

.dual-card-divider {
  width: 1px;
  height: 65px;
  background: #e2e8f0;
}

.trustpilot-widget-wrap {
  width: 100%;
  display: flex;
  justify-content: center; /* 🟢 Centers the Trustpilot button */
  align-items: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .dual-trust-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    text-align: center;
  }
  .dual-card-divider {
    width: 100%;
    height: 1px;
  }
}