/* ==========================================================================
   ADEBLED SERVICES — ALUMINIUM.CSS
   Aluminium Fabrication Sub-Site Styles
   ========================================================================== */

/* ---- View-specific variables ---- */
body.view-aluminium {
  --accent-color: var(--color-gold);
  --accent-hover: var(--color-gold-hover);
  --accent-light: var(--color-gold-light);
  --accent-glow: var(--shadow-glow-gold);
  --gradient-accent: var(--gradient-gold);
}

/* ---- Navbar Aluminium ---- */
.navbar-alu {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(10, 26, 31, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-base);
}

.navbar-alu.scrolled {
  box-shadow: var(--shadow-lg);
}

.navbar-alu .logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.navbar-alu .logo-link .site-logo { height: 40px; }

.navbar-alu .logo-text {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.navbar-alu .nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.navbar-alu .nav-link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-gray-300);
  padding: var(--space-2) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar-alu .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width var(--transition-base);
}

.navbar-alu .nav-link:hover,
.navbar-alu .nav-link.active {
  color: var(--color-gold);
}

.navbar-alu .nav-link:hover::after,
.navbar-alu .nav-link.active::after {
  width: 100%;
}

.navbar-alu .cta-nav {
  background: var(--gradient-gold) !important;
  color: var(--color-navy-900) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius-full);
  font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-sm), var(--shadow-glow-gold);
}

.navbar-alu .cta-nav::after { display: none; }

.navbar-alu .cta-nav:hover {
  color: var(--color-navy-900) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
}

/* Mobile styles same as IT but with dark theme */
@media (max-width: 768px) {
  .navbar-alu .desktop-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  background: var(--color-charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu .nav-link {
  color: var(--color-gray-300);
}

.mobile-menu .nav-link:hover {
  background: rgba(255,255,255,0.05);
  color: var(--color-gold);
}

.mobile-menu .btn-gold {
  margin-top: var(--space-4);
}

.mobile-menu .back-btn {
  color: var(--color-gray-400);
}

.mobile-menu .back-btn:hover {
  background: rgba(255,255,255,0.05);
  color: var(--color-gold);
}

/* ---- Hero Aluminium ---- */
.hero-alu {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-16) var(--container-padding);
  overflow: hidden;
}

.hero-alu .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,25,31,0.9) 0%, rgba(10,26,31,0.7) 50%, rgba(8,25,31,0.8) 100%);
  z-index: 1;
}

.gold-mesh {
  position: absolute;
  inset: 0;
  background: var(--gradient-mesh);
  opacity: 0.15;
  z-index: 2;
  animation: meshShift 20s ease-in-out infinite;
}

.hero-alu .hero-content {
  max-width: 700px;
  color: var(--color-white);
}

.hero-alu .hero-badge {
  background: var(--color-gold-light);
  color: var(--color-gold);
  border: 1px solid rgba(233,162,59,0.3);
}

.hero-alu h1 {
  font-size: clamp(1.65rem, 6.2vw, var(--fs-5xl));
  line-height: var(--lh-tight);
  margin-bottom: var(--space-6);
  color: var(--color-white);
}

.hero-alu .hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--color-gray-300);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-8);
}

.hero-alu .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero-alu .btn-secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--color-white);
}

.hero-alu .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hero-alu .hero-trust {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-gray-300);
}

.hero-alu .trust-badge {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Products Grid ---- */
.section-products {
  background: var(--color-white);
}

.section-products .section-header .subtitle { color: var(--color-gold); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

@media (max-width: 640px) {
  /* two-up product cards on phones (auto-fit above collapses to one endless column) */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .product-image { height: 130px; }
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  transition: all var(--transition-base);
}

.product-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), var(--shadow-glow-gold);
}

.product-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,26,31,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-content {
  padding: var(--space-5);
}

.product-content h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-3);
}

.product-content p {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gold);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  transition: gap var(--transition-fast);
}

.product-cta:hover {
  gap: var(--space-3);
}

.product-cta svg { flex-shrink: 0; }

/* ---- Why Us Aluminium ---- */
.section-why.bg-off-white {
  background: var(--color-off-white);
}

.section-why .section-header .subtitle { color: var(--color-gold); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* keep two-up on phones so the page doesn't become an endless column */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
}

.why-card {
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--color-gray-200);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-light);
  color: var(--color-gold);
  border-radius: var(--radius-xl);
}

.why-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}

.why-card p {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

/* ---- Process Timeline (5 steps) ---- */
.process-timeline-5 {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline-5::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-gold);
}

@media (max-width: 768px) {
  .process-timeline-5::before { left: 20px; }
}

/* ---- Gallery Masonry ---- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-6);
}

.masonry-item {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.masonry-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.masonry-item:nth-child(4) { grid-column: span 2; }
.masonry-item:nth-child(7) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1280px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .masonry-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .masonry-item:nth-child(4) { grid-column: span 1; grid-row: span 2; }
  .masonry-item:nth-child(7) { grid-column: span 2; }
}

@media (max-width: 1024px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .masonry-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .masonry-item:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 768px) {
  /* two-up mosaic on phones; titles only — descriptions don't fit small tiles */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: var(--space-3); }
  .masonry-item figcaption h4 { font-size: var(--fs-xs); }
  .masonry-item figcaption p { display: none; }
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.masonry-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,26,31,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.masonry-item:hover .gallery-overlay { opacity: 1; }

.masonry-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4);
  background: linear-gradient(180deg, transparent, rgba(8,25,31,0.9));
  color: var(--color-white);
}

.masonry-item figcaption h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-1);
}

.masonry-item figcaption p {
  font-size: var(--fs-sm);
  color: var(--color-gray-300);
}

/* ---- Coverage Section ---- */
.section-coverage {
  background: var(--color-white);
}

.section-coverage .section-header .subtitle { color: var(--color-gold); }

.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 1024px) {
  .coverage-content { grid-template-columns: 1fr; }
}

.coverage-map {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--color-navy-900);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  overflow: hidden;
}

.nigeria-map {
  width: 100%;
  height: 100%;
}

.city-markers circle {
  transition: transform var(--transition-base), r var(--transition-base);
}

.city-markers circle:hover {
  transform: scale(2);
  r: 10;
}

.coverage-states h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-6);
  color: var(--color-navy-900);
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (max-width: 768px) {
  .states-grid { grid-template-columns: repeat(2, 1fr); }
}

.state-badge {
  padding: var(--space-3) var(--space-4);
  background: var(--color-navy-900);
  color: var(--color-white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.state-badge:hover {
  background: var(--gradient-gold);
  color: var(--color-navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-gold);
}

.coverage-note {
  font-size: var(--fs-base);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
}

.coverage-note strong {
  color: var(--color-gold);
}

/* ---- Testimonials Aluminium ---- */
.section-testimonials.bg-off-white {
  background: var(--color-off-white);
}

.section-testimonials .section-header .subtitle { color: var(--color-gold); }

/* ---- Contact/Quote Section Aluminium ---- */
.section-contact.bg-navy {
  background: var(--color-navy-900);
  color: var(--color-white);
}

.section-contact .section-header .subtitle { color: var(--color-gold); }

.section-contact .section-header p { color: var(--color-gray-400); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
}
/* grid tracks default to min-width:auto, so a long email/phone would force the
   track wider than the viewport → tiny horizontal overflow. Allow shrink + wrap. */
.contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); }
.contact-grid > * { min-width: 0; }
.contact-card, .contact-hero, .contact-trust { overflow-wrap: anywhere; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
}

.contact-hero {
  padding: var(--space-8);
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
}

.contact-icon.large {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-light);
  color: var(--color-gold);
  border-radius: var(--radius-xl);
}

.contact-hero h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-3);
}

.contact-hero p {
  color: var(--color-gray-300);
  margin-bottom: var(--space-6);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .contact-methods { grid-template-columns: 1fr; }
}

.contact-methods .contact-card {
  padding: var(--space-5);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-base);
}

.contact-methods .contact-card:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-light);
}

.contact-methods .contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-light);
  color: var(--color-gold);
  border-radius: var(--radius-xl);
}

.contact-methods h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-1);
}

.contact-methods p {
  font-size: var(--fs-sm);
  color: var(--color-gray-300);
}

.contact-trust {
  padding: var(--space-4);
  background: var(--color-gold-light);
  border: 1px solid rgba(233,162,59,0.3);
  border-radius: var(--radius-xl);
  text-align: center;
}

.trust-badge-large {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  margin-bottom: var(--space-1);
}

.contact-trust p {
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
}

/* Quote Form */
.quote-form {
  padding: var(--space-8);
}

.quote-form .form-group {
  margin-bottom: var(--space-5);
}

.quote-form label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-700);
  margin-bottom: var(--space-2);
}

/* The form sits on a white .card — so fields need a visible border, a light
   fill, and dark text (they were previously styled for a dark card, which made
   the borders and typed text invisible on white). */
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-gray-100);
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-md);
  color: var(--color-navy-900);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: var(--color-gray-400);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--color-gray-500);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-light);
}

/* ---- Footer Aluminium ---- */
.footer-alu {
  background: var(--color-charcoal);
  color: var(--color-gray-300);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-alu .footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 1024px) {
  .footer-alu .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-alu .footer-grid { grid-template-columns: 1fr; }
}

.footer-alu .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-4);
}

.footer-alu .footer-logo .site-logo { height: 40px; }

.footer-alu .footer-logo span {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
}

.footer-alu .footer-brand p {
  color: var(--color-gray-400);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-4);
}

.footer-alu .footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  color: var(--color-gray-400);
  transition: all var(--transition-fast);
}

.footer-alu .footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-navy-900);
  transform: translateY(-2px);
}

.footer-alu .footer-nav h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
}

.footer-alu .footer-nav a {
  color: var(--color-gray-400);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer-alu .footer-nav a:hover {
  color: var(--color-gold);
}

.footer-alu .footer-contact-info a {
  color: var(--color-gray-400);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer-alu .footer-contact-info a:hover {
  color: var(--color-gold);
}

.footer-alu .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  margin-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ==========================================================================
   END OF ALUMINIUM.CSS
   ========================================================================== */

/* ============================================================
   TESTIMONIALS — CINEMATIC SPOTLIGHT (auto-rotating single review)
   ============================================================ */
.section-testimonials-spot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0c1d27 0%, #0a161d 100%);
  color: #fff;
}
.section-testimonials-spot .tspot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 320px at 85% -5%, rgba(224,166,60,0.12), transparent 60%),
    radial-gradient(520px 420px at 3% 112%, rgba(121,182,189,0.09), transparent 55%);
}
.section-testimonials-spot .container { position: relative; z-index: 1; }
.section-testimonials-spot .section-header h2 { color: #fff; }
.section-testimonials-spot .section-header .subtitle { color: var(--color-gold); }

.tspot { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.tspot__mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4.5rem, 12vw, 8rem);
  line-height: 0.55;
  color: var(--color-gold);
  opacity: 0.9;
}
.tspot__viewport { display: grid; margin-top: 0.4rem; }
.tspot__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
  pointer-events: none;
}
.tspot__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}
.tspot__stars {
  display: inline-flex;
  gap: 4px;
  color: var(--color-gold);
  margin-bottom: 1.1rem;
}
.tspot__stars svg { width: 19px; height: 19px; fill: currentColor; filter: drop-shadow(0 1px 2px rgba(224,166,60,0.4)); }
.tspot__quote {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0;
}
.tspot__by {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}
.tspot__av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  color: #12242f;
  background: var(--gradient-gold);
  box-shadow: 0 0 0 4px rgba(224,166,60,0.2);
}
.tspot__name { display: block; font-family: var(--font-display); font-weight: var(--fw-bold); color: #fff; }
.tspot__role { display: block; color: var(--color-gray-400); font-size: 0.85rem; }

.tspot__nav { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.tspot__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: #cdd8db;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.tspot__arrow:hover { background: var(--color-gold); border-color: var(--color-gold); color: #12242f; transform: translateY(-1px); }
.tspot__dots { display: flex; gap: 0.45rem; margin: 0 0.7rem; }
.tspot__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.25);
  transition: width 0.35s ease, background 0.35s ease;
}
.tspot__dot.is-active { width: 28px; border-radius: 99px; background: var(--color-gold); }
