/* 
  SRP Enterprises Design System
  Premium, Modern, Light Theme
*/

:root {
  --clr-bg: hsl(210, 20%, 98%);
  /* Off-white background */
  --clr-fg: hsl(222, 47%, 11%);
  /* Dark primary text */
  --clr-text-muted: hsl(215, 16%, 40%);
  /* Subtle gray text */
  --clr-primary: hsl(221, 83%, 53%);
  /* Brand Blue */
  --clr-primary-hover: hsl(221, 83%, 63%);
  --clr-secondary: hsl(263, 70%, 50%);
  /* Digital Purple */

  --clr-glass-bg: rgba(255, 255, 255, 0.85);
  /* Light glass */
  --clr-glass-border: rgba(0, 0, 0, 0.06);
  /* Lighter border for light bg */

  --clr-hero-glow-1: hsla(221, 83%, 53%, 0.3);
  /* Blue Glow */
  --clr-hero-glow-2: hsla(263, 70%, 50%, 0.2);
  /* Purple Glow */

  --font-body: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --nav-height: 80px;

  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

ul {
  list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--clr-fg);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-fg);
}

p {
  margin-bottom: 1rem;
  color: var(--clr-text-muted);
  font-size: 1.125rem;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 6rem 0;
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-glass-border);
  color: var(--clr-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.2);
}

.btn-outline-small {
  background: transparent;
  border: 1px solid var(--clr-glass-border);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--clr-fg);
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.btn-outline-small:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
  background: #ffffff;
  border-bottom: 1px solid var(--clr-glass-border);
}

.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--clr-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--clr-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--clr-fg);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Old Mobile Nav styles removed for Premium Drawer upgrade */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background-color: hsl(222, 47%, 4%);
  /* Darker for better glow contrast */
  color: #ffffff;
}

/* Hero Section Redesign V2 */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background-color: hsl(222, 47%, 4%);
  /* Deep Charcoal/Black */
  color: #ffffff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 70% 50%, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 70% 50%, black, transparent 80%);
  z-index: 1;
  pointer-events: none;
}

.hero-light-ray {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, var(--clr-primary), transparent 70%);
  opacity: 0.15;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

.hero-centerpiece {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 55%;
  z-index: 2;
  pointer-events: none;
}

.globe-v2 {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.3));
  animation: slowSpin 60s linear infinite, floatGlobe 10s ease-in-out infinite;
}

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatGlobe {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.02);
  }
}

.relative-z {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content-v2 {
  max-width: 1200px;
  width: 100%;
  padding-right: 40%;
  /* Space for globe */
}

.badge-v2 {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: #60a5fa;
  /* Lighter primary for dark theme */
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.825rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-content-v2 h1 {
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero-p-v2 {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3.5rem;
  max-width: 800px;
  line-height: 1.6;
}

.hero-actions-v2 {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.hero-trust-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
}

.hero-trust-v2 .trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  font-weight: 600;
}

.hero-trust-v2 .trust-item i {
  color: var(--clr-primary);
  font-size: 1.5rem;
}

.glass-btn {
  position: relative;
  overflow: hidden;
}

.glass-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}

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

/* Glass Card Style */
.glass-card {
  background: var(--clr-glass-bg);
  border: 1px solid var(--clr-glass-border);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 0, 0, 0.1);
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

/* Ensure glass-card children are above the step-number */
.glass-card>*:not(.step-number) {
  position: relative;
  z-index: 5;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Services */
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.card-title-group .service-icon {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
}

.card-title-group h2,
.card-title-group h3 {
  margin-bottom: 0;
}

/* Why Us list */
.check-list {
  margin-top: 2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-icon {
  color: var(--clr-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Process Timeline */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-step {
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  /* Increased size */
  font-weight: 900;
  color: rgba(37, 99, 235, 0.08);
  /* More visible primary color at low opacity */
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  /* Moved to right for better balance */
  z-index: 2;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.process-step:hover .step-number {
  color: rgba(37, 99, 235, 0.15);
  transform: scale(1.1);
}

/* CTA Block */
.cta-section {
  background: linear-gradient(135deg, rgba(37, 99, 235, 1) 0%, rgba(124, 58, 237, 1) 100%);
  border-radius: 20px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.3);
}

.cta-section h2 {
  color: #ffffff;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2rem;
  background: hsl(222, 47%, 6%);
  /* Slightly darker than hero */
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
  /* Ensure logo is visible on dark bg if it's dark by default */
}

.footer-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--clr-primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-contact i {
  color: var(--clr-primary);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a:hover {
  color: #ffffff;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  }

  .hero-bg {
    opacity: 0.3;
    width: 100%;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .grid-2,
  .grid-4.process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-4.process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .desktop-only {
    display: none;
  }

  .section-pad {
    padding: 4rem 0;
  }
}

/* Legal & Documentation Content Styles */
.legal-content {
  width: 100%;
  margin: 0 auto;
}

.legal-card {
  padding: 4rem;
  background: #ffffff;
  color: var(--clr-fg);
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--clr-fg-light);
}

.legal-card h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--clr-fg);
  border-bottom: 1px solid var(--clr-glass-border);
  padding-bottom: 0.5rem;
}

.legal-card h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--clr-primary);
}

.list-std {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.list-std li {
  margin-bottom: 0.75rem;
  color: var(--clr-fg-light);
  line-height: 1.6;
}

.border-top {
  border-top: 1px solid var(--clr-glass-border);
}

.pt-4 {
  padding-top: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Contact Page & Enquiry Form Styles */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-fg-light);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--clr-fg);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 256 256'%3E%3Cpath d='M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80a8,8,0,0,1,11.32-11.32L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.w-100 {
  width: 100%;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Contact Details on Light Background */
.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--clr-fg);
}

.contact-details-list i {
  color: var(--clr-primary);
  margin-top: 0.25rem;
}
/* Service Detail Page Styles */
.service-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.spec-card {
  padding: 3rem;
  background: white;
  border: 1px solid var(--clr-glass-border);
  border-radius: 16px;
  height: 100%;
}

.spec-card h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: var(--clr-fg);
}

.spec-card i {
  font-size: 2rem;
  color: var(--clr-primary);
}

.benefit-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item i {
  font-size: 2.5rem;
  color: var(--clr-primary);
}

@media (max-width: 768px) {
  .service-spec-grid {
    grid-template-columns: 1fr;
  }
  
  .benefit-list {
    grid-template-columns: 1fr;
  }
}

/* Clickable Service Cards on Homepage */
.service-card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.service-teaser {
  color: var(--clr-fg-light);
  font-size: 0.95rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.learn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.service-card-link:hover .learn-more {
  gap: 0.75rem;
}

/* Navigation Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-glass-border);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-col a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: var(--clr-fg-light);
  border-radius: 6px;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.dropdown-col a:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--clr-primary);
  padding-left: 1.25rem;
}

/* Mobile Services Section */
.mobile-services-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.mobile-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mobile-services-grid a {
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.mobile-services-grid a:hover {
  opacity: 1;
  color: var(--clr-primary);
}

@media (max-width: 991px) {
  .nav-dropdown {
    display: none; /* Handled by mobile overlay */
  }
}

/* Mobile Hero Banner Optimization */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 0 4rem;
    text-align: center;
    min-height: auto;
    display: block; /* Ensure natural flow on mobile */
  }

  .hero-grid {
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
  }

  .hero-light-ray {
    right: 0;
    width: 100%;
    opacity: 0.1;
  }

  .hero-centerpiece {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    width: 250px;
    margin: 0 auto 3rem;
    z-index: 2;
    pointer-events: none;
  }

  .globe-v2 {
    max-width: 100%;
    height: auto;
  }

  .hero-content-v2 {
    padding-right: 0;
    max-width: 100%;
    margin: 0 auto;
  }

  .badge-v2 {
    margin-bottom: 1.5rem;
  }

  .hero-content-v2 h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .hero-p-v2 {
    font-size: 1.15rem;
    margin: 0 auto 2.5rem;
    max-width: 90%;
  }

  .hero-actions-v2 {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
  }

  .hero-actions-v2 .btn {
    width: 100%;
    max-width: 350px;
  }

  .hero-trust-v2 {
    justify-content: center;
    gap: 1.5rem;
    padding-top: 2rem;
  }
  
  .hero-trust-v2 .trust-item {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

/* Comprehensive Site-Wide Mobile Optimization */

/* Navigation & Header */
@media (max-width: 991px) {
  .nav-links {
    display: none; /* Hide desktop nav */
  }

  .mobile-menu-btn {
    display: flex; /* Show burger button */
    justify-content: center;
    align-items: center;
  }

  .nav-right {
    gap: 1rem;
  }

  .desktop-only {
    display: none;
  }
}

/* Grid Stacking & Layout */
@media (max-width: 768px) {
  .section-pad {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2.75rem !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  /* Universal Grid Stacking */
  .grid-2, .grid-3, .grid-4, .process-grid, .service-spec-grid, .benefit-list {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .process-grid {
    gap: 2.5rem !important;
  }

  /* Sub-Hero Center Alignment */
  .sub-hero {
    padding: 7rem 0 3rem;
    text-align: center;
    min-height: auto;
  }

  .sub-hero .breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .hero-content-v2 {
    text-align: center;
    padding-right: 0;
  }

  .hero-actions-v2 {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-actions-v2 .btn {
    width: 100%;
    max-width: 350px;
  }

  /* Footer Stacking */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  /* Glass Card padding adjustment */
  .glass-card {
    padding: 2rem 1.5rem;
  }

  /* Hide reveal delay on mobile for faster perceived performance */
  .reveal {
    transition-delay: 0s !important;
  }
}

/* Intersection Observer Initial State Fix */
/* If reveal logic is enabled in JS, ensure it's hidden by default if intended */
.reveal {
  opacity: 1; /* Default to visible to prevent "lots of sections not visible" issues if JS fails */
  transform: translateY(0);
}

/* Optional: If we want to keep the reveal animation but ensure it works */
@media (min-width: 769px) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Mobile Drawer Navigation Styles */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: flex-end;
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: hsl(222, 47%, 4%); /* Match site dark theme */
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.active .mobile-drawer {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.drawer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.02em;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
}

.drawer-section {
  margin-bottom: 2.5rem;
}

.drawer-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-primary);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-link i {
  color: var(--clr-primary);
  font-size: 1.25rem;
}

.drawer-services-list {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.drawer-services-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease, color 0.3s ease;
}

.drawer-services-list a:last-child {
  border-bottom: none;
}

.drawer-services-list a i {
  font-size: 0.8rem;
  opacity: 0.3;
}

.drawer-services-list a:hover {
  background: rgba(37, 99, 235, 0.1);
  color: var(--clr-primary);
}

.drawer-cta {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
