@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  /* Color Palette - Elegant Dark Sartorial theme */
  --bg-primary: #070709;      /* Obsidian Black */
  --bg-secondary: #161821;    /* Steel Charcoal-Grey / Grigetto */
  --bg-tertiary: #222533;     /* Lighter slate for cards */
  
  --primary: #d4af37;         /* Metallic Sartorial Gold */
  --primary-glow: rgba(212, 175, 55, 0.15);
  --primary-light: #f3e5ab;   /* Soft Champagne Gold */
  --secondary: #a1a1a6;       /* Platinum Gray */
  --secondary-glow: rgba(161, 161, 166, 0.15);
  
  --text-main: #f3f4f6;       /* Warm white */
  --text-muted: #a1a1a6;      /* Platinum text */
  --text-dark: #4b5563;       /* Darker gray */
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-gold-focus: rgba(212, 175, 55, 0.5);
  
  --gold-gradient: linear-gradient(135deg, #f5cd79 0%, #e5a93c 50%, #b8860b 100%);
  --dark-gradient: linear-gradient(180deg, #111215 0%, #070709 100%);
  --glow-gradient: radial-gradient(circle, rgba(212,175,55,0.08) 0%, rgba(7,7,9,0) 70%);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 25px var(--primary-glow);
  
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-blur: blur(12px);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout Constraints */
  --max-width: 1200px;
  --header-height: 80px;
}

/* --- RESET & BASE STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- REUSABLE UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  color: var(--primary);
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--shadow-sm);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(229, 169, 60, 0.3);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.section-padding {
  padding: 8rem 0;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  font-family: var(--font-display);
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* Glassmorphism card utility */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- HEADER / NAVIGATION --- */
header {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
}

header.scrolled {
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  height: 70px;
}

.nav-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-needle {
  color: var(--primary);
  font-size: 1.8rem;
  display: inline-block;
  transform: rotate(-45deg);
  transition: var(--transition-normal);
}

.logo:hover .logo-needle {
  transform: rotate(-15deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: calc(var(--header-height) + 0.5rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background: radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.05) 0%, rgba(7, 7, 9, 0) 70%);
}

.hero-glow {
  position: absolute;
  top: 15%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--glow-gradient);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-tagline span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-size: 4.25rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-content-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 auto 2.5rem auto;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

/* Sartorial Visual Element in Hero */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.sartorial-badge {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-dashed 40s linear infinite;
}

.sartorial-badge-inner {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  animation: reverse-rotate 40s linear infinite; /* keep text upright */
}

.badge-logo {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
}

.badge-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.badge-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-hours {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.8rem;
  margin-top: 0.5rem;
  display: block;
}

/* --- PROCESS TIMELINE (FORMULA) --- */
.process-timeline {
  position: relative;
  width: 100%;
  margin-top: 2rem;
}

.timeline-line {
  position: absolute;
  top: 40px; /* Align with center of the 80px badge */
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dotted var(--primary);
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Scissors icon on the line between cards on hover/desktop */
.timeline-step:not(:last-child)::after {
  content: '✂';
  position: absolute;
  top: 40px;
  right: -1.25rem; /* half of gap */
  transform: translate(50%, -50%) rotate(90deg);
  color: var(--primary);
  font-size: 1.25rem;
  opacity: 0.3;
  z-index: 3;
  pointer-events: none;
  transition: var(--transition-normal);
}

.timeline-step:hover:not(:last-child)::after {
  opacity: 1;
  color: var(--primary-light);
  animation: timeline-snip 0.6s ease-in-out infinite alternate;
}

@keyframes timeline-snip {
  0% { transform: translate(50%, -50%) rotate(75deg) scale(1.1); }
  100% { transform: translate(50%, -50%) rotate(105deg) scale(1.1); }
}

.step-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px dashed var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 4;
}

.timeline-step:hover .step-badge {
  transform: scale(1.1);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-glow);
  background: var(--primary-glow);
}

.step-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1;
}

.step-icon {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  transition: var(--transition-fast);
}

.timeline-step:hover .step-icon {
  color: var(--text-main);
  transform: scale(1.1);
}

.step-card {
  width: 100%;
  text-align: center;
  padding: 2.2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-step:hover .step-card {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(0, 0, 0, 0.4);
}

.step-phase {
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

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

/* --- SPECIALIZATIONS --- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.spec-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 0; /* Let image stretch to edges */
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition-normal);
  z-index: 10;
}

.spec-card:hover::before {
  transform: scaleX(1);
}

.spec-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.spec-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.spec-card:hover .spec-image {
  transform: scale(1.05);
}

.spec-info {
  padding: 2.5rem;
}

.spec-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.spec-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.spec-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.spec-tag {
  font-size: 0.8rem;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

/* --- TEAM SECTION --- */
.team-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.team-visual {
  position: relative;
}

.team-image-container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.team-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 7, 9, 0.8) 0%, rgba(7, 7, 9, 0) 50%);
}

.team-leader-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}

.team-leader-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.team-leader-role {
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-info h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.team-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- INTERACTIVE CALCULATOR / WIDGET --- */
.calculator-box {
  max-width: 800px;
  margin: 0 auto;
}

.calc-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.calc-steps::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-tertiary);
  z-index: 0;
}

.calc-step-bar {
  position: absolute;
  top: 15px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 1;
  transition: var(--transition-normal);
}

.calc-step-node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
  transition: var(--transition-normal);
}

.calc-step-node.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #000;
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.calc-step-node.completed {
  border-color: var(--primary);
  background: var(--bg-primary);
  color: var(--primary);
}

.calc-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.calc-panel.active {
  display: block;
}

/* Step 1: Sectors Grid */
.calc-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.calc-sector-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.calc-sector-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.calc-sector-card.selected {
  border-color: var(--primary);
  background: var(--primary-glow);
  box-shadow: var(--shadow-glow);
}

.calc-sector-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.calc-sector-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

/* Step 2: Custom details checkboxes */
.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.calc-option-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-normal);
}

.calc-option-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.calc-option-card.selected {
  border-color: var(--primary);
  background: var(--primary-glow);
}

.calc-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.calc-option-card.selected .calc-checkbox {
  border-color: var(--primary);
  background: var(--primary);
}

.calc-option-card.selected .calc-checkbox::after {
  content: '✓';
  color: #000;
  font-size: 0.75rem;
  font-weight: bold;
}

.calc-option-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.calc-option-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Step 3: Contact Form */
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}

.form-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
  background: rgba(255, 255, 255, 0.06);
}

/* Calculator Footer Navigation */
.calc-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.calc-summary-preview {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.calc-summary-preview span {
  color: var(--primary);
  font-weight: 600;
}

.calc-nav-buttons {
  display: flex;
  gap: 1rem;
}

/* Success State Panel */
.calc-success-panel {
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-description {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem auto;
}

/* --- FOOTER --- */
footer {
  background: #04060a;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col a {
  color: var(--text-muted);
}

.footer-col a:hover {
  color: var(--text-main);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-copyright-info {
  text-align: left;
}

.footer-copyright-info p {
  margin: 0;
  line-height: 1.5;
}

.footer-copyright-info p:first-child {
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.footer-copyright-info p:last-child {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links span {
  color: var(--text-muted);
  opacity: 0.5;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px rgba(212,175,55,0.8); }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes rotate-dashed {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes reverse-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

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

@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --- RESPONSIVE UTILITIES --- */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  span.mobile-only, a.mobile-only {
    display: inline !important;
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-image-container {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  header#main-header {
    display: none !important;
  }
  
  .nav-container {
    justify-content: flex-end;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
  
  .section-title {
    font-size: 2.25rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 50%;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 6rem 1.5rem 3rem 1.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-color);
    visibility: hidden;
    pointer-events: none;
    align-items: center;
  }
  
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }
  
  /* Menu icon animation */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem !important;
    padding-bottom: 2rem;
  }

  .hero-brand-lockup {
    width: 100%;
    margin: 0 auto 1.5rem auto;
    padding: 0 1rem;
  }

  .hero-brand-lockup .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 3.2rem);
    white-space: normal !important;
    text-align: center;
    letter-spacing: 0.01em;
  }

  .hero-brand-lockup .hero-subtitle {
    font-size: clamp(0.8rem, 2.8vw, 1.25rem);
    letter-spacing: 0.15em;
    text-transform: none;
    text-align: center;
    width: 100%;
    display: block;
  }

  .scroll-down-indicator {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .timeline-line {
    display: none;
  }

  .timeline-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 2rem;
  }

  /* Vertical stitched line */
  .timeline-steps::before {
    content: '';
    position: absolute;
    left: 25px; /* exactly center of the 50px badge */
    top: 1rem;
    bottom: 1rem;
    width: 2px;
    border-left: 2px dotted var(--primary);
    opacity: 0.4;
    z-index: 1;
  }

  .timeline-step {
    position: relative;
    width: 100%;
    padding-left: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-step:not(:last-child)::after {
    display: none; /* remove desktop horizontal scissors */
  }

  .step-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    background: var(--bg-secondary);
    border: 1.5px dashed var(--primary);
    z-index: 2;
  }

  .step-number {
    font-size: 1.05rem;
  }

  .step-icon {
    display: none; /* hide sub-icon inside badge on mobile */
  }

  .step-card {
    padding: 1.5rem;
    text-align: left;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
  }

  .step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .step-card p {
    font-size: 0.95rem;
  }
  
  .calc-sectors-grid {
    display: none !important;
  }

  #mobile-sector-group {
    display: block !important;
  }

  .calc-summary-preview {
    display: none !important;
  }
  
  .calc-options-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-copyright-info {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.75rem;
  }
}

/* --- LOGO PLACEHOLDER --- */
.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
}

.logo-placeholder i {
  font-size: 1.35rem;
  color: var(--primary);
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
  transition: var(--transition-fast);
}

/* --- HERO SUBTITLE --- */
.hero-subtitle {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

/* --- LAPTOP MOCKUP --- */
.laptop-mockup {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  perspective: 1000px;
}

.laptop-screen {
  background: #2a2d32;
  border: 12px solid #1a1c1f;
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow-lg), 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.laptop-content {
  width: 100%;
  height: 100%;
  position: relative;
  background: #111215;
}

.laptop-slider {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.laptop-slide {
  width: 25%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}

.slide-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(7, 7, 9, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
}

.laptop-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 45px rgba(212, 175, 55, 0.15);
  pointer-events: none;
}

.laptop-base {
  background: #e2e8f0;
  height: 14px;
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #94a3b8;
  border-radius: 0 0 6px 6px;
}

.laptop-badge {
  position: absolute;
  top: -20px;
  right: -10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  z-index: 100;
  animation: float 4s ease-in-out infinite;
}

.laptop-badge i {
  color: var(--primary);
  font-size: 1.3rem;
}

.laptop-badge div {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.laptop-badge span {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.laptop-badge strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  font-weight: 800;
}

.mockup-controls {
  position: absolute;
  top: 50%;
  left: -12px;
  right: -12px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 50;
}

.mock-control-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(7, 7, 9, 0.8);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.mock-control-btn:hover {
  background: var(--primary);
  color: #000;
  transform: scale(1.1);
}

/* --- SCROLL DOWN INDICATOR --- */
.scroll-down-indicator {
  position: relative;
  margin-top: 4.5rem;
  margin-bottom: 2.5rem;
  left: 0;
  transform: none;
  z-index: 10;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.scroll-down-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.scroll-down-indicator a:hover {
  color: var(--text-main);
}

.scroll-down-indicator i {
  font-size: 1rem;
  animation: bounce 2s infinite;
  color: var(--primary);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

/* --- TEXT HIGHLIGHTING --- */
strong {
  font-weight: 700;
  color: var(--text-main);
}

p strong {
  color: var(--primary-light);
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.underline-highlight {
  color: var(--primary-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

/* --- SECTOR GRID 4 COLUMNS --- */
.calc-sectors-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* --- HERO BRAND LOCKUP --- */
.hero-brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
}

.hero-brand-lockup .hero-title {
  font-size: clamp(2.0rem, 7.5vw, 4.2rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  white-space: nowrap;
}

.hero-divider {
  width: 100%;
  height: 1px;
  border-top: 1.5px dotted var(--primary);
  margin: 1.5rem 0;
  position: relative;
}

.hero-divider::after {
  content: '✂';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-primary); /* matching background of body */
  padding: 0 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.hero-brand-lockup .hero-subtitle {
  font-size: clamp(0.9rem, 2.4vw, 1.45rem);
  font-weight: 500;
  text-transform: none;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-display);
  width: 100%;
  display: block;
  text-align: center;
  letter-spacing: 0.22em;
}

/* --- DYNAMIC ROTATING STICKER BADGE --- */
.laptop-badge-dynamic {
  position: absolute;
  top: -30px;
  right: -30px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  z-index: 100;
  animation: float 4s ease-in-out infinite;
  overflow: hidden;
  padding: 10px;
}

.badge-scissors-circle {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-scissors-circle svg {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate-dashed 20s linear infinite;
}

.badge-scissors-circle i {
  color: var(--primary);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.4));
  animation: snip 1.5s ease-in-out infinite alternate;
}

.badge-scissors-text {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(17, 18, 21, 0.92);
  border-radius: 50%;
  width: 95px;
  height: 95px;
  border: 1px dashed rgba(212,175,55,0.2);
}

.badge-scissors-text span {
  font-size: 0.55rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge-scissors-text strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 800;
  margin: 2px 0;
  line-height: 1;
}

@keyframes snip {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(5deg); }
  100% { transform: scale(1) rotate(-5deg); }
}

/* --- WARRANTY SECTION --- */
.warranty-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.warranty-info {
  display: flex;
  flex-direction: column;
}

.warranty-badge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.warranty-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.warranty-badge-item i {
  color: var(--primary);
  font-size: 1.15rem;
  background: var(--primary-glow);
  padding: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warranty-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gold-seal {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #f5cd79 0%, #e5a93c 70%, #b8860b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 15px 35px rgba(229, 169, 60, 0.25), 0 0 0 6px rgba(229, 169, 60, 0.1);
  animation: float 5s ease-in-out infinite;
  z-index: 1;
}

.seal-inner {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
  text-align: center;
  padding: 10px;
}

.seal-inner i {
  font-size: 1.8rem;
  margin-bottom: 2px;
}

.seal-inner h4 {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.seal-inner p {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.seal-inner span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.seal-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.12) 0%, rgba(7, 7, 9, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* --- LOGO SCISSORS HOVER ANIMATION --- */
.logo:hover .logo-placeholder i {
  animation: logo-scissors-snip 0.6s ease-in-out infinite alternate;
}

@keyframes logo-scissors-snip {
  0% { transform: rotate(-45deg); }
  100% { transform: rotate(-15deg) scale(1.15); }
}



/* --- OVERRIDES IN RESPONSIVE LAYOUTS --- */
@media (max-width: 1024px) {
  .calc-sectors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .warranty-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: left;
  }
  .warranty-badge-list {
    align-items: flex-start;
  }
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .calc-sectors-grid {
    display: none !important;
  }
  .laptop-badge-dynamic {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .calc-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }

  .calc-sectors-grid {
    display: none !important;
  }
  
  .calc-options-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem;
  }
  
  .calc-option-card {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .calc-option-info h4 {
    font-size: 0.85rem;
  }
  
  .calc-option-info p {
    display: none;
  }

  .spec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  
  .spec-image-wrapper {
    height: 120px;
  }
  
  .spec-info {
    padding: 1rem;
  }
  
  .spec-info h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .spec-info p {
    display: none !important;
  }
  
  .spec-features {
    display: none;
  }
}

/* --- REVIEWS SECTION --- */
.reviews-section {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.reviews-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--glow-gradient);
  left: -150px;
  top: 20%;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.reviews-slider-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 1;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  border: 1.5px solid var(--border-color);
  background: rgba(26, 27, 32, 0.45); /* var(--bg-tertiary) with opacity */
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
}

.reviews-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.review-rating {
  display: flex;
  gap: 0.35rem;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

.review-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 2rem;
  max-width: 620px;
  text-align: center;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.review-author-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  line-height: 1.2;
}

.review-author-business {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.reviews-nav-btn:hover {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  transform: scale(1.05);
}

.reviews-nav-btn:active {
  transform: scale(0.95);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  z-index: 1;
  position: relative;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.reviews-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 4rem 0;
  }
  
  .reviews-nav-btn {
    display: none;
  }
  
  .review-card {
    padding: 2rem 1.5rem;
  }
  
  .review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition-normal);
  font-size: 2rem;
}

.whatsapp-floating:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}




