@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

/* ==========================================================================
   CSS Variables - Layered Horizon Theme
   ========================================================================== */
:root {
  --color-bg-light: #ffffff;
  --color-bg-soft: #f4f9ff;
  --color-bg-dark: #0a192f;
  --color-primary: #005bb5;
  --color-primary-light: #3385ff;
  --color-accent: #00c3ff;
  --color-text-main: #1a202c;
  --color-text-muted: #64748b;
  --color-text-light: #f8fafc;

  --gradient-horizon: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-accent: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-accent) 100%
  );

  --shadow-soft: 0 10px 40px -10px rgba(0, 91, 181, 0.08);
  --shadow-hover: 0 20px 50px -10px rgba(0, 91, 181, 0.15);
  --shadow-layer: 0 30px 60px -15px rgba(0, 0, 0, 0.1);

  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 40px;

  --transition-fast: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  --container-width: 1280px;
  --section-padding: 120px 0;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-soft);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-light);
  border-radius: 10px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-xl {
  font-size: clamp(3rem, 5vw, 5rem);
}
.title-lg {
  font-size: clamp(2.5rem, 4vw, 4rem);
}
.title-md {
  font-size: clamp(2rem, 3vw, 2.5rem);
}
.title-sm {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center {
  text-align: center;
}
.text-muted {
  color: var(--color-text-muted);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding);
}
.pb-0 {
  padding-bottom: 0;
}
.pt-0 {
  padding-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-fast);
  font-size: 1rem;
  gap: 10px;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-text-light);
  box-shadow: 0 10px 20px rgba(0, 91, 181, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--color-accent) 0%,
    var(--color-primary) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 91, 181, 0.4);
  color: white;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
}

/* ==========================================================================
   Header & Navigation (STRICTLY CONSISTENT)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-fast);
  background: transparent;
  padding: 20px 0;
}

.header.scrolled {
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 40px;
  
  object-fit: contain;
}


.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--color-text-main);
  position: relative;
  padding: 5px 0;
}

.header.scrolled .nav-link {
  color: var(--color-text-light);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle,
.nav-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-main);
  cursor: pointer;
}
.header.scrolled .nav-toggle {
  color: var(--color-text-light);
}

/* Mobile Nav */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-bg-light);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .nav-menu.show {
    right: 0;
  }
  .nav-list {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .nav-link {
    font-size: 1.5rem;
    color: var(--color-text-main) !important;
  }
  .nav-toggle,
  .nav-close {
    display: block;
  }
  .nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
  }
  .header-actions .btn {
    display: none;
  }
}

/* ==========================================================================
   Hero Section (Layered Depth & 3D)
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-horizon);
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 195, 255, 0.2);
  top: -10%;
  left: -10%;
}
.shape-2 {
  width: 600px;
  height: 600px;
  background: rgba(0, 91, 181, 0.15);
  bottom: -20%;
  right: -10%;
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 24px;
  color: var(--color-bg-dark);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-visual {
  perspective: 1000px;
}

.hero-3d-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-layer);
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.hero-3d-card:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.hero-stats {
  display: flex;
  gap: 20px;
  transform: translateZ(50px);
}

.stat-box {
  background: var(--color-bg-light);
  padding: 20px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-soft);
  flex: 1;
}

.stat-box h4 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text p {
    margin: 0 auto 40px;
  }
  .hero-3d-card {
    transform: none;
  }
}

/* ==========================================================================
   About / Horizon Intro (Layered Cards)
   ========================================================================== */
.about-section {
  background: var(--color-bg-light);
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-layers {
  position: relative;
  height: 500px;
}

.layer-card {
  position: absolute;
  background: var(--color-bg-light);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  width: 80%;
  transition: var(--transition-slow);
}

.layer-1 {
  top: 0;
  left: 0;
  z-index: 1;
  border: 1px solid var(--color-bg-soft);
}
.layer-2 {
  top: 60px;
  right: 0;
  z-index: 2;
  background: var(--color-bg-soft);
}
.layer-3 {
  bottom: 0;
  left: 10%;
  z-index: 3;
  background: var(--color-bg-dark);
  color: white;
}

.layer-card .icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.layer-3 .icon {
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-layers {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .layer-card {
    position: relative;
    width: 100%;
    top: auto !important;
    left: auto !important;
    right: auto !important;
  }
}

/* ==========================================================================
   Services Section (Overlapping Cards & Hover Effects)
   ========================================================================== */
.services-section {
  background: var(--color-bg-soft);
}

.section-header {
  margin-bottom: 60px;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: var(--color-bg-light);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: var(--transition-fast);
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--gradient-horizon);
  border-radius: 0 0 0 100%;
  z-index: -1;
  transition: var(--transition-slow);
  opacity: 0.5;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scale(3);
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  color: white;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.service-card .link {
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.service-card .link i {
  transition: var(--transition-fast);
}
.service-card:hover .link i {
  transform: translateX(5px);
}

/* ==========================================================================
   Industry Specific (Parallax scrolling effect)
   ========================================================================== */
.industry-section {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
}

.industry-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop")
    center/cover;
  opacity: 0.1;
  z-index: 0;
  background-attachment: fixed; /* Parallax */
}

.industry-content {
  position: relative;
  z-index: 1;
}

.industry-scroll-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scrollbar-width: none; /* Firefox */
}
.industry-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.industry-card {
  min-width: 350px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  transition: var(--transition-fast);
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}
.industry-card i {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

/* ==========================================================================
   ROI Calculator Widget
   ========================================================================== */
.calculator-section {
  background: var(--color-bg-light);
}

.calc-wrapper {
  background: #fff;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-layer);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  border: 1px solid var(--color-bg-soft);
}

.calc-controls .form-group {
  margin-bottom: 24px;
}
.calc-controls label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.calc-controls input[type="range"] {
  width: 100%;
  height: 8px;
  background: var(--color-bg-soft);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}
.calc-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.range-val {
  font-weight: 700;
  color: var(--color-primary);
  float: right;
}

.calc-results {
  background: var(--gradient-dark);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-item {
  margin-bottom: 30px;
}
.result-item p {
  color: #94a3b8;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.result-item h3 {
  font-size: 3rem;
  color: var(--color-accent);
}

.chart-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}
.chart-fill {
  height: 100%;
  background: var(--gradient-accent);
  width: 0%;
  transition: width 0.5s ease;
}

@media (max-width: 991px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

/* ==========================================================================
   Campaign Reports / Dashboard UI
   ========================================================================== */
.reports-section {
  background: var(--color-bg-soft);
  overflow: hidden;
}

.dashboard-mockup {
  background: white;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-bg-soft);
  border-bottom: none;
  margin-top: 40px;
  position: relative;
}

.dash-header {
  background: #f8fafc;
  padding: 15px 24px;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 12px 12px 0 0;
  display: flex;
  gap: 8px;
}
.dash-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dash-dot.r {
  background: #ff5f56;
}
.dash-dot.y {
  background: #ffbd2e;
}
.dash-dot.g {
  background: #27c93f;
}

.dash-body {
  padding: 40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.dash-chart {
  height: 300px;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 49px,
    #f1f5f9 50px
  );
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 20px;
}
.dash-col {
  flex: 1;
  background: var(--color-primary-light);
  border-radius: 4px 4px 0 0;
  transition: var(--transition-slow);
  position: relative;
}
.dash-col:hover {
  background: var(--color-primary);
}
.dash-col::after {
  content: attr(data-val);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  font-weight: bold;
  opacity: 0;
  transition: var(--transition-fast);
}
.dash-col:hover::after {
  opacity: 1;
}

.dash-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.d-stat {
  padding: 20px;
  background: var(--color-bg-soft);
  border-radius: 8px;
}
.d-stat h5 {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: normal;
}
.d-stat h2 {
  font-size: 2rem;
  color: var(--color-bg-dark);
}
.d-stat span {
  color: #10b981;
  font-weight: bold;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .dash-body {
    grid-template-columns: 1fr;
  }
  .dash-chart {
    height: 200px;
  }
}

/* ==========================================================================
   Testimonials (Layered layout)
   ========================================================================== */
.testimonials-section {
  background: var(--color-bg-light);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testi-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid var(--color-bg-soft);
}

.testi-card i.fa-quote-left {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3rem;
  color: var(--color-bg-soft);
  z-index: 0;
}

.testi-content {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.testi-info h4 {
  font-size: 1rem;
}
.testi-info p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact / Quote Section (Index Page)
   ========================================================================== */
.cta-section {
  padding: 100px 0;
  background: var(--color-bg-dark);
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(0, 91, 181, 0.2) 0%,
    rgba(10, 25, 47, 0) 70%
  );
  z-index: 0;
}

.cta-container {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 80px 40px;
  text-align: center;
  color: white;
}

.cta-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  gap: 10px;
}
.cta-form input {
  flex: 1;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .cta-form {
    flex-direction: column;
  }
}

/* ==========================================================================
   Footer (STRICTLY CONSISTENT)
   ========================================================================== */
.footer {
  background: var(--color-bg-light);
  padding: 80px 0 20px;
  border-top: 1px solid var(--color-bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about .logo {
  filter: invert(1);
  margin-bottom: 20px;
}
.footer-about p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--color-bg-dark);
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: var(--color-text-muted);
}
.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: var(--color-text-muted);
}
.footer-contact i {
  color: var(--color-primary);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--color-bg-soft);
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page Headers (Legal & Contact)
   ========================================================================== */
.page-header {
  background: var(--gradient-dark);
  padding: 160px 0 80px;
  text-align: center;
  color: white;
}
.breadcrumbs {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 0.875rem;
}
.breadcrumbs a {
  color: white;
  margin: 0 5px;
}

/* ==========================================================================
   Legal Content Wrapper
   ========================================================================== */
.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  transform: translateY(-40px);
}
.legal-wrapper h2 {
  margin: 40px 0 20px;
  color: var(--color-bg-dark);
  font-size: 1.5rem;
}
.legal-wrapper p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
}
@media (max-width: 768px) {
  .legal-wrapper {
    padding: 30px;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Contact Page Form Styles
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background: var(--gradient-dark);
  color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
}
.contact-info h3 {
  margin-bottom: 30px;
  color: var(--color-accent);
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info li {
  display: flex;
  gap: 20px;
}
.contact-info i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.contact-form-box {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-bg-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.875rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
}
@media (max-width: 991px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Utility animations for JS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}
