/**
* Layer1 Technologies - Professional Website Styles
* Redesigned for a modern, corporate look and feel
*/

/*--------------------------------------------------------------
# General & CSS Variables
--------------------------------------------------------------*/
:root {
  /* Corporate Color Palette */
  --color-primary: #ffffff;
  --color-secondary: #64748b;
  --color-accent: #0066cc;
  --color-accent-hover: #0052a3;
  --color-accent-secondary: #00509e;
  --color-success: #059669;
  --color-bg-dark: #0a0e17;
  --color-bg-light: #111827;
  --color-bg-card: #151c2c;
  --color-bg-section: #0d1220;
  --color-text-main: #e2e8f0;
  --color-text-light: #94a3b8;
  --color-text-body: #cbd5e1;
  --color-border: #1e293b;
  --color-border-light: #334155;

  /* Corporate Gradients */
  --gradient-primary: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  --gradient-accent: linear-gradient(135deg, #0066cc 0%, #00509e 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 82, 163, 0.05) 100%);
  --gradient-card: linear-gradient(160deg, #151c2c 0%, #0f1522 100%);

  /* Professional Typography */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", "Open Sans", sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-accent: 0 8px 24px rgba(0, 102, 204, 0.2);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg-dark);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--color-accent-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-accent);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-accent);
}

.back-to-top:hover i { color: #fff; }

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-bg-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

#loader-logo {
  width: 180px;
  animation: pulse-logo 1.8s ease-in-out infinite;
}

#loader-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0, 102, 204, 0.4));
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.4s ease;
  z-index: 997;
  padding: 16px 0;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(10, 14, 23, 0.97);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

#header .logo a { color: #fff; }
#header .logo a span { color: var(--color-accent); }

#header .logo img {
  width: 150px;
  max-height: none;
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 28px;
  white-space: nowrap;
  transition: var(--transition-smooth);
  font-size: 14px;
  display: inline-block;
  background: var(--color-accent);
  border: 2px solid transparent;
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-sm);
}

.get-started-btn:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar { padding: 0; }

@media (min-width: 992px) {
  #header .container { position: relative; }
  #navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li { position: relative; }

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: var(--transition-base);
  letter-spacing: 0.2px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-accent);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 12px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(15, 21, 34, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.navbar .dropdown ul li { min-width: 280px; }

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  transition: all 0.2s;
  border-radius: var(--radius-sm);
  margin: 2px 8px;
}

.navbar .dropdown ul a i { font-size: 12px; }

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: rgba(0, 102, 204, 0.15);
  color: var(--color-accent);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul { left: -90%; }
  .navbar .dropdown .dropdown:hover > ul { left: -100%; }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  z-index: 1000;
}

.navbar-mobile ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 80px 0 20px 0;
  background: rgba(10, 14, 23, 0.98);
  backdrop-filter: blur(10px);
  overflow-y: auto;
  transition: 0.3s;
  height: 100%;
}

.mobile-nav-logo {
  margin-bottom: 20px;
  text-align: center;
}

.mobile-nav-logo img {
  width: 120px;
  max-width: 100%;
  height: auto;
}

.mobile-nav-logo a {
  padding: 10px;
  display: block;
  background: transparent !important;
}

.mobile-bottom-container {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 40px;
}

.mobile-bottom-container .get-started-btn {
  margin-right: 0;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  width: auto;
  display: inline-block;
  border: 2px solid var(--color-accent);
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 15px 20px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
  justify-content: center;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--color-accent);
  background: transparent;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.navbar-mobile .dropdown ul li { min-width: 200px; }
.navbar-mobile .dropdown ul a { padding: 10px 20px; color: #fff; }
.navbar-mobile .dropdown ul a i { font-size: 12px; }

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: rgba(0, 102, 204, 0.2);
  color: var(--color-accent);
}

.navbar-mobile .dropdown > .dropdown-active { display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  background: linear-gradient(165deg, #0a0e17 0%, #0d1220 40%, #111827 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero::before {
  content: "";
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(0, 102, 204, 0.1) 0%,
    rgba(0, 82, 163, 0.04) 40%,
    transparent 70%
  );
  position: absolute;
  inset: 0;
}

#hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  top: -200px;
  right: -150px;
  filter: blur(80px);
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 50px) scale(1.05); }
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: left;
  z-index: 2;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0, 102, 204, 0.1);
  border: 1px solid rgba(0, 102, 204, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

#hero h1 span {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

#hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

#hero h2 {
  color: var(--color-text-light);
  margin: 0 0 36px 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 580px;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 32px;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  font-family: var(--font-heading);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  letter-spacing: 0.3px;
}

.hero-link:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: #fff;
}

.hero-link-outline {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  font-family: var(--font-heading);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.hero-link-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(0, 102, 204, 0.05);
  transform: translateY(-2px);
}

/* Hero Stats Bar */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-top: 64px;
  padding: 28px 36px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
}

@media (max-width: 768px) {
  #hero { height: 100vh; min-height: 100vh; }
  #hero h1 { font-size: 36px; line-height: 1.2; }
  #hero h2 { font-size: 16px; line-height: 1.6; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 20px;
    margin-top: 40px;
  }
  .stat-item { flex: 1 0 40%; }
  .stat-divider { display: none; }
  .stat-number { font-size: 26px; }

  .hero-badge { font-size: 11px; padding: 6px 16px; }
  .hero-cta { flex-direction: column; }
  .hero-link, .hero-link-outline { text-align: center; }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
  background: var(--color-bg-dark);
  position: relative;
}

.section-title {
  padding-bottom: 56px;
  text-align: center;
}

.section-title h2 {
  font-size: 13px;
  font-weight: 700;
  padding: 0;
  line-height: 1;
  margin: 0 0 14px 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

.section-title h2::after { content: none; }

.section-title p {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Services Section - Card Design
--------------------------------------------------------------*/
.services-section {
  padding: 100px 0;
  background: var(--color-bg-section);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(0, 102, 204, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.service-card-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.service-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(0, 102, 204, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 102, 204, 0.1);
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(0, 102, 204, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-card-icon i {
  font-size: 26px;
  color: var(--color-accent);
  transition: var(--transition-base);
}

.service-card:hover .service-card-icon {
  background: var(--color-accent);
}

.service-card:hover .service-card-icon i {
  color: #fff;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  margin-top: 20px;
  transition: var(--transition-smooth);
  align-self: flex-start;
}

.service-card-arrow i {
  font-size: 16px;
  color: var(--color-text-light);
  transition: var(--transition-base);
}

.service-card:hover .service-card-arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.service-card:hover .service-card-arrow i {
  color: #fff;
}

/*--------------------------------------------------------------
# Why Choose Us Section
--------------------------------------------------------------*/
.why-us-section {
  padding: 100px 0;
  background: var(--color-bg-dark);
  position: relative;
}

.why-card {
  background: transparent;
  padding: 32px 24px;
  border-left: 3px solid var(--color-border);
  transition: var(--transition-smooth);
  height: 100%;
}

.why-card:hover {
  border-left-color: var(--color-accent);
  background: rgba(0, 102, 204, 0.03);
}

.why-card-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 102, 204, 0.15);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition-base);
}

.why-card:hover .why-card-number {
  color: rgba(0, 102, 204, 0.3);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.why-card p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
  padding: 80px 0;
  background: var(--color-bg-section);
  position: relative;
}

.cta-inner {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 102, 204, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  position: relative;
}

.cta-inner p {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 0;
  position: relative;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  background: var(--color-accent);
  color: #fff;
  border: 2px solid var(--color-accent);
  position: relative;
  margin-bottom: 12px;
}

.cta-btn:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
  color: #fff;
}

.cta-btn-outline {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  margin-left: 12px;
  margin-bottom: 12px;
}

.cta-btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-inner { padding: 36px 24px; }
  .cta-inner h3 { font-size: 26px; }
  .cta-btn-outline { margin-left: 0; }
}

/*--------------------------------------------------------------
# About (legacy support)
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-accent);
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients { padding-top: 20px; }

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Inner Page Styles
--------------------------------------------------------------*/
.inner-page {
  padding: 40px 0 60px;
}

.service-page-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.inner-page h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.inner-page p {
  color: var(--color-text-body);
  font-size: 16px;
  line-height: 1.75;
}

.inner-page ul {
  list-style: none;
  padding-left: 0;
}

.inner-page ul li {
  position: relative;
  padding: 12px 16px 12px 36px;
  margin-bottom: 8px;
  color: var(--color-text-body);
  background: rgba(0, 102, 204, 0.03);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
  transition: var(--transition-base);
}

.inner-page ul li:hover {
  background: rgba(0, 102, 204, 0.06);
  transform: translateX(4px);
}

.inner-page ul li::before {
  content: "\2713";
  color: var(--color-accent);
  font-weight: bold;
  position: absolute;
  left: 12px;
  top: 12px;
}

.inner-page ul li strong {
  color: var(--color-primary);
}

.inner-page .icon-box {
  background: var(--gradient-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: var(--color-bg-section);
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li { padding-left: 10px; }

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-text-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs { margin-top: 68px; }
  .breadcrumbs .d-flex { display: block !important; }
  .breadcrumbs ol { display: block; }
  .breadcrumbs ol li { display: inline-block; }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--color-bg-light);
  padding: 0;
  color: var(--color-text-light);
  font-size: 14px;
  position: relative;
  border-top: 1px solid var(--color-border);
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top, rgba(0, 102, 204, 0.03) 0%, var(--color-bg-light) 70%);
  z-index: 0;
  pointer-events: none;
}

#footer .footer-top {
  padding: 40px 0 16px 0;
  position: relative;
  z-index: 1;
}

#footer .footer-info h3 {
  font-size: 24px;
  margin: 0 0 10px 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-heading);
}

#footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-body);
  color: var(--color-text-light);
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: transparent;
  color: var(--color-text-light);
  line-height: 1;
  padding: 8px 0;
  margin-right: 15px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: var(--transition-base);
}

#footer .social-links a:hover {
  color: var(--color-accent);
}

#footer h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 8px;
  margin-bottom: 12px;
}

#footer .footer-links { margin-bottom: 20px; }

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

#footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
}

#footer .footer-links ul li:first-child { padding-top: 0; }

#footer .footer-links ul a {
  color: var(--color-text-light);
  transition: var(--transition-base);
  display: inline-block;
  line-height: 1;
}

#footer .footer-links ul a:hover {
  color: var(--color-accent);
}

#footer .copyright {
  text-align: center;
  padding-top: 12px;
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-text-light);
  font-size: 13px;
}

/* Footer Back To Top */
.footer-back-to-top {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  color: var(--color-text-light);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-base);
  margin-top: 20px;
  border-radius: var(--radius-sm);
}

.footer-back-to-top:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.footer-back-to-top i { margin-right: 5px; }

/*--------------------------------------------------------------
# Contact Enhancements
--------------------------------------------------------------*/
.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-smooth);
  margin-top: 10px;
  font-size: 15px;
}

.whatsapp-btn:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.text-accent { color: var(--color-accent) !important; }

.info-item {
  font-size: 18px;
  display: flex;
  align-items: center;
}

.info-item a {
  color: var(--color-text-body);
  transition: var(--transition-base);
}

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

.info-item i { font-size: 22px; }

/* Disabled Submit Button */
.php-email-form button[type="submit"]:disabled {
  background: #333;
  cursor: not-allowed;
  opacity: 0.5;
  border-color: #333;
}

.php-email-form button[type="submit"]:disabled:hover {
  background: #333;
  transform: none;
}

/* International Phone Input */
.iti { width: 100%; }

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(15, 21, 34, 0.95);
  backdrop-filter: blur(16px);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
}

.cookie-banner.hidden {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner p {
  margin: 0;
  margin-right: 20px;
  font-size: 14px;
}

.cookie-actions { display: flex; gap: 10px; }

.btn-accept {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-base);
  font-size: 14px;
}

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

.btn-reject {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid var(--color-border-light);
  padding: 8px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-base);
  font-size: 14px;
}

.btn-reject:hover {
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner p { margin-right: 0; margin-bottom: 15px; }
}

/*--------------------------------------------------------------
# Header Inner Pages
--------------------------------------------------------------*/
.header-inner-pages {
  background: rgba(10, 14, 23, 0.98);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner-pages + #main {
  padding-top: 90px;
}

/*--------------------------------------------------------------
# Visually Hidden (Accessibility)
--------------------------------------------------------------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
