/* =========================================
   TAKSIGELIYO - STYLESHEET
   ========================================= */

/* --- Variables --- */
:root {
  /* Colors */
  --bg-dark: #070b14;
  --bg-card: #111826;
  --bg-card-hover: #1a2233;
  
  --text-main: #f3f4f6;
  --text-muted: #cbd5e1;
  
  --accent-color: #00e0ff; /* Electric Cyan */
  --accent-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --whatsapp-color: #128C7E;
  --whatsapp-hover: #075E54;
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Utilities */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --r: 14px;
  --r-lg: 22px;
  --shadow: 0 4px 28px rgba(0, 0, 0, .45);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, .55);
  --ease: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

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

/* --- Typography Utilities --- */
.highlight {
  color: var(--accent-color);
}
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn svg{ height: 18px;}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
}
.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--text-main);
  color: var(--text-main);
}
.btn-outline:hover {
  background: var(--text-main);
  color: var(--bg-dark);
}

.pulse-btn {
  animation: pulse-shadow 2s infinite;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background-color: rgba(7, 11, 20, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo i {
  font-size: 2.2rem;
  color: var(--accent-color);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
}
.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 2rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(7, 11, 20, 0.95) 0%, rgba(7, 11, 20, 0.8) 50%, rgba(7, 11, 20, 0.4) 100%);
}
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.hero-text {
  flex: 1;
  max-width: 600px;
  animation: fadeUp 1s ease forwards;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background-color: var(--whatsapp-color);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse 2s infinite;
}
.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.trust-icons {
  display: flex;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Glass Mockup */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  animation: fadeLeft 1s ease 0.3s forwards;
  opacity: 0;
}
.glass-card {
  background: rgba(17, 24, 38, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.mockup-card {
  width: 100%;
  max-width: 380px;
  overflow: hidden;
}
.mockup-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}
.mockup-avatar {
  width: 45px;
  height: 45px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #000;
}
.mockup-details {
  display: flex;
  flex-direction: column;
}
.mockup-name {
  font-weight: 600;
  font-size: 0.9rem;
}
.mockup-status {
  font-size: 0.75rem;
  color: var(--accent-color);
}
.mockup-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: auto;
  min-height: 250px;
  max-height: 320px;
  overflow-y: auto;
}
/* Scrollbar strictly for the mockup body */
.mockup-body::-webkit-scrollbar {
  width: 4px;
}
.mockup-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.chat-message {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.9rem;
  max-width: 85%;
  position: relative;
  line-height: 1.4;
}
.chat-message.right {
  background: rgba(255,255,255,0.1);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-message.left {
  background: rgba(0, 224, 255, 0.15);
  border: 1px solid rgba(0, 224, 255, 0.2);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.time {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  text-align: right;
}
.mockup-footer {
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  gap: 10px;
}
.mockup-footer input {
  flex: 1;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 15px;
  color: #fff;
  font-family: inherit;
  outline: none;
}
.mockup-footer button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: default;
}

/* --- Features Section --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.feature-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.03);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 224, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 224, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- How It Works --- */
.how-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.how-image {
  flex: 1;
  position: relative;
}
.rounded-img {
  border-radius: var(--radius-lg);
  width: 100%;
}
.floating-stat {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  animation: float 4s ease-in-out infinite;
}
.floating-stat i {
  font-size: 2.5rem;
  color: var(--whatsapp-color);
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.how-text {
  flex: 1;
}
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-item {
  display: flex;
  gap: 20px;
}
.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0, 224, 255, 0.1);
  border: 1px solid rgba(0, 224, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-color);
}
.step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--text-muted);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.03);
}
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
.service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}
.service-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-gradient);
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.service-content {
  padding: 30px;
}
.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.service-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- SEO Tags --- */
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.seo-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Floating WhatsApp --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  text-decoration: none;
}
.whatsapp-dialog {
  background: #fff;
  color: #000;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  right: 100%;
  position: absolute;
  margin-right: 15px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.whatsapp-dialog::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
}
.floating-whatsapp:hover .whatsapp-dialog {
  opacity: 1;
  transform: translateX(0);
}
.whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}
.floating-whatsapp:hover .whatsapp-icon {
  transform: scale(1.1);
}

/* ==============================================
   FLOATING BUTTONS
   ============================================== */
.float-btn {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 990;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: var(--shadow);
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn:hover { transform: scale(1.12); }

.float-wa {
  bottom: 82px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
}
.float-phone {
  bottom: 20px;
  /* background: linear-gradient(135deg, #F5B927, #FF7A00); */
  background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  color: #0d0d0d;
  animation: ring-pulse 2.2s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(39, 135, 245, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(39, 125, 245, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 156, 245, 0); }
}



/* --- Animations --- */
@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes pulse-shadow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- Map & CTA Section --- */
.cta-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(rgba(10, 15, 25, 0.92), rgba(10, 15, 25, 0.95)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
}
.cta-container h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
}
.cta-container p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Footer Section --- */
.footer {
  background-color: #05080f;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about p {
  color: var(--text-muted);
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer-links h4, .footer-contact h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-links ul, .footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links a, .footer-contact a {
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--accent-color);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}
.pt-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
}
.pt-icon-whatsapp {
  color: var(--whatsapp-color);
  font-size: 1.2rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 25px 0;
  text-align: center;
  background-color: #03050a;
}
.footer-bottom p {
  color: #666;
  font-size: 0.9rem;
}
.footer-disclaimer {
  font-size: 0.75rem !important;
  color: #444 !important;
  margin-top: 8px;
}

/* --- Custom Global Utilities --- */
.dark-bg { background-color: #05080f; }
.mb-40 { margin-bottom: 40px; }
.section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 224, 255, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

/* --- Stats / Counters --- */
.counter-section {
    padding: 60px 0;
    background: linear-gradient(90deg, #05080f, #111826, #05080f);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.counter-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}
.counter-val::after {
    content: "+";
    color: var(--accent-color);
}
.counter-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Compare Section (Smart Choice) --- */
.compare-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.compare-info {
    flex: 1;
    min-width: 300px;
}
.compare-benefits {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.compare-benefits li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.compare-benefits .check-icon {
    font-size: 1.5rem;
    margin-top: 3px;
    color: var(--accent-color);
}
.compare-benefits h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.compare-benefits p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.compare-card {
    flex: 1;
    min-width: 350px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.compare-card h3 { font-size: 1.4rem; margin-bottom: 5px; }
.compare-card-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 30px; }
.bar-group { margin-bottom: 25px; }
.bar-label { display: block; font-size: 0.85rem; margin-bottom: 8px; font-weight: 500; }
.highlight-label { color: var(--accent-color); font-weight: 700; }
.bar-wrapper {
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    height: 36px;
    position: relative;
    overflow: hidden;
}
.bar {
    height: 100%;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}
.bg-red { background: linear-gradient(90deg, #d32f2f, #f44336); }
.bg-orange { background: linear-gradient(90deg, #f57c00, #ffb74d); color: #000; }
.bg-green { 
    background: var(--accent-gradient); 
    color: #000; 
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.5);
    border: 1px solid rgba(0, 224, 255, 0.8);
}
.disclaimer-text { font-size: 0.75rem; color: #666; margin: 15px 0 25px; }
.fw-btn { width: 100%; text-align: center; justify-content: center; }

/* --- Services Grid Modern --- */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.srv-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: left;
    position: relative;
    transition: var(--transition);
}
.srv-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 224, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.featured-srv {
    border-color: rgba(0, 224, 255, 0.2);
    background: linear-gradient(180deg, rgba(0, 224, 255, 0.05), var(--bg-card));
}
.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}
.srv-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}
.srv-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.srv-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.srv-price {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
}

/* --- Pricing Section --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.price-box {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 25px;
}
.route {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.route span { font-size: 1.2rem; color: #fff; }
.price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}
.route-dist { font-size: 0.8rem; color: #666; }

/* --- Districts Section --- */
.district-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.dt-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
}
.dt-btn.active, .dt-btn:hover {
    background: var(--accent-gradient);
    color: #000;
    border-color: transparent;
}
.districts-wrapper { position: relative; min-height: 250px; }
.district-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    animation: fadeUp 0.4s ease forwards;
}
.district-grid.active { display: grid; }
.district-grid span {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: default;
    transition: var(--transition);
}
.district-grid span:hover {
    background: rgba(0, 224, 255, 0.1);
    color: #fff;
    border-color: rgba(0, 224, 255, 0.3);
}

/* --- Testimonials --- */
.testimonialSwiper { padding: 20px 0 50px; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.stars { color: #f59e0b; margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
    flex: 1;
}
.author { display: flex; align-items: center; gap: 15px; }
.avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #000;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-family: var(--font-heading);
}
.avatar.bg-alt { background: #f59e0b; }
.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: #888; }

.swiper-pagination-bullet { 
    background: rgba(255,255,255,0.4) !important; 
    width: 16px; 
    height: 16px; 
    border-radius: 8px; 
    margin: 0 8px !important;
    transition: all 0.3s ease; 
}
.swiper-pagination-bullet-active { 
    background: var(--accent-color) !important; 
    width: 32px; 
}
.swiper-btn-prev, .swiper-btn-next {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    color: #fff; transition: var(--transition);
}
.swiper-btn-prev:hover, .swiper-btn-next:hover { background: var(--accent-color); color: #000; }
.swiper-btn-prev { left: 0; }
.swiper-btn-next { right: 0; }

/* --- FAQ --- */
.faq-accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.faq-btn {
    width: 100%; text-align: left; padding: 25px;
    background: transparent; border: none;
    color: #fff; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.faq-btn:hover { background: rgba(255,255,255,0.02); }
.faq-btn i { font-size: 1.3rem; transition: transform 0.3s ease; color: var(--accent-color); }
.faq-btn.active i { transform: rotate(45deg); }
.faq-content {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-content p {
    padding: 0 25px 25px; margin: 0; color: var(--text-muted); font-size: 0.95rem;
}

/* --- SEO Content Blocks --- */
.seo-html-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.seo-box { padding: 30px; border-left: 2px solid rgba(0, 224, 255, 0.3); }
.seo-box h3 { font-size: 1.25rem; margin-bottom: 15px; }
.seo-box p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.seo-box strong { color: #fff; }

/* --- Popular Searches Keyword Cloud --- */
.popular-searches-section { padding: 40px 0; background: #03050a; }
.keyword-cloud {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 1000px; margin: 0 auto;
}
.keyword-cloud span {
    font-size: 0.75rem; color: #aaa; background: #0a0f19; padding: 5px 12px; border-radius: 4px; border: 1px solid #222;
}

/* --- Universal Spacing Fixes --- */
.section-padding h2 { margin-bottom: 40px; }

/* --- Footer Contact Redesign --- */
.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.footer-contact .fc-icon {
    width: 40px; height: 40px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.text-accent { color: var(--accent-color); }

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero h1 { font-size: 3rem; }
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { max-width: 100%; align-items: center; display: flex; flex-direction: column; }
  .hero-buttons { justify-content: center; }
  .trust-icons { justify-content: center; flex-wrap: wrap; }
  
  .how-wrapper { flex-direction: column; }
  .how-image { order: -1; margin-bottom: 30px; }
  .floating-stat { right: auto; left: 50%; transform: translateX(-50%); bottom: -30px; animation: none; }
}

.logo img { height: 40px;}

@media (max-width: 768px) {
  .mobile-col{ display: flex; flex-direction: column; align-items: center;}
  
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(15px);
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: none;
  }
  .nav.active { display: block; }
  .nav-list { flex-direction: column; gap: 20px; text-align: center; }
  .header-actions .btn { display: none; }
  .logo img { height: 35px; }
  
  .hero-bg {
    background: linear-gradient(to bottom, rgba(7, 11, 20, 0.6) 0%, rgba(7, 11, 20, 0.9) 100%),
                url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?fm=webp&q=60&fit=crop&w=768') no-repeat center center/cover;
  }
  
  /* Global Semantic Rescaling for Readability */
  h1 { font-size: 2.1rem !important; line-height: 1.25 !important; }
  h2 { font-size: 1.6rem !important; line-height: 1.3 !important; }
  h3 { font-size: 1.25rem !important; margin-bottom: 10px !important; }
  h4 { font-size: 1.1rem !important; }

  .hero h1 { font-size: 2.1rem !important; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; }
  
  .section-padding { padding: 45px 0; }
  .section-title h2, .section-padding h2 { margin-bottom: 25px !important; }
  
  /* Additional Comfort Rescaling */
  .seo-box { padding: 20px; }
  .faq-btn { padding: 20px; font-size: 1rem; }
  .testimonial-card { padding: 25px; }
  
  /* District Links Shrink */
  .district-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .district-grid span { padding: 10px; font-size: 0.8rem; text-align: center;}
}
