/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette (HSL based for premium tuning) */
  --bg-primary: hsl(222, 28%, 7%);
  --bg-secondary: hsl(222, 24%, 11%);
  --bg-tertiary: hsl(222, 20%, 15%);
  --bg-glass: hsla(222, 24%, 12%, 0.65);
  --bg-glass-hover: hsla(222, 24%, 18%, 0.8);
  
  --border-color: hsla(217, 100%, 80%, 0.08);
  --border-color-hover: hsla(217, 100%, 80%, 0.2);
  
  --text-primary: hsl(210, 40%, 98%);
  --text-secondary: hsl(215, 20%, 72%);
  --text-muted: hsl(215, 12%, 50%);
  
  /* Accent Colors */
  --accent-indigo: hsl(255, 85%, 65%);
  --accent-indigo-rgb: 104, 85, 255;
  --accent-indigo-light: hsl(255, 85%, 75%);
  --accent-teal: hsl(174, 85%, 45%);
  --accent-teal-rgb: 17, 212, 180;
  --accent-teal-light: hsl(174, 85%, 55%);
  --accent-peach: hsl(338, 85%, 60%);
  
  /* Gradients */
  --grad-hero: linear-gradient(135deg, var(--accent-indigo) 0%, var(--accent-teal) 100%);
  --grad-text: linear-gradient(135deg, hsl(255, 100%, 80%) 0%, hsl(174, 100%, 70%) 100%);
  --grad-card: linear-gradient(135deg, hsla(255, 85%, 65%, 0.03) 0%, hsla(174, 85%, 45%, 0.03) 100%);
  --grad-dark: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  
  /* Typography */
  --ff-sans: 'Inter', sans-serif;
  --ff-display: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Animations & Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows & Glows */
  --shadow-glow-indigo: 0 8px 30px hsla(255, 85%, 65%, 0.25);
  --shadow-glow-teal: 0 8px 30px hsla(174, 85%, 45%, 0.25);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

p {
  color: var(--text-secondary);
}

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

ul {
  list-style: none;
}

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

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-indigo);
}

/* Selection Color */
::selection {
  background-color: hsla(255, 85%, 65%, 0.3);
  color: var(--text-primary);
}

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

.section {
  padding: 8rem 0;
  position: relative;
}

.section-bg-gradient {
  background: var(--grad-dark);
}

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

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 4.5rem auto;
  text-align: center;
}

.section-tag {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-teal);
  margin-bottom: 1rem;
  display: inline-block;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--grad-hero);
  color: #fff;
  box-shadow: var(--shadow-glow-indigo);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px hsla(255, 85%, 65%, 0.4);
}

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

.btn-secondary {
  background: hsla(217, 100%, 80%, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: hsla(217, 100%, 80%, 0.1);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
}

.btn-text {
  font-weight: 600;
  color: var(--accent-teal);
  gap: 0.25rem;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
}

.btn-text:hover {
  color: var(--accent-teal-light);
}

.btn-text svg {
  transition: transform var(--transition-fast);
}

.btn-text:hover svg {
  transform: translateX(4px);
}

/* Glassmorphism Panel */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition-normal), transform var(--transition-normal);
}

.glass-panel:hover {
  border-color: var(--border-color-hover);
}

/* Decorative Background Blobs */
.blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.blob-indigo {
  background-color: var(--accent-indigo);
  width: 400px;
  height: 400px;
}

.blob-teal {
  background-color: var(--accent-teal);
  width: 350px;
  height: 350px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 0;
  transition: padding var(--transition-normal), background-color var(--transition-normal);
}

.navbar.scrolled {
  padding: 0.85rem 0;
  background-color: hsla(222, 28%, 7%, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--grad-hero);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(104, 85, 255, 0.4);
}

.logo-text span {
  color: var(--accent-teal);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grad-hero);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-btn {
  margin-left: 1rem;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
  z-index: 101;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

.hero .blob-1 {
  top: 10%;
  right: -5%;
}

.hero .blob-2 {
  bottom: 10%;
  left: -5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(174, 85%, 45%, 0.08);
  border: 1px solid rgba(17, 212, 180, 0.2);
  color: var(--accent-teal-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background-color: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-teal);
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  width: 100%;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

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

/* Hero Interactive Dashboard Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-container {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-main-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-card-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-indigo);
  overflow: hidden;
}

.hero-card-meta h4 {
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}

.hero-card-meta p {
  font-size: 0.85rem;
  color: var(--accent-teal);
}

.hero-card-stats {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

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

.h-stat-val {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.h-stat-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-profile-progress {
  margin-bottom: 1.5rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--grad-hero);
  border-radius: var(--radius-full);
  width: 92%;
}

.hero-badges-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.h-badge {
  font-size: 0.75rem;
  background: hsla(217, 100%, 80%, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
}

.hero-badge-active {
  background: hsla(255, 85%, 65%, 0.1);
  border-color: rgba(104, 85, 255, 0.3);
  color: var(--accent-indigo-light);
}

/* Floating Card Widgets in Hero */
.floating-widget {
  position: absolute;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
}

.widget-1 {
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.widget-2 {
  bottom: 15%;
  left: -12%;
  animation-delay: 2s;
}

.widget-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 212, 180, 0.1);
  color: var(--accent-teal);
}

.widget-1 .widget-icon {
  background: rgba(104, 85, 255, 0.1);
  color: var(--accent-indigo);
}

.widget-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.widget-info h5 {
  font-size: 0.95rem;
}

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

/* ==========================================================================
   SERVICES SECTION (INTERACTIVE GRID)
   ========================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.service-card {
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: hsla(255, 85%, 65%, 0.25);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: hsla(217, 100%, 80%, 0.05);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover .service-icon-wrapper {
  background: var(--accent-indigo);
  color: #fff;
  border-color: var(--accent-indigo);
  box-shadow: var(--shadow-glow-indigo);
}

.service-icon-wrapper svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.75;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.service-card p {
  font-size: 0.975rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 2;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-features li svg {
  color: var(--accent-teal);
  flex-shrink: 0;
}

.service-card .btn-text {
  margin-top: auto;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   BEFORE/AFTER INTERACTIVE SLIDER
   ========================================================================= */
.comparison-section {
  overflow: hidden;
}

.comparison-section .blob-1 {
  top: 20%;
  left: -10%;
}

.slider-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  user-select: none;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.comparison-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-after {
  z-index: 1;
}

.image-before {
  z-index: 2;
  width: 50%; /* Default slider position */
  border-right: 2px solid #fff;
}

/* Internal Visual Content mimicking LinkedIn profiles */
.profile-slide-content {
  width: 900px; /* Locked width matches slider container max */
  height: 100%;
  background: var(--bg-tertiary);
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: padding var(--transition-normal);
}

.image-before .profile-slide-content {
  background: hsl(222, 10%, 15%);
}

/* Banner overlay for LinkedIn-style profiles */
.slider-profile-banner {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-slide-content.has-banner {
  padding-top: 8rem;
}

.profile-slide-content.has-banner .slider-profile-banner {
  display: block;
}

.profile-slide-content.has-banner .slider-avatar {
  margin-top: -5rem;
  position: relative;
  z-index: 2;
  border-color: var(--bg-tertiary) !important;
}

.image-before .profile-slide-content.has-banner .slider-avatar {
  border-color: hsl(222, 10%, 15%) !important;
}

.profile-slide-content.has-banner .slider-profile-header {
  position: relative;
  z-index: 1;
}

.slider-profile-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.slider-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 4px solid var(--bg-tertiary);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.image-before .slider-avatar {
  border-color: hsl(222, 10%, 15%);
  filter: grayscale(1);
}

.slider-profile-info {
  flex: 1;
}

.slider-profile-info h3 {
  font-size: 2.25rem;
  margin-bottom: 0.25rem;
}

.image-before .slider-profile-info h3 {
  color: var(--text-muted);
}

.slider-title-tag {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.image-before .slider-title-tag {
  color: var(--text-muted);
}

.image-after .slider-title-tag {
  color: var(--accent-teal);
  font-weight: 600;
}

.slider-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.slider-keywords {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.slider-key {
  font-size: 0.8rem;
  background: hsla(217, 100%, 80%, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.image-after .slider-key {
  background: hsla(255, 85%, 65%, 0.08);
  border-color: rgba(104, 85, 255, 0.2);
  color: var(--accent-indigo-light);
}

.slider-headline-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.image-before .slider-headline-badge {
  background: hsl(0, 50%, 20%);
  color: hsl(0, 100%, 80%);
}

.image-after .slider-headline-badge {
  background: hsl(150, 50%, 20%);
  color: hsl(150, 100%, 80%);
  box-shadow: 0 0 15px hsla(150, 100%, 50%, 0.2);
}

/* Slider Controls */
.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--accent-teal);
  left: 50%; /* Synchronized with width */
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent-teal);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--accent-teal);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transition: transform var(--transition-fast);
}

.slider-handle:hover .slider-handle-button {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================================================
   PRICING CALCULATOR SECTION
   ========================================================================= */
.calculator-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
}

.calculator-options {
  padding: 3rem;
}

.calc-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--accent-teal);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.calc-services-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-option-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: hsla(217, 100%, 80%, 0.02);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
}

.calc-option-card:hover {
  border-color: hsla(255, 85%, 65%, 0.25);
  background: hsla(217, 100%, 80%, 0.04);
}

.calc-option-card.selected {
  border-color: var(--accent-indigo);
  background: hsla(255, 85%, 65%, 0.05);
  box-shadow: 0 4px 20px hsla(255, 85%, 65%, 0.05);
}

.calc-checkbox {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  background: var(--bg-tertiary);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

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

.calc-checkbox svg {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: all var(--transition-fast);
}

.calc-option-card.selected .calc-checkbox svg {
  opacity: 1;
  transform: scale(1);
}

.calc-opt-info {
  flex: 1;
}

.calc-opt-info h4 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.calc-opt-info p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.calc-opt-price {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-teal-light);
}

/* Summary Panel Card */
.calculator-summary {
  padding: 3rem;
  position: sticky;
  top: 100px;
}

.summary-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 1.75rem;
}

.summary-header h3 {
  font-size: 1.5rem;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  min-height: 120px;
}

.summary-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.summary-item-row .remove-item {
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: 0.5rem;
}

.summary-item-row .remove-item:hover {
  color: var(--accent-peach);
}

.discount-badge-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--accent-teal);
  font-weight: 600;
  border-top: 1px dashed var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
}

.total-pricing-row {
  border-top: 1px solid var(--border-color);
  padding-top: 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.total-pricing-row span {
  font-size: 1.1rem;
  font-weight: 600;
}

.total-price-val {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.total-price-val span {
  font-size: 1.5rem;
  font-weight: 600;
}

.calculator-summary .btn {
  width: 100%;
}

.calculator-summary .coupon-section .btn {
  width: auto;
}


.summary-empty-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-style: italic;
  height: 120px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials-section {
  position: relative;
}

.testimonials-section .blob-1 {
  bottom: 10%;
  right: -5%;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.testimonials-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
  width: 100%;
}

.testimonial-slide {
  min-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.testimonial-card {
  padding: 3.5rem;
  text-align: center;
  position: relative;
}

.quote-icon {
  width: 48px;
  height: 48px;
  background: hsla(255, 85%, 65%, 0.08);
  color: var(--accent-indigo);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.quote-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  font-family: var(--ff-display);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  margin-bottom: 1rem;
  overflow: hidden;
  border: 2px solid var(--accent-teal);
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Slider Controls */
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.testimonial-arrow:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  border-color: var(--border-color-hover);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  width: 24px;
  background: var(--accent-teal);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   MODAL DIALOG (BOOKING PORTAL)
   ========================================================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 22, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  overflow-y: auto;
  padding: 3rem 1rem;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  width: 100%;
  max-width: 580px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  margin: auto;
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border-color);
}

.modal-close:hover {
  background: var(--accent-peach);
  color: #fff;
  border-color: var(--accent-peach);
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Multi-Step Forms */
.modal-step {
  display: none;
}

.modal-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 10px hsla(255, 85%, 65%, 0.15);
  background: hsla(222, 20%, 18%, 0.8);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Option Selector Cards inside Modal */
.form-grid-select {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-select-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.form-select-card:hover {
  border-color: var(--border-color-hover);
}

.form-select-card.selected {
  border-color: var(--accent-indigo);
  background: hsla(255, 85%, 65%, 0.05);
}

.form-select-card h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.form-select-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

.step-indicator {
  display: flex;
  gap: 0.5rem;
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: all var(--transition-fast);
}

.step-dot.active {
  width: 18px;
  border-radius: var(--radius-full);
  background-color: var(--accent-teal);
}

/* Success View in Modal */
.booking-success-view {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: hsla(174, 85%, 45%, 0.1);
  color: var(--accent-teal);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow-teal);
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

.booking-success-view h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.booking-success-view p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: hsl(222, 28%, 5%);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem 0;
}

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

.footer-info .logo {
  margin-bottom: 1.5rem;
}

.footer-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--accent-indigo);
  color: #fff;
  border-color: var(--accent-indigo);
  box-shadow: var(--shadow-glow-indigo);
  transform: translateY(-3px);
}

.footer-nav h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-newsletter p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form .form-input {
  padding: 0.75rem 1rem;
}

.newsletter-form .btn {
  padding: 0.75rem 1.25rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

/* ==========================================================================
   ABOUT, VISION & MISSION SECTIONS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.about-feature-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: hsla(217, 100%, 80%, 0.02);
}

.about-feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-teal);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-top: 2rem;
}

.vision-card {
  padding: 3rem 2rem;
  text-align: center;
}

.vision-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(17, 212, 180, 0.1);
  color: var(--accent-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.vision-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

/* ==========================================================================
   TEAM SHOWCASE
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--border-color);
  background: var(--bg-tertiary);
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.team-card:hover .team-avatar {
  border-color: var(--accent-indigo);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-indigo);
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent-teal);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.team-socials {
  display: flex;
  gap: 0.85rem;
}

.team-socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: hsla(217, 100%, 80%, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.team-socials a:hover {
  background: var(--accent-indigo);
  color: #fff;
  border-color: var(--accent-indigo);
}

/* ==========================================================================
   MEETING & ACTION GALLERY ("CONSULTATIONS IN ACTION")
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.gallery-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.gallery-image-placeholder svg {
  color: var(--text-muted);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.gallery-image-placeholder h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.gallery-image-placeholder p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery-live-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: hsl(0, 75%, 50%);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  animation: pulse-red 2s infinite;
}

.gallery-live-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

@keyframes pulse-red {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 30, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
  padding: 1.5rem;
  text-align: center;
  z-index: 2;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-indigo);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-glow-indigo);
}

.gallery-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   MOBILE STYLE VIDEO TESTIMONIALS (9:16)
   ========================================================================== */
.video-testimonials-section {
  overflow: hidden;
}

.video-slider-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.video-slider-wrapper {
  overflow: hidden;
  padding: 1.5rem 0.5rem;
}

.video-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform var(--transition-slow);
}

.video-card-mobile {
  min-width: calc(25% - 1.125rem); /* Displays 4 cards on desktop */
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 1024px) {
  .video-card-mobile {
    min-width: calc(33.333% - 1rem); /* 3 cards */
  }
}

@media (max-width: 768px) {
  .video-card-mobile {
    min-width: calc(50% - 0.75rem); /* 2 cards */
  }
}

@media (max-width: 480px) {
  .video-card-mobile {
    min-width: 100%; /* 1 card */
  }
}

.video-thumb-sim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all var(--transition-normal);
}

.video-card-mobile:hover .video-thumb-sim {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-teal);
  transition: all var(--transition-normal);
  z-index: 2;
  position: relative;
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-left: 3px; /* visual alignment */
}

.video-card-mobile.playing .video-play-btn {
  background: var(--accent-peach);
  box-shadow: 0 0 20px hsla(338, 85%, 60%, 0.4);
}

.video-card-mobile.playing .video-play-btn svg {
  margin-left: 0;
}

.video-card-mobile.playing .video-thumb-sim {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.9) 100%);
}

.video-playing-visualizer {
  display: none;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  gap: 3px;
  z-index: 2;
}

.video-card-mobile.playing .video-playing-visualizer {
  display: flex;
}

.video-playing-visualizer span {
  width: 3px;
  height: 15px;
  background-color: var(--accent-teal);
  border-radius: var(--radius-full);
  animation: equalize 1s infinite alternate;
}

.video-playing-visualizer span:nth-child(2) { animation-delay: 0.2s; }
.video-playing-visualizer span:nth-child(3) { animation-delay: 0.4s; }

@keyframes equalize {
  0% { height: 4px; }
  100% { height: 20px; }
}

.video-card-info {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}

.video-card-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.video-card-info p {
  font-size: 0.75rem;
  color: var(--accent-teal-light);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.video-card-comment {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.video-timeline-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--accent-teal);
  width: 0%;
  z-index: 3;
  transition: width 0.1s linear;
}

.video-card-mobile.playing .video-timeline-bar {
  animation: play-progress 15s linear infinite;
}

@keyframes play-progress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ==========================================================================
   CONTACT US SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1.25rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: hsla(217, 100%, 80%, 0.04);
  border: 1px solid var(--border-color);
  color: var(--accent-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.9rem;
}

/* ==========================================================================
   COUNTRY PICKER & UPGRADES
   ========================================================================== */
.country-phone-wrapper {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
}

.country-select-box {
  position: relative;
}

/* ==========================================================================
   POLICIES DOCUMENT MODAL OVERLAY
   ========================================================================== */
.policy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 22, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.policy-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.policy-modal-box {
  width: 100%;
  max-width: 800px;
  height: 80%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.policy-modal-overlay.open .policy-modal-box {
  transform: translateY(0);
}

.policy-content-scroll {
  flex: 1;
  overflow-y: auto;
  margin-top: 1.5rem;
  padding-right: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.policy-content-scroll h4 {
  font-size: 1.15rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.policy-content-scroll p, .policy-content-scroll ul {
  margin-bottom: 1rem;
}

.policy-content-scroll ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.policy-content-scroll li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   SOCIAL MEDIA HOVER COLORS
   ========================================================================== */
#social-facebook:hover {
  background-color: #1877F2;
  color: #fff;
  border-color: #1877F2;
  box-shadow: 0 8px 30px rgba(24, 119, 242, 0.35);
}

#social-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(214, 36, 159, 0.35);
}

#social-linkedin:hover {
  background-color: #0A66C2;
  color: #fff;
  border-color: #0A66C2;
  box-shadow: 0 8px 30px rgba(10, 102, 194, 0.35);
}

#social-tiktok:hover {
  background-color: #010101;
  color: #fff;
  border-color: #010101;
  box-shadow: 0 8px 30px rgba(1, 1, 1, 0.35);
  text-shadow: -1px -1px 0 #00ffff, 1px 1px 0 #ff0050;
}

#social-pinterest:hover {
  background-color: #BD081C;
  color: #fff;
  border-color: #BD081C;
  box-shadow: 0 8px 30px rgba(189, 8, 28, 0.35);
}

#social-reddit:hover {
  background-color: #FF4500;
  color: #fff;
  border-color: #FF4500;
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.35);
}

#social-x:hover {
  background-color: #000000;
  color: #fff;
  border-color: #333333;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.nav-socials {
  display: flex;
  gap: 0.5rem;
}

/* ==========================================================================
   TABBED BEFORE/AFTER SLIDER STYLES
   ========================================================================== */
.slider-tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

.slider-tab-btn {
  padding: 0.65rem 1.2rem;
  font-family: var(--ff-display);
  font-size: 0.825rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  background: hsla(217, 100%, 80%, 0.02);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slider-tab-btn:hover {
  background: hsla(217, 100%, 80%, 0.06);
  border-color: var(--border-color-hover);
  color: var(--text-primary);
}

.slider-tab-btn.active {
  background: var(--accent-indigo);
  color: #fff;
  border-color: var(--accent-indigo);
  box-shadow: var(--shadow-glow-indigo);
}

.slider-container.content-changing {
  opacity: 0.2;
  transform: scale(0.985);
}

/* ==========================================================================
   BLOG LAYOUT & CARDS
   ========================================================================== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.25rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-indigo);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--accent-teal);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.blog-meta span.date {
  color: var(--text-muted);
}

.blog-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.blog-card:hover h3 {
  color: var(--accent-teal-light);
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Blog Creator/Admin Panel Form */
.blog-editor-panel {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  padding: 3rem;
}

.blog-editor-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

/* Blog Reader Modal Overlay */
.blog-reader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.blog-reader-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.blog-reader-box {
  width: 100%;
  max-width: 900px;
  height: 85%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transform: translateY(25px);
  transition: transform var(--transition-normal);
}

.blog-reader-overlay.open .blog-reader-box {
  transform: translateY(0);
}

.blog-reader-scroll {
  flex: 1;
  overflow-y: auto;
  padding-right: 1.5rem;
}

.blog-reader-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.blog-reader-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.blog-reader-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.blog-reader-meta span strong {
  color: var(--accent-teal-light);
}

.blog-reader-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.blog-reader-content p {
  margin-bottom: 1.5rem;
}

.blog-reader-content h4 {
  font-size: 1.35rem;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-reader-content ul, .blog-reader-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-reader-content li {
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   SUBPAGE LAYOUTS & PAGINATION UTILITIES
   ========================================================================== */
.subpage-hero {
  padding: 8rem 0 3.5rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.subpage-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.see-more-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 3rem;
  padding: 1rem 0;
}

/* Visibility triggers for pagination */
.hidden-card {
  display: none !important;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.show-flex {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.show-block {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.testimonial-static-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .testimonial-static-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.video-grid-static {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .video-grid-static {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .video-grid-static {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .video-grid-static {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================= */
@media (max-width: 1024px) {
  :root {
    --container-max-width: 960px;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .hero-title {
    font-size: 3.25rem;
  }
  
  .services-grid {
    gap: 1.5rem;
  }
  
  .calculator-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .calculator-summary {
    position: static;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --container-max-width: 720px;
  }
  
  .nav-links {
    display: none; /* Hide for mobile toggle implementation later if needed */
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-subtitle {
    margin: 0 auto 2rem auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .slider-container {
    aspect-ratio: 4 / 3;
  }
  
  .profile-slide-content {
    padding: 1.5rem;
    width: 768px; /* Maintain fixed internal size */
  }
  
  .slider-profile-header {
    gap: 1rem;
  }
  
  .slider-avatar {
    width: 80px;
    height: 80px;
  }
  
  .slider-profile-info h3 {
    font-size: 1.5rem;
  }
  
  .slider-title-tag {
    font-size: 0.95rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.15rem;
  }
  
  .modal-box {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-grid-select {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .calc-option-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .calc-opt-price {
    align-self: flex-end;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   TRUSTPILOT RATING BADGE
   ========================================================================== */
.trustpilot-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.trustpilot-stars {
  display: flex;
  gap: 2px;
}
.trustpilot-star-box {
  width: 14px;
  height: 14px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ==========================================================================
   BUYER REVIEW SUBMISSION FORM
   ========================================================================== */
.buyer-review-section {
  margin-top: 5rem;
}
.buyer-review-box {
  padding: 3rem;
  max-width: 650px;
  margin: 0 auto;
}
.review-type-selector {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.review-type-btn {
  flex: 1;
  padding: 0.75rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: all var(--transition-fast);
}
.review-type-btn.active {
  border-color: var(--accent-teal);
  background: hsla(174, 85%, 45%, 0.05);
  color: var(--accent-teal-light);
}

/* ==========================================================================
   CHECKOUT MODAL & ORDERING SYSTEM
   ========================================================================== */
.checkout-summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  border-top: 1px solid var(--border-color);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--accent-teal-light);
}

/* ==========================================================================
   HOMEPAGE TOP HERO MEDIA SLIDER
   ========================================================================== */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  background: var(--bg-secondary);
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-md);
  z-index: 3;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10, 15, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .slide-overlay {
  transform: translateY(0);
  opacity: 1;
}

.slide-overlay h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.slide-overlay p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

/* Slider Controls */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 15, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0;
}

.slider-nav:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 182, 122, 0.4);
}

.slider-nav svg {
  display: block;
}

.slider-nav-prev {
  left: 1rem;
}

.slider-nav-next {
  right: 1rem;
}

.slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  background: var(--accent-teal);
  border-radius: var(--radius-full);
}

/* Responsive adjustment for hero grid on mobile */
@media (max-width: 991px) {
  .hero-slider-container {
    height: 400px;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-slider-container {
    height: 300px;
  }
  .slide-overlay {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1rem;
  }
  .slide-overlay h3 {
    font-size: 1.1rem;
  }
  .slide-overlay p {
    font-size: 0.8rem;
  }
  .slider-nav {
    width: 36px;
    height: 36px;
  }
}

/* ==========================================================================
   FAQ SECTION ACCORDION
   ========================================================================== */
.faq-section {
  position: relative;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 3.5rem;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--accent-indigo);
  box-shadow: 0 4px 20px hsla(255, 85%, 65%, 0.03);
}

.faq-header {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 1.5rem;
}

.faq-header span:first-child {
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--text-secondary);
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

/* Horizontal line */
.faq-icon::before {
  width: 12px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  background-color: var(--accent-teal-light);
}

.faq-item.active .faq-icon::before {
  background-color: var(--accent-teal-light);
  transform: rotate(180deg);
}

.faq-item.active .faq-header {
  color: var(--accent-teal-light);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.925rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   CUSTOM SEARCHABLE COUNTRY SELECTOR WIDGET
   ========================================================================== */
.custom-country-select {
  position: relative;
  width: 80px;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 0.4rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
}

.custom-select-trigger:hover {
  border-color: var(--border-color-hover);
}

.custom-select-trigger:focus,
.custom-country-select.open .custom-select-trigger {
  border-color: var(--accent-indigo);
  box-shadow: 0 0 10px hsla(255, 85%, 65%, 0.15);
}

.custom-select-trigger .selected-emoji {
  margin-right: 0.3rem;
  font-size: 1.1rem;
}

.custom-select-trigger .selected-code {
  font-weight: 600;
}

.custom-select-trigger .select-arrow {
  font-size: 0.7rem;
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
}

.custom-country-select.open .select-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  max-height: 320px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  padding: 0.75rem;
  z-index: 200;
  display: none;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.custom-country-select.open .custom-select-dropdown {
  display: flex;
}

.custom-select-search {
  width: 100%;
  padding: 0.6rem 0.85rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  outline: none;
}

.custom-select-search:focus {
  border-color: var(--accent-indigo);
}

.custom-select-options {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  max-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.custom-select-options::-webkit-scrollbar {
  width: 6px;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.custom-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
}

.custom-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
}

.custom-option.active {
  background: hsla(255, 85%, 65%, 0.15);
  color: var(--text-primary);
}

.opt-emoji {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

.opt-name {
  flex-grow: 1;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.opt-dial {
  font-weight: 600;
  color: var(--accent-teal-light);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.opt-pinned-badge {
  font-size: 0.7rem;
  background: var(--accent-indigo);
  color: #fff;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  margin-left: 0.5rem;
  font-weight: 600;
}

.dropdown-divider {
  height: 1px;
  background: var(--border-color);
  margin: 0.5rem 0;
}

.country-phone-wrapper {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.country-phone-wrapper .custom-country-select {
  flex-shrink: 0;
}

.country-phone-wrapper > div:last-child {
  flex-grow: 1;
  width: 0 !important;
}

/* Typed phone input contrast fix */
.country-phone-wrapper input[type="tel"] {
  color: #ffffff !important;
}

/* ==========================================================================
   CAROUSEL / HORIZONTAL SLIDERS
   ========================================================================== */
.carousel-outer-wrapper {
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.carousel-slide {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: auto;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

/* Width multipliers based on class */
.carousel-track.desktop-3 .carousel-slide {
  width: calc((100% - (2 * 1.5rem)) / 3);
}

.carousel-track.desktop-4 .carousel-slide {
  width: calc((100% - (3 * 1.5rem)) / 4);
}

.carousel-track.desktop-5 .carousel-slide {
  width: calc((100% - (4 * 1.5rem)) / 5);
}

@media (max-width: 1024px) {
  .carousel-track.desktop-3 .carousel-slide,
  .carousel-track.desktop-4 .carousel-slide {
    width: calc((100% - (2 * 1.5rem)) / 3) !important;
  }
}

@media (max-width: 768px) {
  .carousel-track.desktop-3 .carousel-slide,
  .carousel-track.desktop-4 .carousel-slide {
    width: calc((100% - (1 * 1.5rem)) / 2) !important;
  }
  .carousel-track.desktop-5 .carousel-slide {
    width: calc((100% - (2 * 1.5rem)) / 3) !important;
  }
}

@media (max-width: 480px) {
  .carousel-track.desktop-3 .carousel-slide,
  .carousel-track.desktop-4 .carousel-slide {
    width: 100% !important;
  }
  .carousel-track.desktop-5 .carousel-slide {
    width: calc((100% - (1 * 1.5rem)) / 2) !important;
  }
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(5, 8, 22, 0.85);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
  outline: none;
}

.carousel-arrow:hover {
  background: var(--accent-indigo);
  border-color: var(--accent-indigo-light);
  box-shadow: 0 0 15px rgba(104, 85, 255, 0.4);
  color: #fff;
}

.carousel-arrow-prev {
  left: -22px;
}

.carousel-arrow-next {
  right: -22px;
}

@media (max-width: 1200px) {
  .carousel-arrow-prev {
    left: -5px;
  }
  .carousel-arrow-next {
    right: -5px;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
@media (max-width: 1024px) {
  .navbar .container {
    position: relative;
  }
  
  .nav-links {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 8, 22, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99;
    gap: 2rem;
    padding: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .nav-links.open {
    transform: translateY(0);
  }
  
  .nav-toggle {
    display: block !important;
    z-index: 100;
  }
  
  .nav-links .nav-link {
    font-size: 1.35rem;
    font-weight: 600;
  }

  .nav-links .btn {
    margin-left: 0 !important;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

@media (min-width: 1025px) and (max-width: 1250px) {
  .nav-links {
    gap: 0.75rem !important;
  }
  .nav-link {
    font-size: 0.82rem !important;
  }
  .nav-btn {
    margin-left: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
  }
}

/* ==========================================================================
   BEFORE & AFTER CRITIQUE PANELS
   ========================================================================== */
.slider-critique-list {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.critique-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: left;
}

.image-before .critique-item {
  color: #ff6b6b;
}

.image-after .critique-item {
  color: #2ed573;
}

.critique-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
}

@media (max-width: 480px) {
  .custom-select-dropdown {
    width: 230px !important;
    max-height: 280px !important;
  }
  .custom-select-options {
    max-height: 180px !important;
  }
}

