﻿/* ==========================================================================
   SR Tech Studio - Premium Design System (Vanilla CSS)
   ========================================================================== */

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

/* CSS Variables */
:root {
  /* Default Theme: Electric Cyan / Royal Blue */
  --bg-dark: #07090e;
  --bg-card: #0d121f;
  --bg-card-hover: #141b2e;
  --bg-nav: rgba(7, 9, 14, 0.85);
  
  --primary: #2563eb;         /* Electric Royal Blue */
  --primary-rgb: 37, 99, 235;
  --secondary: #a855f7;       /* Cyber Purple */
  --secondary-rgb: 168, 85, 247;
  --accent: #00f2fe;          /* Electric Cyan */
  --accent-rgb: 0, 242, 254;
  --accent-blue: #3b82f6;     /* Light Sky Blue */
  
  /* Text Colors */
  --text-main: #e2e8f0;       /* Light Gray */
  --text-muted: #94a3b8;      /* Muted Gray */
  --text-bright: #ffffff;     /* Pure White */
  --text-dark: #0f172a;       /* Slate Dark for light details */
  
  /* Borders and Dividers */
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(0, 242, 254, 0.35);
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
  
  /* Typography */
  --font-headings: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Violet Sunset Theme */
body.theme-violet {
  --primary: #db2777;         /* Hot Pink */
  --primary-rgb: 219, 39, 119;
  --secondary: #8b5cf6;       /* Violet */
  --secondary-rgb: 139, 92, 246;
  --accent: #ec4899;          /* Pink Glow */
  --accent-rgb: 236, 72, 153;
  --accent-blue: #f43f5e;
  --border-hover: rgba(236, 72, 153, 0.35);
}

/* Emerald Mint Theme */
body.theme-emerald {
  --primary: #059669;         /* Forest Emerald */
  --primary-rgb: 5, 150, 105;
  --secondary: #0d9488;       /* Teal */
  --secondary-rgb: 13, 148, 136;
  --accent: #10b981;          /* Bright Mint */
  --accent-rgb: 16, 185, 129;
  --accent-blue: #34d399;
  --border-hover: rgba(16, 185, 129, 0.35);
}

/* Base Reset & Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography Presets */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--text-bright);
  font-weight: 700;
  line-height: 1.25;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Background Ambient Glows */
.ambient-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.glow-top-right {
  top: -100px;
  right: -100px;
}

.glow-bottom-left {
  bottom: 10%;
  left: -200px;
}

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

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

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.125rem;
}

/* Button & Link Component styling */
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-sm {
  padding: 0.45rem 1.1rem !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  line-height: 1.2 !important;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-bright);
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(79, 70, 229, 0.45);
}

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

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  color: var(--text-bright);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.45);
}

.btn-text {
  color: var(--text-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.btn-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s ease;
}

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

.btn-text:hover::after {
  width: 100%;
}

/* Header & Navigation Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

header.scrolled {
  height: 70px;
  background: rgba(8, 11, 17, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo img {
  height: 52px;
  width: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

header.scrolled .logo img {
  height: 42px;
}

.footer-grid .logo img {
  height: 60px !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  height: 100%;
}

.nav-menu > li {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-bright);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, #c7d2fe 90%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-bullets {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-bright);
  font-weight: 500;
  font-size: 0.95rem;
}

.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.8rem;
}

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

.hero-shape-container {
  position: relative;
  width: 320px;
  height: 320px;
}

.shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s ease-in-out infinite alternate;
  filter: blur(10px);
  opacity: 0.8;
  box-shadow: 0 0 50px rgba(79, 70, 229, 0.3);
}

.shape-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background: rgba(8, 11, 17, 0.85);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 15s ease-in-out infinite alternate;
  border: 1px solid var(--border-hover);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-badge-title {
  font-family: var(--font-headings);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.hero-badge-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(79, 70, 229, 0.1);
}

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

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--text-bright);
  box-shadow: 0 0 15px rgba(79, 70, 229, 0.4);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  font-size: 0.95rem;
}

/* Service Preview Grid & Page Content */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 25px rgba(139, 92, 246, 0.1);
}

.service-card-icon-header {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon-header {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--border-hover);
  transform: scale(1.08);
}

.service-card-icon {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.service-card-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card-desc {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.service-feature-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* Process Timeline (Horizontal or vertical dynamically) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-dark);
  border: 4px solid var(--accent);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.3s ease;
}

.timeline-item:nth-child(even)::after {
  left: -8px;
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.timeline-content {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: 12px;
}

.timeline-item:hover .timeline-content {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.timeline-item:hover::after {
  background-color: var(--primary);
  transform: scale(1.3);
}

.timeline-step {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Industries Section */
.industries-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.industry-tag {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  font-family: var(--font-headings);
  font-size: 1rem;
  transition: all 0.3s ease;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.industry-tag:hover {
  background: rgba(79, 70, 229, 0.1);
  border-color: var(--primary);
  color: var(--text-bright);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 70, 229, 0.15);
}

.industry-tag i {
  color: var(--accent);
}

/* Trust Section / Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  border: 1px dashed var(--border-color);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.trust-card:hover {
  border-style: solid;
  border-color: var(--accent);
  background: rgba(16, 185, 129, 0.03);
}

.trust-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.trust-title {
  font-size: 1.15rem;
}

/* About / Biography Section & Core Values */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.leader-row {
  grid-template-columns: 0.9fr 1.1fr;
}

.leader-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.leader-row.reverse .leader-visual {
  order: 2;
}

.leader-row.reverse .leader-info {
  order: 1;
}


.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.founder-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(23, 29, 49, 0.7) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  max-width: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.founder-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto 1.5rem auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 4px;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-bright);
}

.founder-name {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.founder-title {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.founder-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--text-bright);
  border-color: var(--primary);
  transform: scale(1.1);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: rgba(139, 92, 246, 0.03);
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.value-number {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-headings);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.value-title {
  font-size: 1.125rem;
  color: var(--text-bright);
}

/* FAQ Accordion Styling */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 1.125rem;
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-bright);
}

.faq-icon-box {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-box {
  background: var(--primary);
  color: var(--text-bright);
  transform: rotate(180deg);
}

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

.faq-content {
  padding: 0 2rem 1.5rem 2rem;
  color: var(--text-muted);
}

/* Contact Hub & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-bright);
}

.contact-card-value a:hover {
  color: var(--accent);
}

/* Interactive Form Styling */
.form-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

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

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error .form-control {
  border-color: #ef4444;
}

.form-group.has-error .form-error {
  display: block;
}

.form-submit-msg {
  display: none;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-align: center;
}

.form-submit-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.form-submit-msg.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* Call To Action Block */
.cta-banner {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 1px solid var(--border-hover);
  padding: 4.5rem;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Footer Styles */
footer {
  border-top: 1px solid var(--border-color);
  background-color: #05070a;
  padding: 5rem 0 2.5rem 0;
  font-size: 0.95rem;
}

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

.footer-logo-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-subtitle {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
}

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

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-links li i {
  margin-right: 0 !important;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.footer-link:hover {
  color: var(--text-bright);
  padding-left: 4px;
}

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

.footer-seo-cloud {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.footer-seo-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer-seo-tags {
  font-size: 0.8rem;
  color: rgba(156, 163, 175, 0.6);
  line-height: 1.8;
}

/* Animations */
@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Scroll reveal properties */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Color Theme Switcher Widget */
.theme-switcher {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(13, 18, 31, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.theme-switcher:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(var(--primary-rgb), 0.25);
}

.theme-switcher-label {
  font-size: 0.75rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 0.5rem;
  padding-right: 0.25rem;
  user-select: none;
}

.theme-btn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.theme-btn:hover {
  transform: scale(1.2);
}

.theme-btn.active {
  border-color: var(--text-bright);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.5);
}

.theme-btn-blue {
  background: linear-gradient(135deg, #2563eb, #00f2fe);
}

.theme-btn-violet {
  background: linear-gradient(135deg, #db2777, #ec4899);
}

.theme-btn-emerald {
  background: linear-gradient(135deg, #059669, #10b981);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-bullets {
    justify-content: center;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .leader-row, .leader-row.reverse {
    grid-template-columns: 1fr !important;
  }
  
  .leader-row.reverse .leader-visual,
  .leader-row.reverse .leader-info {
    order: unset;
  }
  
  .about-visual, .founder-card {
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: left 0.4s ease;
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-cta {
    display: none; /* Hide on mobile navbar directly, link inside menu */
  }
  
  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item::after {
    left: 23px;
    right: auto;
  }
  
  .timeline-item:nth-child(even)::after {
    left: 23px;
  }
  
  .right {
    left: 0%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
  }
}

/* Mobile-only menu link helper */
.mobile-only-link {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-link {
    display: block;
    text-align: center;
  }
  .mobile-only-link .btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    width: auto !important;
    margin: 1rem auto 0 auto !important;
    display: inline-flex !important;
  }
}

/* ==========================================================================
   Header Dropdown Navigation & Breadcrumbs
   ========================================================================== */

.nav-item-dropdown {
  position: relative;
}

.nav-link.has-dropdown {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.nav-link.has-dropdown i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link.has-dropdown i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 480px;
  overflow-y: auto;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  color: var(--accent);
  background: rgba(0, 242, 254, 0.05);
  padding-left: 1.5rem;
}

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

@media (max-width: 768px) {
  .nav-item-dropdown {
    width: 100%;
    text-align: center;
  }
  
  .nav-link.has-dropdown {
    justify-content: center;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease;
  }
  
  .nav-item-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
  }
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-separator {
  color: var(--border-color);
  font-size: 0.75rem;
}

.breadcrumb-item.active {
  color: var(--accent);
  font-weight: 500;
}

/* ==========================================================================
   Article & Deep Content Styling
   ========================================================================== */

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.toc-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.toc-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.toc-list a:hover {
  color: var(--accent);
}

.article-content h2 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  color: var(--text-bright);
  margin: 2.5rem 0 1rem 0;
  line-height: 1.3;
}

.article-content h3 {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  color: var(--accent);
  margin: 2rem 0 0.8rem 0;
  line-height: 1.35;
}

.article-content p {
  color: var(--text-main);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-content ul, .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-main);
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.info-callout {
  background: rgba(37, 99, 235, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-callout h4 {
  color: var(--text-bright);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

/* Location Card & Grid UI */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.location-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.1);
}

.location-card h3 {
  color: var(--text-bright);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.location-badge {
  display: inline-block;
  background: rgba(0, 242, 254, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* ==========================================================================
   Hero Visual Image & Graphic Overlay
   ========================================================================== */
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 2rem auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
}

.hero-image-graphic, .hero-image-container img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image-graphic {
  transform: scale(1.02);
}

.hero-floating-badge {
  position: absolute;
  background: rgba(13, 18, 31, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.badge-top-left {
  top: 20px;
  left: 20px;
}

.badge-bottom-right {
  bottom: 20px;
  right: 20px;
}

/* ==========================================================================
   RHS PIP Floating Contact Widget
   ========================================================================== */
.rhs-pip-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.rhs-pip-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rhs-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  text-decoration: none;
}

.rhs-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.rhs-btn-email {
  background: linear-gradient(135deg, #ea4335, #c5221f);
}

.rhs-btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.rhs-btn-fb {
  background: linear-gradient(135deg, #1877f2, #0d5cb6);
}

.rhs-btn-toggle {
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

.rhs-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 242, 254, 0.4);
}

.rhs-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(13, 18, 31, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border-hover);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(10px);
}

.rhs-btn:hover .rhs-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.rhs-pip-panel {
  width: 320px;
  background: rgba(13, 18, 31, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-hover);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  padding: 1.25rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 8px;
  animation: pipFadeIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pipFadeIn {
  from { opacity: 0; transform: translateY(15px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.rhs-pip-panel.active {
  display: flex;
}

.rhs-pip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.rhs-pip-header h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rhs-pip-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}

.rhs-pip-close:hover {
  color: #ff5555;
}

.rhs-pip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-bright);
  text-decoration: none;
  transition: all 0.25s ease;
}

.rhs-pip-item:hover {
  background: rgba(0, 242, 254, 0.08);
  border-color: var(--border-hover);
  transform: translateX(-4px);
}

.rhs-pip-item i {
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
}

.rhs-pip-item.whatsapp i { color: #25D366; }
.rhs-pip-item.email i { color: #ea4335; }
.rhs-pip-item.phone i { color: var(--accent); }
.rhs-pip-item.linkedin i { color: #0a66c2; }
.rhs-pip-item.insta i { color: #e6683c; }
.rhs-pip-item.fb i { color: #1877f2; }

.rhs-pip-item div strong {
  display: block;
  font-size: 0.9rem;
  color: #ffffff;
}

.rhs-pip-item div span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rhs-pip-socials {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-color);
}

.rhs-pip-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.25s ease;
  text-decoration: none;
}

.rhs-pip-socials a.insta:hover {
  background: linear-gradient(135deg, #f09433, #dc2743);
  transform: translateY(-3px);
}

.rhs-pip-socials a.fb:hover {
  background: #1877f2;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .rhs-pip-widget {
    right: 16px;
    bottom: 16px;
  }
  .rhs-btn {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
  .rhs-pip-panel {
    width: 290px;
  }
}

/* ==========================================================================
   Category-Specific Service Visual Graphic Components
   ========================================================================== */
.svc-visual-box {
  margin-top: 2rem;
  width: 100%;
  border-radius: 18px;
  background: rgba(13, 18, 31, 0.96);
  border: 1px solid var(--border-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 242, 254, 0.1);
  padding: 1.75rem;
  overflow: hidden;
  text-align: left;
  position: relative;
}

.svc-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
}

.svc-visual-title {
  font-family: var(--font-headings);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.svc-visual-dots {
  display: flex;
  gap: 6px;
}
.svc-visual-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.svc-visual-dots span:nth-child(1) { background: #ff5f56; }
.svc-visual-dots span:nth-child(2) { background: #ffbd2e; }
.svc-visual-dots span:nth-child(3) { background: #27c93f; }

.svc-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.svc-metric-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.svc-metric-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  background: rgba(0, 242, 254, 0.05);
}

.svc-metric-val {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.svc-metric-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.svc-code-block {
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.85rem;
  color: #a5f3fc;
  background: #050811;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  line-height: 1.6;
  overflow-x: auto;
}

.service-card-thumb {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-thumb img {
  transform: scale(1.06);
}


/* Responsive Uncropped Image Container Benchmarks */
.service-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  background: #090d16;
}

.service-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.svc-visual-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  margin: 2.5rem 0;
  background: #090d16;
}

.svc-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


/* ==========================================================================
   Master Mobile Responsiveness & Navigation Bug Fixes
   ========================================================================== */

html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

body.menu-open {
  overflow: hidden !important;
}

/* Touch-friendly Hamburger Button */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  z-index: 1002;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-bright);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex !important;
  }

  /* Full viewport mobile menu drawer */
  .nav-menu {
    position: fixed !important;
    top: var(--header-height) !important;
    left: -100% !important;
    width: 100% !important;
    height: calc(100vh - var(--header-height)) !important;
    background: #090d16 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 1.25rem 1rem 3rem 1rem !important;
    gap: 0.25rem !important;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-top: 1px solid var(--border-color) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 9999 !important;
  }

  .nav-menu.open {
    left: 0 !important;
  }

  .nav-menu > li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.9rem 1rem !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: var(--text-bright) !important;
    width: 100% !important;
    border-radius: 8px;
  }

  .nav-link.active {
    color: var(--accent) !important;
    background: rgba(0, 242, 254, 0.08) !important;
  }

  /* Collapsible mobile dropdown menus */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 8px !important;
    margin: 0.25rem 0 0.75rem 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    transition: max-height 0.4s ease, padding 0.3s ease !important;
  }

  .nav-item-dropdown.open .dropdown-menu {
    max-height: 1200px !important; /* Fits all 19 services & 12 locations completely! */
    padding: 0.5rem 0 !important;
  }

  .nav-item-dropdown.open .has-dropdown i {
    transform: rotate(180deg) !important;
    color: var(--accent) !important;
  }

  .dropdown-item {
    padding: 0.65rem 1.25rem !important;
    font-size: 0.92rem !important;
    color: var(--text-muted) !important;
  }

  .dropdown-item:hover, .dropdown-item:focus {
    color: var(--accent) !important;
    background: rgba(0, 242, 254, 0.08) !important;
  }

  /* Mobile Grid & Container Overflows Fix */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .services-grid, .hero-grid, .about-grid, .contact-grid, .footer-grid, .case-studies-grid, .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .service-card, .blog-card, .case-study-card, .faq-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-title {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .section-padding {
    padding: 3rem 0 !important;
  }

  .rhs-pip-panel {
    max-width: calc(100vw - 32px) !important;
  }
}
