/* Pranjal Enterprises – Brown/Orange/Green palette matching logo, dual theme, glassmorphism, Inter + Outfit */

/* ========== LIGHT THEME (Warm Beige) – default ========== */
:root {
  --bg: #faf8f5;
  --surface: rgba(250, 246, 240, 0.9);
  --surface-solid: #faf6f0;
  --text: #3a2a1a;
  --text-muted: #6b5d4a;
  --primary: #FF9933;
  --primary-hover: #e6892e;
  --secondary: #5C3A21;
  --accent: #138808;
  --gradient-main: linear-gradient(135deg, #FF9933 0%, #5C3A21 100%);
  --gradient-hero: linear-gradient(135deg, #FF9933 0%, #e6892e 50%, #5C3A21 100%);
  /* Light-to-medium orange for product image area with a slightly darker edge (not too strong) */
  --gradient-product-bg: linear-gradient(145deg, #ffe3bf 0%, #ffc680 45%, #ff9f40 100%);
  --glass-border: 1px solid rgba(92, 58, 33, 0.1);
  --glass-blur: 12px;
  --shadow-sm: 0 2px 12px rgba(92, 58, 33, 0.08);
  --shadow-md: 0 8px 28px rgba(92, 58, 33, 0.12);
  --shadow-glow: 0 0 40px rgba(255, 153, 51, 0.2);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.15s ease;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;
}

/* ========== DARK THEME (Deep Brown) ========== */
[data-theme="dark"] {
  --bg: #2a1f15;
  --surface: rgba(60, 45, 30, 0.8);
  --surface-solid: #3c2e1e;
  --text: #faf8f5;
  --text-muted: #c4b5a0;
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(255, 153, 51, 0.3);
  --gradient-product-bg: linear-gradient(145deg, #3c2e1e 0%, #5C3A21 30%, #4a2f1a 100%);
}

/* ========== SCROLL PROGRESS BAR (slide bar) ========== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background: var(--gradient-main);
  z-index: 1040;
  transition: width 0.15s ease-out;
  box-shadow: 0 1px 6px rgba(255, 153, 51, 0.4);
}

/* ========== TYPOGRAPHY ========== */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition-fast), color var(--transition-fast);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.navbar-brand,
.fw-bold.fs-4, .fw-bold.fs-5,
.card-title, .feature-block h5, .review-card .fw-bold {
  font-family: var(--font-heading);
}

/* Use theme muted color for secondary text */
.text-secondary {
  color: var(--text-muted) !important;
}

/* High-impact gradient text for headings (optional use) */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== GLASSMORPHISM ========== */
.glass {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
}

/* ========== NAVBAR ========== */
.navbar-tech {
  background: var(--surface) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.navbar-tech .nav-link {
  font-weight: 600;
  color: var(--text) !important;
  padding: 0.5rem 0.85rem !important;
  border-radius: 99px;
  transition: all var(--transition-fast), transform 0.2s ease;
  position: relative;
}

.navbar-tech .nav-link:hover {
  color: var(--primary) !important;
  background: var(--primary);
  color: white !important;
}

.navbar-tech .nav-link.active {
  background: var(--primary);
  color: white !important;
}

.navbar-tech .navbar-brand .logo-box {
  background: var(--gradient-main);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.navbar-tech .navbar-brand:hover .logo-box {
  transform: scale(1.05);
}

.navbar-tech .navbar-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
  display: block;
}

.navbar-tech .navbar-brand:hover .navbar-logo-img {
  transform: scale(1.05);
}

/* Search */
.search-box .form-control {
  border-radius: 99px;
  padding-left: 1.25rem;
  border: var(--glass-border);
  background: var(--surface);
  color: var(--text);
  min-width: 200px;
  transition: all var(--transition-fast);
}

.search-box .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.search-box .btn {
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  background: var(--primary);
  border: none;
  color: white;
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.search-box .btn:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
}

/* Sign up button */
.btn-signup {
  background: var(--gradient-main);
  color: white !important;
  border: none;
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  color: white !important;
}

/* Theme toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--glass-border);
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.navbar-toggler {
  border-radius: 12px;
  border: var(--glass-border);
  transition: transform var(--transition);
}

.navbar-toggler:hover {
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.3);
}

/* ========== CARDS – Glassmorphism + 3D (mouse tilt) ========== */
.card-tech,
.category-card-tech,
.feature-block,
.review-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.card-tech {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition);
  overflow: hidden;
}

/* Ensure good legibility for content cards (e.g. Contact page) in dark mode */
[data-theme="dark"] .card-tech {
  background: rgba(60, 45, 30, 0.98); /* almost solid, higher contrast */
  color: var(--text);
}

[data-theme="dark"] .card-tech .text-secondary {
  color: var(--text-muted) !important;
}

.card-tech:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

/* Product card: moderate size and layout */
.product-card-tech {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  /* Use clean white background so cards don't look skin-colored */
  background: #ffffff;
  /* Softer orange shadow specific to product cards (avoid beige/brown tone) */
  box-shadow: 0 8px 24px rgba(255, 153, 51, 0.25);
}

.product-card-tech .card-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep badge/text/button at natural width while still allowing vertical alignment */
}

.product-card-tech .card-title {
  font-size: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.product-card-tech .product-desc {
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-tech .card-body .btn {
  margin-top: auto;
}

.product-card-tech .price {
  font-size: 1rem;
}

/* Product list image: light color background */
.product-card-tech .card-img-placeholder {
  width: 100%;
  height: 160px;
  min-height: 160px;
  background: var(--gradient-product-bg);
  border: 1px solid rgba(255, 153, 51, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 0;
}

.product-card-tech .card-img-placeholder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform var(--transition);
}

/* Refurbished laptop gallery (only on homepage section) */
.refurbished-gallery {
  position: relative;
  overflow: hidden;
}
.refurbished-gallery-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}
.refurbished-gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product detail page: light color background */
.product-detail-card .card-img-placeholder {
  width: 100%;
  background: var(--gradient-product-bg);
  border: 1px solid rgba(255, 153, 51, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 0;
}

.product-detail-card {
  max-width: 520px;
  margin: 0 auto;
}

.product-detail-card .card-img-placeholder img {
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
}

/* Product grid: moderate spacing */
.product-grid .col-6,
.product-grid .col-md-4,
.product-grid .col-md-6,
.product-grid .col-lg-3,
.product-grid .col-lg-4 {
  display: flex;
}

.product-grid .card-tech {
  width: 100%;
}

.card-tech:hover .card-img-placeholder img {
  transform: scale(1.05);
}

/* Products listing: full page flow so "View all" shows all products */
.product-scroll {
  /* No max-height – all products visible with normal page scroll */
  padding-right: 4px;
}

.product-scroll::-webkit-scrollbar {
  width: 6px;
}

.product-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.product-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 153, 51, 0.4);
  border-radius: 999px;
}

.product-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 153, 51, 0.7);
}

/* Category cards */
.category-card-tech {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.category-card-tech:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary);
  background: var(--gradient-hero); /* same warm orange feel as hero section */
  color: #ffffff;
}

.category-card-tech:hover h6 {
  color: #ffffff;
}

.category-card-tech .cat-img-wrap {
  width: 100%;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.category-card-tech .cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition);
}

.category-card-tech:hover .cat-img {
  transform: scale(1.05);
}

.category-card-tech .cat-title {
  min-height: 2.8em;
  line-height: 1.4;
  line-clamp: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-wrap: balance;
}

.categories-grid {
  justify-content: center;
}

/* ========== HERO ========== */
.hero-section {
  background: var(--gradient-hero);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section .btn-light {
  border-radius: 99px;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  border: none;
  color: #0f172a;
}

.hero-section .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: #0f172a;
}

.hero-banner-img {
  max-height: 1200px;
  width: auto;
  object-fit: contain;
  /* Keep image static – no floating animation */
  animation: none;
}

.hero-section .btn-light {
  animation: btn-slide-up 0.6s ease-out;
}

@keyframes btn-slide-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== ABOUT PAGE ========== */
.about-section .about-card {
  border-width: 2px;
  border-style: solid;
  border-radius: var(--radius-lg);
}
.about-section .about-card.accent-orange {
  border-color: var(--primary);
}
.about-section .about-card.accent-green {
  border-color: var(--accent);
}
.about-section .about-card.accent-brown {
  border-color: var(--secondary);
}
.about-section .about-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 51, 0.12);
  color: var(--primary);
  font-size: 1.25rem;
}
.about-section .about-pill {
  background: rgba(255, 255, 255, 0.9);
  color: var(--secondary);
  border: 1px solid rgba(92, 58, 33, 0.12);
  font-size: 0.8rem;
}
.about-section .about-pill.accent-orange {
  border-color: var(--primary);
}
.about-section .about-pill.accent-green {
  border-color: var(--accent);
}
.about-section .about-pill.accent-brown {
  border-color: var(--secondary);
}
.about-section .about-hero-image-wrapper {
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
}
.about-section .about-hero-image {
  width: 100%;
  height: auto;
  display: block;
}
.about-section .about-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Ensure good contrast in dark mode for About cards */
.about-section .about-card {
  color: var(--text);
}
.about-section .about-card .text-secondary {
  color: var(--text-muted) !important;
}
.about-section .about-card a {
  color: var(--primary);
}
.about-section .about-card a:hover {
  color: var(--primary-hover);
}

/* About cards – hero-style orange background on hover */
.about-section .about-card:hover {
  background: var(--gradient-hero);
  color: #ffffff;
}

.about-section .about-card:hover .text-secondary {
  color: #fef3c7 !important;
}

/* Large symbols for value / goal cards */
.about-section .about-card-symbol {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: rgba(255, 153, 51, 0.15);
  color: #f97316; /* brighter orange for better contrast */
  font-size: 2rem;
}

/* CEO profile card – keep clean white layout, similar to reference director card */
.about-section .ceo-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(92, 58, 33, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  padding: 1.75rem 2rem;
}

.about-section .ceo-photo-wrapper {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #f3f4f6;
}

.about-section .ceo-photo {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767.98px) {
  .about-section .ceo-card {
    padding: 1.5rem;
  }
  .about-section .ceo-photo-wrapper {
    max-width: 260px;
    margin: 0 auto 1.25rem;
  }
}

/* Support page general typography */
.support-section {
  font-size: 0.98rem;
}

.support-section .small {
  font-size: 0.95rem;
}

/* Support quick menu cards */
.support-section .support-menu-card .extra-small {
  font-size: 0.82rem;
}

.support-section .ticket-trigger-btn {
  padding: 0.55rem 1.6rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-width: 2px;
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 153, 51, 0.06);
  box-shadow: 0 4px 14px rgba(255, 153, 51, 0.25);
}

.support-section .ticket-trigger-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 153, 51, 0.4);
}

/* Support page – FAQ block */
.support-section .faq-card {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: var(--glass-border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.support-section .faq-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 51, 0.12);
  color: var(--primary);
  flex-shrink: 0;
}

.support-section .faq-pill-icon i {
  font-size: 1.1rem;
}

.support-section .faq-card .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .support-section .faq-card .accordion-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.support-section .faq-card .accordion-item:last-child {
  border-bottom: none;
}

.support-section .faq-card .accordion-button {
  padding: 0.75rem 0;
  background: transparent;
  box-shadow: none;
  font-weight: 600;
  color: var(--text);
}

.support-section .faq-card .accordion-button:not(.collapsed) {
  color: var(--primary);
}

.support-section .faq-card .accordion-button::after {
  transform: scale(0.8);
}

.support-section .faq-card .accordion-body {
  padding: 0 0 0.85rem;
}

/* ========== SERVICES PAGE ========== */
.services-section .about-card {
  border-width: 2px;
  border-style: solid;
  border-radius: var(--radius-lg);
}
.services-section .about-card.accent-orange {
  border-color: var(--primary);
}
.services-section .about-card.accent-green {
  border-color: var(--accent);
}
.services-section .about-card.accent-brown {
  border-color: var(--secondary);
}

/* Services cards – hero-style orange background on hover */
.services-section .about-card:hover {
  background: var(--gradient-hero);
  color: #ffffff;
}

.services-section .about-card:hover .text-secondary {
  color: #fef3c7 !important;
}

/* ========== SECTIONS BG ========== */
section.bg-white {
  background: var(--surface) !important;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

section.bg-light {
  background: var(--bg) !important;
}

/* ========== FEATURE BLOCKS ========== */
.feature-block {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  height: 100%;
  transition: all var(--transition);
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
}

.feature-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255, 153, 51, 0.4);
  background: var(--gradient-hero); /* hero-style orange gradient on hover */
  color: #ffffff;
}

.feature-block:hover .text-secondary {
  color: #fef3c7 !important; /* softer light text on orange */
}

.feature-block .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.feature-block:hover .feature-icon {
  transform: scale(1.1);
}

.feature-block.delivery .feature-icon {
  background: var(--primary);
  color: white;
}

.feature-block.support .feature-icon {
  background: var(--secondary);
  color: white;
}

.feature-block.rental .feature-icon {
  background: var(--accent);
  color: white;
}

.feature-block .text-secondary {
  color: var(--text-muted) !important;
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--primary);
  border: none;
  font-weight: 600;
  border-radius: 99px;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-outline-primary {
  font-weight: 600;
  border-radius: 99px;
  border-width: 2px;
  border-color: var(--primary);
  color: var(--primary);
  transition: all var(--transition-fast);
}

.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.price {
  color: var(--primary);
  font-weight: 700;
  display: none !important; /* Hide all prices on frontend */
}

.badge-tech {
  border-radius: 99px;
  font-weight: 600;
  padding: 0.35em 0.75em;
}

.badge-tech.bg-primary {
  background: var(--primary) !important;
}

/* ========== CTA SECTION ========== */
.cta-section {
  background: var(--gradient-hero);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  border: var(--glass-border);
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  right: -50px;
}

/* ========== FOOTER – increased font size, nice look ========== */
.footer-tech {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: var(--glass-border);
  color: var(--text);
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .footer-tech {
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0.9;
}

.footer-tech .footer-row {
  font-size: 1rem;
}

.footer-tech .footer-block {
  padding: 0.75rem 0;
}

.footer-tech .footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.footer-tech .footer-store-name {
  font-size: 1.05rem;
  color: var(--text);
}

.footer-tech .footer-text,
.footer-tech .footer-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-tech .footer-links {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-tech .footer-links li {
  margin-bottom: 0.5rem;
}

.footer-tech .footer-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast), padding-left 0.2s ease;
}

.footer-tech .footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-tech .footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .footer-tech .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.footer-tech .footer-copyright {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer-tech .footer-tagline {
  font-size: 0.95rem;
}

.footer-tech .footer-tagline i {
  opacity: 0.85;
}

.back-to-top-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--gradient-hero);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 153, 51, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top-btn i {
  font-size: 1.4rem;
}

.back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(255, 153, 51, 0.6);
}

.footer-tech a:not(.btn) {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-tech a:not(.btn):hover {
  color: var(--primary);
}

/* ========== FLOATING BACK TO HOME BUTTON (all pages except home) ========== */
.back-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 153, 51, 0.4);
  z-index: 9999;
  transition: transform var(--transition), box-shadow 0.2s ease;
}
.back-float:hover {
  color: #fff !important;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(255, 153, 51, 0.5);
}
.back-float:active {
  transform: scale(0.98);
}

/* ========== FLOATING WHATSAPP BUTTON (all pages) ========== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform var(--transition), box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.whatsapp-float:active {
  transform: scale(0.98);
}

/* ========== PAGE HERO / FORMS ========== */
.page-hero {
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

/* About page hero: use same warm orange gradient as main hero, always on */
.about-section .page-hero {
  background: var(--gradient-hero);
  color: #ffffff;
  border: none;
}

.about-section .page-hero h1 {
  color: #ffffff;
}

.about-section .page-hero .text-secondary {
  color: #fef3c7 !important; /* soft light text on orange */
}

/* Services page hero – same orange gradient as main hero, always on */
.page-hero-services {
  background: var(--gradient-hero);
  color: #ffffff;
  border: none;
}

.page-hero-services h1 {
  color: #ffffff;
}

.page-hero-services .text-secondary {
  color: #fef3c7 !important;
}

/* Products page hero – same orange gradient as main hero, always on */
.page-hero-products {
  background: var(--gradient-hero);
  color: #ffffff;
  border: none;
}

.page-hero-products h1 {
  color: #ffffff;
}

.page-hero-products .text-secondary {
  color: #fef3c7 !important;
}

/* Contact page hero – use hero gradient consistently */
.page-hero-contact {
  background: var(--gradient-hero);
  color: #ffffff;
  border: none;
}

.page-hero-contact h1 {
  color: #ffffff;
}

.page-hero-contact .text-secondary {
  color: #fef3c7 !important;
}

/* Contact page cards – hero-style background on hover */
.contact-section .card-tech:hover {
  background: var(--gradient-hero);
  color: #ffffff;
}

.contact-section .card-tech:hover .text-secondary {
  color: #fef3c7 !important;
}

/* Store locator hero – same orange gradient as main hero */
.page-hero-store {
  background: var(--gradient-hero);
  color: #ffffff;
  border: none;
}

.page-hero-store h1 {
  color: #ffffff;
}

.page-hero-store .text-secondary {
  color: #fef3c7 !important;
}

/* Store locator cards – hero-style background on hover */
.store-locator-section .card:hover {
  background: var(--gradient-hero);
  color: #ffffff;
}

.store-locator-section .card:hover .text-secondary,
.store-locator-section .card:hover .small {
  color: #fef3c7 !important;
}

/* Payment terms — legal content layout */
.payment-terms-section .payment-terms-hero-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md, 12px);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.payment-terms-section .payment-terms-card {
  border-radius: var(--radius-lg);
}

.payment-terms-section .payment-term-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(92, 58, 33, 0.12);
}

[data-theme="dark"] .payment-terms-section .payment-term-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.payment-terms-section .payment-term-item--last {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.payment-terms-section .payment-term-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1;
  margin-top: 0.125rem;
}

.payment-terms-section .payment-term-body {
  min-width: 0;
}

.payment-terms-section .payment-term-body h2 {
  color: var(--text);
}

/* Rental page card emphasis */
.rental-section .rental-highlight-card {
  border: 1px solid rgba(92, 58, 33, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

[data-theme="dark"] .rental-section .rental-highlight-card {
  border-color: rgba(255, 255, 255, 0.18);
}

.rental-section .rental-highlight-card:hover {
  background: var(--gradient-hero);
  border-color: transparent;
  color: #ffffff;
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.rental-section .rental-highlight-card:hover .text-secondary {
  color: #fef3c7 !important;
}

.page-hero h1 {
  font-weight: 800;
  color: var(--text);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
}

.breadcrumb-tech a {
  color: var(--primary);
}

/* ========== REVIEW CARDS ========== */
.review-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  background: var(--surface);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 153, 51, 0.3);
}

.review-card .stars {
  color: #fbbf24;
}

.review-card .text-secondary {
  color: var(--text-muted) !important;
}

/* Alerts */
.alert-success {
  border-color: var(--accent);
}

.alert-info {
  border-color: var(--primary);
}

/* Client Logos – about page strip */
.client-strip-wrapper {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: var(--surface);
  border: var(--glass-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.client-logo-strip {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: client-scroll 35s linear infinite;
  will-change: transform;
}
.client-logo-box {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.client-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.client-logo-box:hover .client-logo {
  transform: scale(1.05);
  opacity: 1;
}
@keyframes client-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
