/* ==========================================================================
   Rapid Medi-Aid Systems (India) - Modern Medical UI Design System
   Precision Engineered, User-Friendly & Mobile-First
   ========================================================================== */

@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 {
  /* Brand Palette */
  --primary: #0a2540;
  --primary-dark: #051525;
  --primary-light: #12375d;
  --accent: #0284c7;
  --accent-light: #38bdf8;
  --accent-dark: #0369a1;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --amber: #f59e0b;
  --rose: #f43f5e;

  /* Neutral Scale */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-glow: 0 0 25px -5px rgba(2, 132, 199, 0.35);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1420px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background-color: var(--slate-50);
}

.section-dark {
  background-color: var(--primary);
  color: var(--slate-300);
}

.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--white);
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--accent);
  margin-bottom: 1rem;
}

.badge-pill.badge-emerald {
  background-color: rgba(16, 185, 129, 0.12);
  color: var(--emerald-dark);
}

.badge-pill.badge-amber {
  background-color: rgba(245, 158, 11, 0.12);
  color: var(--amber);
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.section-dark .section-subtitle {
  color: var(--slate-300);
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(2, 132, 199, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px 0 rgba(2, 132, 199, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--slate-100);
  color: var(--slate-800);
  border-color: var(--slate-200);
}

.btn-secondary:hover {
  background-color: var(--slate-200);
  color: var(--slate-900);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  color: #ffffff;
  box-shadow: 0 6px 20px 0 rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

/* Top Announcement / Contact Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--slate-300);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.top-bar-item a {
  color: var(--slate-300);
}

.top-bar-item a:hover {
  color: var(--accent-light);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Main Navigation Bar */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  height: 52px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo:hover img {
  opacity: 0.92;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent);
  background-color: var(--slate-100);
}

.nav-link.active {
  color: var(--accent);
  background-color: rgba(2, 132, 199, 0.08);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-800);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  background: var(--slate-50);
}

.header-phone-btn:hover {
  background: var(--slate-100);
  color: var(--accent);
  border-color: var(--accent-light);
}

.header-phone-btn svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--slate-50);
  cursor: pointer;
  padding: 0;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--slate-800);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.2);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  background: var(--slate-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-700);
}

.drawer-nav {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-nav a {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-nav a:hover, .drawer-nav a.active {
  background: rgba(2, 132, 199, 0.08);
  color: var(--accent);
}

.drawer-footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, #1e4976 0%, #0a2540 60%, #051525 100%);
  color: var(--white);
  padding: 5rem 0 4rem 0;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('../assets/images/slides/slider1.jpg') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, rgba(2, 132, 199, 0) 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(2, 132, 199, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--accent-light);
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span.text-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--slate-300);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--white);
}

.trust-text span {
  font-size: 0.8125rem;
  color: var(--slate-400);
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  background-color: var(--slate-900);
}

.hero-image-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-card-stack:hover .hero-image-wrap img {
  transform: scale(1.03);
}

/* Floating Badges on Hero Image */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  color: var(--slate-900);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.float-badge-1 {
  top: -20px;
  left: -25px;
}

.float-badge-2 {
  bottom: -25px;
  right: -20px;
}

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-icon.blue {
  background: rgba(2, 132, 199, 0.12);
  color: var(--accent);
}

.float-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
}

.float-icon svg {
  width: 24px;
  height: 24px;
}

.float-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--slate-900);
}

.float-sub {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 600;
}

/* ==========================================================================
   Emergency Helpline & Quick Bar
   ========================================================================== */

.emergency-bar {
  background: linear-gradient(90deg, #0284c7 0%, #0ea5e9 50%, #06b6d4 100%);
  color: var(--white);
  padding: 1.25rem 0;
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.emergency-message {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.emergency-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emergency-icon svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

.emergency-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 0.15rem;
}

.emergency-desc {
  font-size: 0.875rem;
  opacity: 0.9;
}

.emergency-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.emergency-call-btn {
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.emergency-call-btn:hover {
  background: var(--slate-100);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   Company Metrics & Milestones (Stats)
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.3);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 1.25rem auto;
  border-radius: var(--radius-lg);
  background: rgba(2, 132, 199, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.8125rem;
  color: var(--slate-500);
}

/* ==========================================================================
   Feature / Pillar Grid
   ========================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.3);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon-box.blue {
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent);
}

.feature-icon-box.green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.feature-icon-box.amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber);
}

.feature-icon-box svg {
  width: 28px;
  height: 28px;
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--slate-900);
}

.feature-desc {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.feature-list li svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   Product Catalog Component
   ========================================================================== */

.catalog-controls {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-and-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  max-width: 480px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--slate-400);
  pointer-events: none;
}

.catalog-search-input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-300);
  background-color: var(--white);
  color: var(--slate-800);
  outline: none;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.catalog-search-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15);
}

.catalog-counter {
  font-size: 0.9375rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tab {
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  background: var(--slate-100);
  color: var(--slate-900);
  border-color: var(--slate-300);
}

.filter-tab.is-active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.35);
}

.product-card-img-wrap {
  position: relative;
  background: #f8fafc;
  padding: 1.5rem;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-100);
}

.product-card-img-wrap img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(10, 37, 64, 0.85);
  color: var(--white);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.product-badge.badge-rent {
  background: linear-gradient(135deg, #10b981, #059669);
}

.product-badge.badge-special {
  background: linear-gradient(135deg, #0284c7, #0369a1);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-specs-list {
  list-style: none;
  background: var(--slate-50);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-specs-list li {
  display: flex;
  justify-content: space-between;
  color: var(--slate-600);
}

.product-specs-list li strong {
  color: var(--slate-800);
}

.product-card-footer {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.product-card-footer .btn {
  flex: 1;
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.is-open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--slate-100);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--slate-700);
  transition: var(--transition);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.modal-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  padding: 2.25rem;
}

.modal-image-col {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image-col img {
  max-height: 320px;
  width: 100%;
  object-fit: contain;
}

.modal-info-col {
  display: flex;
  flex-direction: column;
}

.modal-badge {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.modal-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
}

.modal-desc {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.modal-specs-table tr {
  border-bottom: 1px solid var(--slate-200);
}

.modal-specs-table td {
  padding: 0.55rem 0;
}

.modal-specs-table td:first-child {
  color: var(--slate-500);
  width: 40%;
  font-weight: 500;
}

.modal-specs-table td:last-child {
  color: var(--slate-900);
  font-weight: 600;
}

.modal-features-list {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.modal-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.modal-features-list li svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: auto;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.3);
}

.service-card-img {
  height: 220px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--slate-900);
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-card-desc {
  font-size: 0.9375rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-bullets {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-bullets li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-700);
}

.service-bullets li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
}

/* ==========================================================================
   Equipment Rental Banner / Highlight
   ========================================================================== */

.rental-banner {
  background: radial-gradient(circle at 10% 50%, #064e3b 0%, #065f46 40%, #042f2e 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: 0 20px 40px rgba(6, 78, 59, 0.25);
  position: relative;
  overflow: hidden;
}

.rental-banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.rental-banner h3 {
  color: var(--white);
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.rental-banner p {
  color: #a7f3d0;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rental-items-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.rental-chip {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.rental-chip svg {
  width: 16px;
  height: 16px;
  color: #34d399;
}

.rental-card-visual {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  text-align: center;
}

.rental-card-visual h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.rental-card-visual p {
  font-size: 0.875rem;
  color: #d1fae5;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   About & Story Sections
   ========================================================================== */

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-collage {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-main-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-floating-experience {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 220px;
}

.about-floating-experience .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.about-floating-experience .text {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 0.25rem;
  opacity: 0.95;
}

.about-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate-700);
}

.about-checklist li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.3);
}

.value-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Interactive Quote & Contact Forms
   ========================================================================== */

.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-800);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-300);
  background: var(--white);
  color: var(--slate-800);
  font-size: 0.9375rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-help-text {
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* Contact Page Split */
.contact-split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(2, 132, 199, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.35rem;
}

.contact-card-content p {
  color: var(--slate-600);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 1px solid var(--slate-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--primary-dark);
  color: var(--slate-400);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate-300);
  margin-bottom: 1.5rem;
}

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate-300);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item a {
  color: var(--slate-300);
}

.footer-contact-item a:hover {
  color: var(--accent-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--slate-400);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ==========================================================================
   Floating Widgets & Quick Call
   ========================================================================== */

.floating-triggers {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 1500;
}

.float-action-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
}

.float-action-btn:hover {
  transform: scale(1.12);
}

.float-action-btn.btn-whatsapp-float {
  background-color: #25d366;
}

.float-action-btn.btn-call-float {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.float-action-btn.btn-top-float {
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-action-btn.btn-top-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-action-btn svg {
  width: 26px;
  height: 26px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--slate-900);
  color: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  animation: slideInLeft 0.3s ease;
  border-left: 4px solid var(--accent);
}

.toast.toast-success {
  border-left-color: var(--emerald);
}

.toast.toast-error {
  border-left-color: var(--rose);
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}


/* ==========================================================================
   Clean Banner Image Slider (slider1.jpg & slider2.jpg)
   ========================================================================== */

.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-dark);
}

.banner-slider-container {
  position: relative;
  width: 100%;
}

.banner-slide {
  display: none;
  width: 100%;
  animation: bannerFade 0.5s ease-in-out;
}

.banner-slide.is-active {
  display: block;
}

.banner-slide a {
  display: block;
  width: 100%;
  cursor: pointer;
}

.banner-slide img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: cover;
  display: block;
}

@keyframes bannerFade {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

/* Banner Arrows - Visible on Hover */
.banner-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(10, 37, 64, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease, border-color 0.2s ease;
}

.banner-arrow.prev {
  left: 1.5rem;
  transform: translateY(-50%) translateX(-12px);
}

.banner-arrow.next {
  right: 1.5rem;
  transform: translateY(-50%) translateX(12px);
}

/* Reveal Arrows on Slider Hover */
.banner-slider:hover .banner-arrow {
  opacity: 1;
  visibility: visible;
}

.banner-slider:hover .banner-arrow.prev {
  transform: translateY(-50%) translateX(0);
}

.banner-slider:hover .banner-arrow.next {
  transform: translateY(-50%) translateX(0);
}

.banner-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

/* Banner Dots */
.banner-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 10;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.banner-dot:hover {
  background: rgba(255, 255, 255, 0.9);
}

.banner-dot.is-active {
  width: 34px;
  border-radius: 12px;
  background: var(--accent-light);
  border-color: var(--accent-light);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.7);
}

@media (max-width: 768px) {
  .banner-arrow {
    width: 36px;
    height: 36px;
    opacity: 0.85;
    visibility: visible;
  }
  .banner-arrow.prev {
    left: 0.5rem;
    transform: translateY(-50%) translateX(0);
  }
  .banner-arrow.next {
    right: 0.5rem;
    transform: translateY(-50%) translateX(0);
  }
  .banner-dots {
    bottom: 0.65rem;
  }
}

/* ==========================================================================
   Country Flag Mobile Input & Phone Validation Styles
   ========================================================================== */

.phone-input-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
}

.phone-input-wrapper:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.phone-input-wrapper.is-valid {
  border-color: var(--emerald);
}

.phone-input-wrapper.is-valid:focus-within {
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.phone-input-wrapper.has-error {
  border-color: var(--rose);
}

.phone-input-wrapper.has-error:focus-within {
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.15);
}

.country-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.85rem;
  background: var(--slate-50);
  border: none;
  border-right: 1px solid var(--slate-200);
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--slate-800);
  transition: var(--transition);
  user-select: none;
  flex-shrink: 0;
}

.country-select-btn:hover,
.country-select-btn.is-active {
  background: var(--slate-100);
}

.country-flag-slot {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.country-dial-code {
  letter-spacing: 0.02em;
}

.country-arrow-icon {
  transition: transform 0.2s ease;
  color: var(--slate-500);
}

.country-select-btn.is-active .country-arrow-icon {
  transform: rotate(180deg);
}

.phone-number-field {
  flex: 1;
  border: none !important;
  box-shadow: none !important;
  padding: 0.85rem 1rem;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--slate-800);
  outline: none;
}

/* Country Dropdown Panel */
.country-dropdown-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 310px;
  max-width: 95vw;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 1050;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease;
}

.country-dropdown-panel.is-open {
  display: flex;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.country-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--slate-100);
  background: var(--slate-50);
}

.country-search-input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 0.85rem;
  color: var(--slate-800);
}

.country-list-scroll {
  max-height: 230px;
  overflow-y: auto;
  padding: 0.35rem 0;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--slate-700);
  transition: var(--transition);
}

.country-option:hover {
  background: var(--slate-100);
  color: var(--primary);
}

.country-option.is-selected {
  background: rgba(2, 132, 199, 0.08);
  color: var(--accent);
  font-weight: 600;
}

.option-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.option-dial {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--slate-500);
  font-weight: 600;
}

.phone-validation-feedback {
  font-size: 0.8rem;
  margin-top: 0.35rem;
  display: none;
  font-weight: 500;
  line-height: 1.4;
}

.phone-validation-feedback.show {
  display: block;
}

.phone-validation-feedback.error {
  color: var(--rose);
}

.phone-validation-feedback.success {
  color: var(--emerald-dark);
}

/* ==========================================================================
   Visual Interactive Captcha Styles
   ========================================================================== */

.captcha-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  transition: var(--transition);
}

.captcha-card:focus-within {
  border-color: var(--accent);
  background: var(--white);
}

.captcha-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.captcha-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(2, 132, 199, 0.12);
  color: var(--accent);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.captcha-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.captcha-visual-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 4px;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.captcha-svg-canvas {
  display: block;
  border-radius: 4px;
  background: #f8fafc;
  user-select: none;
}

.captcha-refresh-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--slate-600);
  transition: var(--transition);
}

.captcha-refresh-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: rotate(180deg);
}

.captcha-input-wrap {
  flex: 1;
  min-width: 140px;
}

.captcha-answer-input {
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1rem;
  text-align: center;
  background: var(--white) !important;
}

.captcha-feedback {
  font-size: 0.8rem;
  margin-top: 0.4rem;
  display: none;
  font-weight: 600;
}

.captcha-feedback.show {
  display: block;
}

.captcha-feedback.error {
  color: var(--rose);
}

.captcha-feedback.success {
  color: var(--emerald-dark);
}

@media (max-width: 576px) {
  .captcha-body {
    flex-direction: column;
    align-items: stretch;
  }
  .captcha-visual-wrap {
    justify-content: space-between;
  }
  .captcha-input-wrap {
    width: 100%;
  }
  .country-dropdown-panel {
    width: 100%;
  }
}