/* =========================================================
   Pias Mobile Care — Brand Theme
   Direction: matches the official logo — deep blue + green,
   with the signature cyan tint as a soft supporting tone.
   ========================================================= */

:root {
  /* Exact colors sampled from the Pias Mobile Care logo */
  --ink: #0c1326;          /* near-black navy — logo's phone-outline color */
  --ink-2: #142449;        /* mid transition */
  --ink-3: #2350a3;        /* logo's vivid brand blue ("Pias" text / swirl) */
  --paper: #f4f8fa;
  --paper-card: #ffffff;
  --line: #e1e9f0;

  /* "gold" variable names kept for backwards-compatibility with the
     rest of this stylesheet, but now carry the logo's exact green accent */
  --gold: #3db549;
  --gold-light: #66cc70;
  --gold-dark: #2c8a37;
  /* "teal" now carries the logo's exact brand blue accent */
  --teal: #2350a3;
  --teal-light: #5c86e8;

  --cyan-tint: #92d6e1;    /* logo's background cyan, used as a soft tint */

  --ink-text: #0c1326;
  --muted: #5b6478;
  --muted-light: #8891a3;

  --gradient-gold: linear-gradient(135deg, #66cc70 0%, #3db549 55%, #2c8a37 100%);
  --gradient-ink: linear-gradient(160deg, #2350a3 0%, #142449 60%, #0c1326 100%);

  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(12, 19, 38, 0.07);
  --shadow-md: 0 10px 30px rgba(12, 19, 38, 0.14);
  --shadow-gold: 0 10px 30px rgba(61, 181, 73, 0.28);
}

* {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
}

.font-display, h1, h2, h3, h4, h5, .navbar-brand, .btn, .step-num, .badge-custom,
.brand-bracket, .stat-item h3, .service-price, .status-badge {
  font-family: 'Space Grotesk', 'Hind Siliguri', sans-serif;
}

.font-mono, code, .tracking-id, .mono {
  font-family: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  padding-top: 76px;
  background: var(--paper);
  color: var(--ink-text);
}

a { text-decoration: none; }

::selection { background: var(--gold-light); color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------
   Brand mark — bracket motif (connector / circuit terminal)
   --------------------------------------------------------- */
.brand-bracket {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0 0.35rem;
}
.brand-bracket::before,
.brand-bracket::after {
  color: var(--gold);
  font-weight: 500;
  opacity: 0.85;
}
.brand-bracket::before { content: '['; margin-right: 0.35rem; }
.brand-bracket::after { content: ']'; margin-left: 0.35rem; }

.brand-logo-mark {
  height: 38px;
  width: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.footer-logo-mark {
  height: 34px;
  width: auto;
  border-radius: 7px;
}


.product-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.product-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



.product-image-wrap {
    width: 100%;
    height: 210px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,.06);
}
.product-image-wrap a {
    width: 100%;
    height: 100%;
    display: block;
}
.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .25s ease;
}
.product-image-wrap:hover img {
    transform: scale(1.04);
}
.product-image-placeholder {
    color: #adb5bd;
    font-size: 55px;
}
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card .mt-auto {
    margin-top: auto;
}
.product-offer-badge {
    white-space: nowrap;
}
.product-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: var(--muted, #6c757d);
    background: rgba(0,0,0,0.04);
    display: inline-block;
    padding: 0.15rem 0.55rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.product-sku-stock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
@media (max-width: 767.98px) {
    .product-image-wrap {
        height: 190px;
    }
}



/* ---------------------------------------------------------
   Products page (Shop ERP inventory)
   --------------------------------------------------------- */
.product-filter-bar {
  background: var(--paper-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.product-icon { color: var(--teal); }
.product-stock-badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35em 0.7em;
  border-radius: 20px;
}
.product-stock-badge.in-stock {
  background: rgba(61, 181, 73, 0.12);
  color: var(--gold-dark);
}
.product-stock-badge.out-stock {
  background: rgba(190, 60, 60, 0.1);
  color: #b23c3c;
}
.product-warranty-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35em 0.7em;
  border-radius: 20px;
  background: rgba(35, 80, 163, 0.1);
  color: var(--teal);
}
.product-offer-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35em 0.7em;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff8a5c 0%, #e5484d 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(229, 72, 77, 0.3);
}
.product-old-price {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted-light);
  margin-left: 0.35rem;
}
.product-card { display: flex; flex-direction: column; }
.product-card .mt-auto { margin-top: auto; }

/* ---------------------------------------------------------
   Homepage card carousels (services / products)
   --------------------------------------------------------- */
.card-carousel { padding: 0 46px; }
.card-carousel .carousel-item { padding: 4px 2px 10px; }
.card-carousel-control {
  width: 40px; height: 40px;
  top: 40%; opacity: 1;
}
.card-carousel-control.carousel-control-prev { left: -6px; }
.card-carousel-control.carousel-control-next { right: -6px; }
.card-carousel-arrow {
  width: 40px; height: 40px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.card-carousel-control:hover .card-carousel-arrow {
  background: var(--gradient-gold); color: #fff; border-color: transparent;
}
.card-carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 1.4rem;
}
.card-carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--line); padding: 0; opacity: 1; text-indent: 0;
}
.card-carousel-dots button.active { background: var(--gold); width: 22px; border-radius: 5px; }
@media (max-width: 767.98px) {
  .card-carousel { padding: 0 34px; }
  .card-carousel-control { width: 34px; height: 34px; }
  .card-carousel-arrow { width: 34px; height: 34px; font-size: 0.85rem; }
}

/* ---------------------------------------------------------
   Navbar
   --------------------------------------------------------- */
.navbar {
  background: rgba(12, 19, 38, 0.92) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(61, 181, 73, 0.18);
}
.navbar-brand { font-size: 1.3rem; }
.navbar-brand i { color: var(--gold); }

.nav-link {
  font-weight: 500;
  margin: 0 0.3rem;
  transition: color 0.25s;
  position: relative;
  color: rgba(255,255,255,0.75) !important;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.1rem;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-admin {
  background: var(--gradient-gold);
  border-radius: 50px;
  padding: 0.45rem 1.1rem !important;
  color: var(--ink) !important;
  font-weight: 600;
  margin-left: 0.5rem;
  box-shadow: 0 4px 16px rgba(61, 181, 73, 0.3);
}
.btn-admin::after { display: none; }

/* ---------------------------------------------------------
   Hero — circuit-trace field
   --------------------------------------------------------- */
.hero-section {
  background: var(--gradient-ink);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(232, 199, 102, 0.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 65%, rgba(232, 199, 102, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 65% 20%, rgba(232, 199, 102, 0.45) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 80% 55%, rgba(232, 199, 102, 0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 85%, rgba(232, 199, 102, 0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(232, 199, 102, 0.3) 0%, transparent 100%),
    linear-gradient(90deg, transparent 15%, rgba(232,199,102,0.08) 15.5%, transparent 16%),
    linear-gradient(0deg, transparent 65%, rgba(232,199,102,0.07) 65.5%, transparent 66%),
    linear-gradient(90deg, transparent 80%, rgba(232,199,102,0.07) 80.5%, transparent 81%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(61, 181, 73, 0.16) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 15%, rgba(35, 80, 163, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }

.badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(61, 181, 73, 0.12);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1px solid rgba(61, 181, 73, 0.35);
}
.badge-custom::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 8px var(--teal-light);
  display: inline-block;
}

.hero-content h1 { font-weight: 700; letter-spacing: -0.5px; line-height: 1.15; }
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-phone {
  font-size: 16rem;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(61, 181, 73, 0.35);
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}

.stat-item h3 { font-size: 1.9rem; font-weight: 700; color: var(--gold-light); }

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn {
  font-weight: 600;
  letter-spacing: 0.1px;
}
.btn-primary {
  background: var(--gradient-gold);
  border: none;
  border-radius: 50px;
  padding: 0.7rem 1.9rem;
  color: var(--ink);
  transition: all 0.3s;
}
.btn-primary:hover, .btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--ink);
}
.btn-outline-primary {
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
}
.btn-outline-primary:hover {
  background: var(--gradient-gold);
  border-color: var(--gold);
  color: var(--ink);
}
.btn-outline-light {
  border-radius: 50px;
  padding: 0.6rem 1.6rem;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline-secondary { border-radius: 50px; }
.btn-warning {
  background: var(--gradient-gold);
  border: none;
  color: var(--ink);
  border-radius: 50px;
  font-weight: 600;
}

/* ---------------------------------------------------------
   Section basics
   --------------------------------------------------------- */
.section-title {
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.3px;
  color: var(--ink);
}
.section-title .text-primary { color: var(--gold-dark) !important; }
.text-primary { color: var(--gold-dark) !important; }

/* ---------------------------------------------------------
   Service cards
   --------------------------------------------------------- */
.service-card {
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--line);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(61, 181, 73, 0.35);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: var(--gradient-ink);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold-light); margin-bottom: 1rem;
}

.service-price {
  font-size: 1.25rem; font-weight: 700; color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
}

/* ---------------------------------------------------------
   Feature / step cards
   --------------------------------------------------------- */
.feature-card {
  background: var(--paper-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s; height: 100%;
  border: 1px solid var(--line);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.feature-icon {
  width: 66px; height: 66px;
  background: var(--gradient-ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold-light); margin: 0 auto 1rem;
  border: 1px solid rgba(61, 181, 73, 0.3);
}

.step-card { position: relative; }
.step-num {
  width: 48px; height: 48px;
  background: var(--gradient-gold); color: var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(61, 181, 73, 0.35);
}

.cta-section {
  background: var(--gradient-ink);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(61, 181, 73, 0.18) 0%, transparent 60%);
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-section .btn-light {
  border-radius: 50px; font-weight: 600;
  background: var(--gradient-gold); border: none; color: var(--ink);
}

.footer { background: var(--ink); }
.footer-links a { color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }

.social-links a {
  display: inline-flex; width: 40px; height: 40px;
  background: rgba(255,255,255,0.06); border-radius: 50%;
  align-items: center; justify-content: center; color: #fff;
  margin-right: 0.5rem; transition: all 0.3s;
  border: 1px solid rgba(61, 181, 73, 0.2);
}
.social-links a:hover { background: var(--gradient-gold); color: var(--ink); transform: translateY(-3px); }

/* ---------------------------------------------------------
   Page header (inner pages)
   --------------------------------------------------------- */
.page-header {
  background: var(--gradient-ink);
  position: relative;
  padding: 4.2rem 0 3.2rem; color: #fff;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(61, 181, 73, 0.18) 0%, transparent 55%);
}
.page-header > .container { position: relative; z-index: 2; }
.page-header h1 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.3px; }

/* ---------------------------------------------------------
   Forms
   --------------------------------------------------------- */
.form-card {
  background: var(--paper-card); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-control, .form-select {
  border-radius: 10px; padding: 0.75rem 1rem; border: 1.5px solid var(--line);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(61, 181, 73, 0.15);
}
.form-label { font-weight: 600; color: var(--ink); font-size: 0.92rem; }

/* ---------------------------------------------------------
   Contact page
   --------------------------------------------------------- */
.contact-info-card {
  background: var(--paper-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.contact-info-row {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.contact-info-row.mb-0 { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 46px; height: 46px; font-size: 1.05rem;
  border-radius: 12px; margin-bottom: 0; flex-shrink: 0;
}
.contact-info-value {
  font-weight: 600; color: var(--ink); text-decoration: none;
  word-break: break-word;
}
.contact-info-value:hover { color: var(--gold-dark); }
.contact-info-value-static { color: var(--ink); font-weight: 600; }
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  line-height: 0;
}

.track-result {
  background: var(--paper-card); border-radius: var(--radius-lg); padding: 2.2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.track-result h2, .track-result h4 { font-family: 'JetBrains Mono', monospace; }

/* ---------------------------------------------------------
   Status badges — muted premium tones
   --------------------------------------------------------- */
.status-badge {
  padding: 0.4rem 1rem; border-radius: 50px;
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.2px;
  display: inline-block;
}
.status-pending    { background: #fbf0da; color: #9c6b0c; }
.status-progress   { background: #dfeaf8; color: #21598f; }
.status-completed  { background: #dcf1ea; color: #157d5c; }
.status-delivered  { background: #e7e3f7; color: #4b3e9e; }
.status-cancelled  { background: #fbe2e2; color: #b8352f; }

/* ---------------------------------------------------------
   Timeline — circuit-trace styling (signature element)
   --------------------------------------------------------- */
.timeline { position: relative; padding-left: 2.1rem; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 4px; bottom: 4px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--line) 0, var(--line) 4px, transparent 4px, transparent 8px
  );
}
.timeline-item { position: relative; padding-bottom: 1.6rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -1.65rem; top: 2px;
  width: 13px; height: 13px;
  background: #cbd5e1; border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--line);
  transform: rotate(45deg);
  border-radius: 3px;
}
.timeline-item.active::before {
  background: var(--gradient-gold);
  box-shadow: 0 0 0 3px rgba(61, 181, 73, 0.25), 0 0 12px rgba(61, 181, 73, 0.5);
}
.timeline-item.done::before {
  background: var(--teal);
  box-shadow: 0 0 0 2px rgba(35, 80, 163, 0.25);
}
.timeline-item strong { font-family: 'Space Grotesk', sans-serif; }

/* ---------------------------------------------------------
   Admin
   --------------------------------------------------------- */
.admin-sidebar {
  width: 260px; min-height: 100vh; background: var(--ink);
  position: fixed; left: 0; top: 0; z-index: 1000; transition: all 0.3s;
  border-right: 1px solid rgba(61, 181, 73, 0.15);
}
.admin-sidebar .brand {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: 'Space Grotesk', sans-serif;
}
.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.65); padding: 0.8rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem; transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: rgba(61, 181, 73, 0.12); color: var(--gold-light);
}
.admin-sidebar .nav-link.active { border-right: 2px solid var(--gold); }
.admin-sidebar .nav-link::after { display: none; }

.admin-content { margin-left: 260px; min-height: 100vh; background: #eef0f4; }
.admin-topbar {
  background: var(--paper-card); padding: 1rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--line);
}

.stat-box {
  background: var(--paper-card); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.stat-box .icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.stat-box h3 { font-family: 'JetBrains Mono', monospace; }

.table-card {
  background: var(--paper-card); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1px solid var(--line);
}
.table-card .card-header {
  background: var(--paper-card); border-bottom: 1px solid var(--line);
  padding: 1.2rem 1.5rem; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}
.table code { font-family: 'JetBrains Mono', monospace; color: var(--gold-dark); font-weight: 600; }

.login-page {
  min-height: 100vh; background: var(--gradient-ink);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.login-page::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61, 181, 73, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(35, 80, 163, 0.15) 0%, transparent 50%);
}
.login-card {
  background: var(--paper-card); border-radius: var(--radius-lg); padding: 2.6rem;
  width: 100%; max-width: 420px; box-shadow: 0 25px 70px rgba(0,0,0,0.4);
  position: relative; z-index: 2;
  border-top: 3px solid var(--gold);
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 991px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.show { transform: translateX(0); }
  .admin-content { margin-left: 0; }
}
@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.9rem; }
  .form-card { padding: 1.6rem; }
  .hero-phone { font-size: 10rem; }
}

/* Keyboard focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   Hero Slider
   --------------------------------------------------------- */
.hero-slider-section { position: relative; }
.hero-slider-section .hero-slide { min-height: 50vh; }
.hero-slider-section .carousel-item { transition: transform 0.9s ease, opacity 0.9s ease; }

.hero-slide-alt1 { background: linear-gradient(160deg, #0c1326 0%, #2350a3 55%, #0c1326 100%); }
.hero-slide-alt1::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(35, 80, 163, 0.20) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 60%, rgba(61, 181, 73, 0.14) 0%, transparent 50%);
  pointer-events: none;
}
.hero-slide-alt2 { background: linear-gradient(160deg, #0c1326 0%, #14264a 55%, #0c1326 100%); }
.hero-slide-alt2::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 25%, rgba(61, 181, 73, 0.2) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 70%, rgba(35, 80, 163, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-slide-alt3 { background: linear-gradient(160deg, #0c1326 0%, #123156 55%, #0c1326 100%); }
.hero-slide-alt3::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(35, 80, 163, 0.22) 0%, transparent 55%),
              radial-gradient(ellipse at 15% 65%, rgba(61, 181, 73, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-indicators { bottom: 28px; z-index: 5; }
.hero-indicators [data-bs-target] {
  width: 30px; height: 3px; border-radius: 2px;
  background-color: rgba(255,255,255,0.35);
  opacity: 1; border: none; margin: 0 4px;
  transition: background-color 0.3s;
}
.hero-indicators .active { background-color: var(--gold); }

.hero-slider-section .carousel-control-prev,
.hero-slider-section .carousel-control-next {
  width: 60px; opacity: 1; z-index: 5;
}
.hero-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(61, 181, 73, 0.3);
  color: #fff; font-size: 0.9rem;
  transition: background 0.25s, border-color 0.25s;
}
.hero-slider-section .carousel-control-prev:hover .hero-arrow,
.hero-slider-section .carousel-control-next:hover .hero-arrow {
  background: rgba(61, 181, 73, 0.2);
  border-color: var(--gold);
}

/* ---------------------------------------------------------
   Brand marquee
   --------------------------------------------------------- */
.brand-marquee-section { overflow: hidden; background: var(--paper-card); border-block: 1px solid var(--line); }
.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 70px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--paper-card), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--paper-card), transparent); }
.marquee-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  border: 1px solid var(--line); background: var(--paper);
  font-weight: 600; color: var(--muted); white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem;
}
.brand-pill i { color: var(--gold); }

/* ---------------------------------------------------------
   Testimonials
   --------------------------------------------------------- */
.testimonial-card {
  background: var(--paper-card); border-radius: var(--radius-lg);
  padding: 2.6rem; box-shadow: var(--shadow-md);
  border-top: 3px solid var(--gold);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; }
.testimonial-text { font-size: 1.15rem; font-style: italic; color: var(--ink-text); line-height: 1.7; }
.testimonial-avatar {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-gold); color: var(--ink);
  font-weight: 700; font-size: 1.2rem;
  font-family: 'Space Grotesk', sans-serif;
}
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.8rem; }
.testimonial-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: none;
  background: var(--line); padding: 0; opacity: 1;
}
.testimonial-dots button.active { background: var(--gold); width: 22px; border-radius: 5px; transition: width 0.3s; }

/* ---------------------------------------------------------
   FAQ accordion
   --------------------------------------------------------- */
.faq-accordion .accordion-item {
  border: 1px solid var(--line); border-radius: var(--radius) !important;
  margin-bottom: 1rem; overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600; font-family: 'Space Grotesk', sans-serif;
  color: var(--ink-text); background: var(--paper-card);
  padding: 1.15rem 1.4rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--gold-dark); background: rgba(61, 181, 73, 0.06);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--gold); }
.faq-accordion .accordion-button::after { filter: hue-rotate(10deg); }
.faq-accordion .accordion-body { padding: 0 1.4rem 1.4rem; line-height: 1.7; }

/* ---------------------------------------------------------
   WhatsApp floating button
   --------------------------------------------------------- */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.4s ease-in-out infinite;
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}
@media (max-width: 576px) {
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; right: 16px; bottom: 16px; }
}

/* ---------------------------------------------------------
   Work Gallery (public)
   --------------------------------------------------------- */
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1 / 1; cursor: pointer; background: var(--ink);
  box-shadow: var(--shadow-sm);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.08); }
.gallery-play-icon {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem; background: rgba(12, 19, 38, 0.35); pointer-events: none;
}
.gallery-play-icon i {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(61, 181, 73, 0.85); display: flex; align-items: center; justify-content: center;
}
.gallery-item-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(10,15,30,0.85), transparent);
  color: #fff; font-size: 0.82rem; font-weight: 600;
  padding: 1.5rem 0.7rem 0.5rem; pointer-events: none;
}

/* ---------------------------------------------------------
   Admin gallery cards
   --------------------------------------------------------- */
.gallery-admin-card {
  background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.gallery-admin-thumb { position: relative; aspect-ratio: 1 / 1; background: var(--ink); }
.gallery-admin-thumb img, .gallery-admin-thumb video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-type-badge {
  position: absolute; top: 6px; right: 6px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(10,15,30,0.65); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
