/* ============================================================
   স্মার্ট সেবা প্রাইম সিলিউশন লিমিটেড — 2026+ Futuristic Glassmorphic UI System
   Theme: Deep Space Navy (#030712 | #0b1329) + Neon Emerald (#10b981) + Cyber Gold (#f59e0b) + Electric Cyan (#06b6d4)
   100% Responsive for All Android Mobiles, Tablets & Desktops
   ============================================================ */

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

:root {
  /* Futuristic Color Tokens */
  --bg-dark: #030712;
  --bg-dark-card: #0b1329;
  --bg-dark-subtle: #111c38;

  --neon-emerald: #10b981;
  --neon-emerald-glow: rgba(16, 185, 129, 0.35);
  --emerald-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);

  --cyber-gold: #f59e0b;
  --cyber-gold-light: #fbbf24;
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  --gold-glow: rgba(245, 158, 11, 0.4);

  --electric-cyan: #06b6d4;
  --electric-blue: #3b82f6;
  --electric-purple: #8b5cf6;
  --electric-rose: #f43f5e;

  /* Aliases for contact.php */
  --primary: var(--neon-emerald);
  --primary-dark: var(--bg-dark);
  --gold: var(--cyber-gold);
  --light-bg: var(--bg-light);

  /* Light Theme Overrides */
  --bg-light: #f8fafc;
  --card-light: #ffffff;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --text-muted: #64748b;

  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-emerald: rgba(16, 185, 129, 0.3);

  --shadow-neon: 0 10px 40px rgba(16, 185, 129, 0.2);
  --shadow-gold: 0 10px 40px rgba(245, 158, 11, 0.3);
  --shadow-card: 0 20px 50px rgba(3, 7, 18, 0.12);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Hind Siliguri', 'Outfit', sans-serif !important;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Hind Siliguri', 'Outfit', sans-serif !important;
  font-weight: 700;
  line-height: 1.25;
}

.num-font {
  font-family: 'Outfit', 'Space Grotesk', sans-serif !important;
}

/* Futuristic Section Padding */
.section-pad {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-pad {
    padding: 60px 0;
  }
}

/* Futuristic Badge & Headings */
.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.section-heading .sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--neon-emerald);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.section-heading h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 1.85rem;
  }
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}

.section-heading p {
  color: var(--text-gray);
  font-size: 1.1rem;
  margin-top: 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER & NAVBAR (Futuristic Floating Glass Bar) */
.ss-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(3, 7, 18, 0.08);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
  transition: var(--transition);
}

.ss-topbar {
  background: linear-gradient(90deg, #030712 0%, #0b1329 50%, #047857 100%);
  padding: 8px 0;
  font-size: 13px;
  color: #ffffff;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-inner a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-inner a:hover {
  color: var(--cyber-gold-light);
}

.topbar-right a {
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-right a:hover {
  background: var(--gold-gradient);
  color: #030712;
  transform: translateY(-2px);
}

/* Navbar Brand & Menu */
.ss-navbar {
  padding: 12px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ss-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.brand-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.ss-nav-link {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  margin: 0 2px;
}

.ss-nav-link i {
  font-size: 18px;
}

.ss-nav-link:hover, .ss-nav-link.active-link {
  color: #ffffff !important;
  background: var(--emerald-gradient) !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.btn-card-verify {
  background: var(--gold-gradient) !important;
  color: #030712 !important;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-pill);
  padding: 10px 20px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 8px;
}
.btn-card-verify:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}

.btn-card-verify {
  background: var(--gold-gradient) !important;
  color: #030712 !important;
  font-weight: 800 !important;
  box-shadow: var(--shadow-gold);
  padding: 9px 22px !important;
  border-radius: var(--radius-pill) !important;
}

.btn-card-verify:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

/* FUTURISTIC HERO SECTION (Deep Cyber Dark + Neon Emerald) */
.ss-hero {
  position: relative;
  background: radial-gradient(circle at 80% 20%, #064e3b 0%, #0b1329 45%, #030712 100%);
  padding: 155px 0 95px;
  overflow: hidden;
  color: #ffffff;
}

.ss-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(3, 7, 18, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--cyber-gold-light);
  font-weight: 700;
  font-size: 13.5px;
  padding: 7px 22px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.2);
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff !important;
  letter-spacing: -0.5px;
}

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

.hero-title span {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(245, 158, 11, 0.4));
}

.hero-subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 25px;
  line-height: 1.85;
}

.hero-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(8px);
}

.hero-pill i {
  color: var(--cyber-gold-light);
}

/* Futuristic Cyber Pitch Box */
.hero-pitch-card {
  background: rgba(11, 19, 41, 0.7);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
}

.pitch-item {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 10px;
}

@media (max-width: 576px) {
  .pitch-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 10px;
  }
}

.pitch-item:last-child {
  border: none;
}

.pitch-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyber-gold-light);
  font-family: 'Space Grotesk', sans-serif;
}

.pitch-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-ss-gold {
  background: var(--gold-gradient);
  color: #030712;
  font-weight: 800;
  padding: 13px 34px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ss-gold:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 45px rgba(245, 158, 11, 0.7);
  color: #030712;
}

.btn-ss-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}

.btn-ss-outline:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* PRESENTATION SLIDER (Neon Cyber Frame) */
.presentation-slider-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(16, 185, 129, 0.25);
  border: 3px solid rgba(16, 185, 129, 0.4);
  background: #0b1329;
}

.slide-img-item {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.presentationSwiper .swiper-button-prev,
.presentationSwiper .swiper-button-next {
  color: #030712;
  background: var(--gold-gradient);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.presentationSwiper .swiper-button-prev::after,
.presentationSwiper .swiper-button-next::after {
  font-size: 18px;
  font-weight: 800;
}

.presentationSwiper .swiper-pagination-bullet-active {
  background: var(--cyber-gold);
  width: 30px;
  border-radius: 6px;
}

/* FUTURISTIC TICKER BAR */
.stats-ticker {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: #030712;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 800;
  box-shadow: 0 5px 25px rgba(245, 158, 11, 0.3);
}

.ticker-wrap {
  display: inline-flex;
  animation: tickerSlide 35s linear infinite;
  gap: 40px;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

/* VIBRANT FUTURISTIC SERVICE CARDS */
.ss-services-section {
  background: var(--bg-light);
}

.service-card-vibrant {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.08);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card-vibrant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-emerald), var(--cyber-gold));
}

.service-card-vibrant:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 65px rgba(16, 185, 129, 0.25);
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(255, 255, 255, 0.98);
}

.scv-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}

.scv-icon-wrap.green { background: rgba(16, 185, 129, 0.14); color: var(--neon-emerald); }
.scv-icon-wrap.gold { background: rgba(245, 158, 11, 0.16); color: var(--cyber-gold-light); }
.scv-icon-wrap.teal { background: rgba(6, 182, 212, 0.14); color: var(--electric-cyan); }
.scv-icon-wrap.blue { background: rgba(59, 130, 246, 0.14); color: var(--electric-blue); }
.scv-icon-wrap.purple { background: rgba(139, 92, 246, 0.14); color: var(--electric-purple); }
.scv-icon-wrap.orange { background: rgba(244, 63, 94, 0.14); color: var(--electric-rose); }

.scv-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.scv-desc {
  color: var(--text-gray);
  font-size: 14px;
  line-height: 1.7;
}

.scv-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  background: var(--bg-subtle);
  color: var(--primary);
}

/* BUSINESS MODEL SECTION */
.ss-business-section {
  background: linear-gradient(135deg, #030712 0%, #0b1329 60%, #047857 100%);
  color: #ffffff;
}

.bm-flow-card {
  background: rgba(11, 19, 41, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
}

.bm-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}

.bm-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bm-step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: var(--gold-gradient);
  color: #030712;
  border-radius: 50%;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bm-step-title {
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
}

.bm-step-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* FOOTER */
.ss-footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.85);
  padding-top: 75px;
}

.footer-brand-logo {
  height: 58px;
  margin-bottom: 15px;
}

.footer-heading {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--cyber-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--cyber-gold-light);
}

.footer-bottom {
  background: #010309;
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13.5px;
}

/* ============================================================
   CONTACT PAGE STYLES (contact.php)
   ============================================================ */
.verify-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-card) 100%);
  padding: 180px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.verify-hero .hero-badge {
  background: rgba(245, 158, 11, 0.15);
  color: var(--cyber-gold);
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 20px;
}

.contact-info-card {
  background: linear-gradient(145deg, #092c13 0%, #134621 50%, #0d3a1a 100%);
  color: #fff;
  border-radius: 20px;
  padding: 32px 26px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(13, 58, 26, 0.25), 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18) 0%, rgba(245, 158, 11, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-card h3 {
  color: #ffc107;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 14px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(5px);
  border-color: rgba(245, 158, 11, 0.35);
}

.contact-info-item .ci-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  min-height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  flex-shrink: 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  background: rgba(245, 158, 11, 0.18) !important;
  border: 1px solid rgba(245, 158, 11, 0.35) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffc107 !important;
  font-size: 19px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease !important;
}

.contact-info-item:hover .ci-icon {
  background: #ffc107 !important;
  color: #0d3a1a !important;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.6);
  transform: scale(1.06);
}

.contact-info-item .ci-text {
  flex: 1;
  min-width: 0;
}

.contact-info-item .ci-text strong,
.contact-info-item .ci-text .ci-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: 0.2px;
}

.contact-info-item .ci-text span,
.contact-info-item .ci-text .ci-value {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  word-break: break-word;
  overflow-wrap: anywhere;
  display: block;
}

.contact-info-item .ci-text a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-item .ci-text a:hover {
  color: #ffc107;
  text-decoration: underline;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 25px;
}

.ss-form-control {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: #f8fafc;
  font-family: inherit;
  transition: var(--transition);
  font-size: 15px;
}

.ss-form-control:focus {
  outline: none;
  border-color: var(--neon-emerald);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.btn-submit-contact {
  background: var(--emerald-gradient);
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 16px;
  width: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-hero-primary {
  background: var(--gold-gradient);
  color: #030712;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  color: #030712;
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.btn-hero-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* ============================================================
   HOSPITAL LIST STYLES (hospital_list.php)
   ============================================================ */
.hospital-card-vibrant {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hospital-card-vibrant:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
}

.hospital-card-vibrant::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--emerald-gradient);
}

.hc-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 16px;
}

.hc-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.hc-address {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.hc-badge-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hc-badge {
  background: rgba(6, 182, 212, 0.1);
  color: var(--electric-cyan);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.hc-badge.gold {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-wrapper input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(16, 185, 129, 0.2);
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.search-wrapper input:focus {
  outline: none;
  border-color: var(--neon-emerald);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15);
}

.search-wrapper i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-emerald);
  font-size: 18px;
}

/* ============================================================
   ENHANCED INPUT FORMS & CONTROLS SYSTEM
   ============================================================ */
.form-control, .form-select {
  border-radius: 12px !important;
  border: 1.5px solid #cbd5e1 !important;
  padding: 12px 16px !important;
  font-size: 0.98rem !important;
  color: #0f172a !important;
  background-color: #ffffff !important;
  transition: all 0.25s ease-in-out !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.form-control:focus, .form-select:focus {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18) !important;
  outline: 0 !important;
}

.form-label, label {
  font-weight: 600 !important;
  color: #1e293b !important;
  margin-bottom: 7px !important;
  font-size: 0.95rem !important;
}

.input-group-text {
  border-radius: 12px 0 0 12px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-right: none !important;
  background-color: #f8fafc !important;
  color: #059669 !important;
  padding: 12px 16px !important;
}

.input-group > .form-control, .input-group > .form-select {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.ss-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.ss-form-card:hover {
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.12);
}

.btn-ss-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
  color: #030712 !important;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 13px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.btn-ss-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.4);
}

/* Responsive fixes for Contact Info Card */
@media (max-width: 576px) {
  .contact-info-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .contact-info-item {
    padding: 8px 10px;
    gap: 12px;
    margin-bottom: 12px;
  }
  .contact-info-item .ci-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    max-width: 42px !important;
    max-height: 42px !important;
    font-size: 16px !important;
  }
  .contact-info-item .ci-text .ci-value {
    font-size: 13.5px;
  }
}


